@import "animate.css";
/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    design
 * @package     default_blank
 * @copyright   Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
/* Что решает на данный момент:
- Clearfix. В LESS своем в нужном элементе пишем .clearfix(); и получаем магию :)
- Обрезает длинные Placeholder и ставит многоточие в конце
- Убирает подсвечивание input и textarea при фокусе
- Делает изображение адаптивными (в том числе IE)
- Делает адаптивными видео (юзаем класс video) */
/* Clear Fix */
.clearfix {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/* Cutback placeholder */
input[placeholder] {
  text-overflow: ellipsis;
}
input::-moz-placeholder {
  text-overflow: ellipsis;
}
input:-moz-placeholder {
  text-overflow: ellipsis;
}
input:-ms-input-placeholder {
  text-overflow: ellipsis;
}
/* Hide backlight */
input:focus,
textarea:focus {
  outline: none;
}
/* Adaptive images */
img {
  height: auto;
  max-width: 100%;
  width: auto\9;
  /* Fix for IE */
}
/* Adaptive videos */
.video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
a.button,
button.button {
  background-color: #f16423;
  -webkit-box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
  overflow: visible;
  width: auto;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
a.button:hover,
button.button:hover {
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #e6510f;
  /* layer fill content */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
}
a.button:active,
button.button:active {
  -webkit-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5);
}
p.back-link a:focus,
p.back-link a:active {
  -moz-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
  -webkit-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
}
.br {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
/* Reset ================================================================================= */
* {
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'Roboto Regular';
  src: url('../fonts/robotoreg.eot?') format('eot'), url('../fonts/robotoreg.woff') format('woff'), url('../fonts/robotoreg.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto Medium';
  src: url('../fonts/roboto-medium.eot?') format('eot'), url('../fonts/roboto-medium.woff') format('woff'), url('../fonts/roboto-medium.ttf') format('truetype');
}
@font-face {
  font-family: "Segoe UI";
  src: url(../fonts/segoeui.ttf);
}
@font-face {
  font-family: "Felt Tip Woman";
  src: url(../fonts/FeltTipWoman.ttf);
}
body {
  background: url("../images/theme/hexagon-bg-small.png") !important;
  font: 14px/1.35 Roboto Regular, Helvetica, sans-serif !important;
  color: #666666 !important;
  text-align: center;
}
img {
  border: 0;
  vertical-align: top;
}
a {
  color: #f26e32 !important;
  text-decoration: underline !important;
}
a:hover {
  text-decoration: none !important;
}
:focus {
  outline: 0 !important;
}
/* Headings */
h1 {
  font-family: "Roboto Regular";
  font-size: 30px;
  color: #1469a2;
  margin: 0 !important;
  font-weight: normal;
}
h2 {
  font-family: "Roboto Regular";
  font-size: 24px;
  color: #1469a2;
  font-weight: normal;
}
h3 {
  font-family: "Roboto Regular";
  font-size: 18px;
  color: #1469a2;
  line-height: 1.25;
  font-weight: normal;
}
h4 {
  font-size: 14px;
  font-weight: bold;
}
h5 {
  font-size: 12px;
  font-weight: bold;
}
h6 {
  font-size: 11px;
  font-weight: bold;
}
/* Forms */
form {
  display: inline;
}
fieldset {
  border: 0;
}
legend {
  display: none;
}
/* Table */
table {
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: 100%;
}
caption,
th,
td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}
/* Content */
strong {
  font-weight: bold;
}
address {
  font-style: normal;
}
cite {
  font-style: normal;
}
q,
blockquote {
  quotes: none;
}
q:before,
q:after {
  content: '';
}
small,
big {
  font-size: 1em;
}
sup {
  font-size: 1em;
  vertical-align: top;
}
/* Lists */
ul,
ol {
  list-style: none;
}
/* Tools */
.hidden {
  display: block !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
.nobr {
  white-space: nowrap !important;
}
.wrap {
  white-space: normal !important;
}
.a-left {
  text-align: left !important;
}
.a-center {
  text-align: center !important;
}
.a-right {
  text-align: right !important;
}
.v-top {
  vertical-align: top;
}
.v-middle {
  vertical-align: middle;
}
.f-left,
.left {
  float: left !important;
}
.f-right,
.right {
  float: right !important;
}
.f-none {
  float: none !important;
}
.f-fix {
  float: left;
  width: 100%;
}
.no-display {
  display: none;
}
.no-margin {
  margin: 0 !important;
}
.no-padding {
  padding: 0 !important;
}
.no-bg {
  background: none !important;
}
.clear-after-me {
  zoom: 1;
  /* IE6&7 */
}
.clear-after-me:before,
.clear-after-me:after {
  content: '';
  display: table;
}
.clear-after-me:after {
  clear: both;
}
/* ======================================================================================= */
/* Layout ================================================================================ */
.jq-selectbox-wrapper .jq-selectbox__dropdown li {
  color: #1368a1;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 12px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
  /* drop shadow */
}
.jq-selectbox-wrapper .jq-selectbox__dropdown li:hover {
  color: #ffffff;
}
.jq-selectbox-wrapper .jq-selectbox__dropdown li.selected {
  color: #ffffff;
}
.jq-selectbox-wrapper .jq-selectbox__dropdown li :last-child {
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.jq-selectbox-wrapper .jq-selectbox__dropdown li :first-child {
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topleft: 4px;
  -moz-border-radius-topright: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.page {
  margin: 0 auto;
  text-align: left;
}
.page .ajaxcartpro-box-show {
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
  padding: 0;
}
.page .ajaxcartpro-box-show .product-options {
  background: #FFFFFF;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
}
.page .ajaxcartpro-box-show .product-options .product-name {
  color: #1368a1;
  font-family: "Roboto Regular";
  font-size: 20px;
  font-weight: normal;
}
.page .ajaxcartpro-box-show .product-options .option dl dt label {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
}
.page-print {
  background: #fff;
  padding: 20px;
  text-align: left;
}
.page-empty {
  background: #fff;
  padding: 20px;
  text-align: left;
}
.page-popup {
  padding: 20px;
  text-align: left;
}
/* Base Columns */
.col-main {
  background: #ffffff;
}
.col-main .std {
  padding: 20px 25px;
}
.col-main .std h2,
.col-main .std h3,
.col-main .std h4,
.col-main .std h5,
.col-main .std h6 {
  margin-bottom: 10px;
}
.col-main .std ul,
.col-main .std ol {
  margin-bottom: 15px;
  margin-left: 30px;
  text-align: left;
}
.col-main .std ul li,
.col-main .std ol li {
  list-style-type: disc;
}
.col-main .std p {
  margin: 0 0 1em;
}
.col-right {
  float: right;
  width: 230px;
  border: 1px solid #ddd;
  padding: 5px 5px 0;
}
/* 1 Column Layout */
.col1-layout .col-main {
  float: none;
  width: auto;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
}
/* 2 Columns Layout */
.col2-left-layout .col-main {
  float: right;
  background: #ffffff;
}
.col2-left-layout .col-left {
  float: left;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
}
.col2-left-layout .col-main {
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
}
.col2-left-layout .col-main .category-products {
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
}
.col2-left-layout .col-main .category-products .toolbar {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.col2-left-layout .col-main .category-products .toolbar-bottom {
  -webkit-border-top-left-radius: 0px;
  -webkit-border-top-right-radius: 0px;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-topright: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.col2-left-layout .col-main .category-products .toolbar-bottom .toolbar {
  -webkit-border-top-left-radius: 0px;
  -webkit-border-top-right-radius: 0px;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-topright: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.col2-left-layout .content-container {
  background: #EEEEEE;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
}
/* 3 Columns Layout */
.col3-layout .col-main {
  width: 484px;
  margin-left: 10px;
}
.col3-layout .col-wrapper {
  float: left;
  width: 748px;
}
.col3-layout .col-wrapper .col-main {
  float: right;
}
/* Content Columns */
.col2-set .col-1 {
  float: left;
  width: 49%;
}
.col2-set .col-2 {
  float: right;
  width: 49%;
}
.col2-set .col-narrow {
  width: 33%;
}
.col2-set .col-wide {
  width: 65%;
}
.col3-set .col-1 {
  float: left;
  width: 32%;
}
.col3-set .col-2 {
  float: left;
  width: 32%;
  margin-left: 2%;
}
.col3-set .col-3 {
  float: right;
  width: 32%;
}
.col4-set .col-1 {
  float: left;
  width: 23.5%;
}
.col4-set .col-2 {
  float: left;
  width: 23.5%;
  margin: 0 2%;
}
.col4-set .col-3 {
  float: left;
  width: 23.5%;
}
.col4-set .col-4 {
  float: right;
  width: 23.5%;
}
/* ======================================================================================= */
/* Global Styles ========================================================================= */
/* Form Elements */
input,
select,
textarea,
button {
  font: 12px Roboto, Arial, Helvetica, sans-serif;
  vertical-align: middle;
  color: #666666;
}
input.input-text,
select,
textarea {
  background: #fff;
  border: 1px solid #e5e5e5;
  -webkit-transition: all 0.1s ease-out 0.1s;
  -moz-transition: all 0.1s ease-out 0.1s;
  -o-transition: all 0.1s ease-out 0.1s;
  transition: all 0.1s ease-out 0.1s;
}
input.input-text:focus,
textarea:focus {
  border-color: #1469a2;
}
input.input-text,
textarea {
  padding: 6px;
}
select {
  padding: 1px;
}
select option {
  padding-right: 10px;
}
select.multiselect option {
  border-bottom: 1px solid #ddd;
  padding: 2px 5px;
}
select.multiselect option:last-child {
  border-bottom: 0;
}
textarea {
  overflow: auto;
}
input.radio {
  margin-right: 3px;
}
input.checkbox {
  margin-right: 3px;
}
input.qty {
  width: 2.5em !important;
}
button.button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* FF Fix */
button.button {
  -webkit-border-fit: lines;
}
a.button-blue {
  overflow: visible;
  width: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  background: #1469a2 !important;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  text-align: center;
  white-space: nowrap;
  color: #fff !important;
  font-size: 16px !important;
  font-family: "Segoe UI", Arial;
  padding: 10px 25px;
  text-decoration: none !important;
  float: left;
  -webkit-box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
}
a.button-blue:hover {
  background: #005f9e !important;
}
.button-blue {
  overflow: visible;
  width: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  background: #1469a2 !important;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  text-align: center;
  white-space: nowrap;
  color: #fff !important;
  font-size: 16px !important;
  font-family: "Segoe UI", Arial;
  padding: 10px 25px;
  text-decoration: none !important;
  float: left;
  -webkit-box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
}
.button-blue:hover {
  background: #005f9e !important;
}
button.button span {
  float: left;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  font-size: 16px;
  font-family: "Segoe UI", Arial;
  padding: 10px 25px;
}
button.button:hover {
  background: #e6520f;
}
button.button:active {
  background: #f16423;
}
button.button span span {
  padding: 0 !important;
}
p.control input.checkbox,
p.control input.radio {
  margin-right: 6px;
}
/* Form Highlight */
/*input.input-text:focus,select:focus,textarea:focus {}*/
/*.highlight { background:#efefef; }*/
/* Form lists */
/* Grouped fields */
/*.form-list { width:535px; margin:0 auto; overflow:hidden; }*/
.form-list li {
  margin: 0 0 8px;
}
.form-list label {
  float: left;
  color: #111;
  font-weight: bold;
  position: relative;
  z-index: 0;
}
.form-list label.required em {
  float: right;
  font-style: normal;
  color: #eb340a;
  position: absolute;
  top: 0;
  right: -8px;
}
.form-list li.control label {
  float: none;
}
.form-list li.control input.radio,
.form-list li.control input.checkbox {
  margin-right: 6px;
}
.form-list li.control .input-box {
  clear: none;
  display: inline;
  width: auto;
}
/*.form-list li.fields { margin-right:-15px; }*/
.form-list .input-box {
  display: block;
  clear: both;
  width: 260px;
}
.form-list .field {
  float: left;
  width: 275px;
}
.form-list input.input-text {
  width: 254px;
}
.form-list textarea {
  width: 254px;
  height: 10em;
}
.form-list select {
  width: 260px;
}
.form-list li.wide .input-box {
  width: 535px;
}
.form-list li.wide input.input-text {
  width: 529px;
}
.form-list li.wide textarea {
  width: 529px;
}
.form-list li.wide select {
  width: 535px;
}
.form-list li.additional-row {
  border-top: 1px solid #ccc;
  margin-top: 10px;
  padding-top: 7px;
}
.form-list li.additional-row .btn-remove {
  float: right;
  margin: 5px 0 0;
}
.form-list .input-range input.input-text {
  width: 74px;
}
/* Customer */
.form-list .customer-name-prefix .input-box,
.form-list .customer-name-suffix .input-box,
.form-list .customer-name-prefix-suffix .input-box,
.form-list .customer-name-prefix-middlename .input-box,
.form-list .customer-name-middlename-suffix .input-box,
.form-list .customer-name-prefix-middlename-suffix .input-box {
  width: auto;
}
.form-list .name-prefix {
  width: 65px;
}
.form-list .name-prefix select {
  width: 55px;
}
.form-list .name-prefix input.input-text {
  width: 49px;
}
.form-list .name-suffix {
  width: 65px;
}
.form-list .name-suffix select {
  width: 55px;
}
.form-list .name-suffix input.input-text {
  width: 49px;
}
.form-list .name-middlename {
  width: 70px;
}
.form-list .name-middlename input.input-text {
  width: 49px;
}
.form-list .customer-name-prefix-middlename-suffix .name-firstname,
.form-list .customer-name-prefix-middlename .name-firstname {
  width: 140px;
}
.form-list .customer-name-prefix-middlename-suffix .name-firstname input.input-text,
.form-list .customer-name-prefix-middlename .name-firstname input.input-text {
  width: 124px;
}
.form-list .customer-name-prefix-middlename-suffix .name-lastname {
  width: 205px;
}
.form-list .customer-name-prefix-middlename-suffix .name-lastname input.input-text {
  width: 189px;
}
.form-list .customer-name-prefix-suffix .name-firstname {
  width: 210px;
}
.form-list .customer-name-prefix-suffix .name-lastname {
  width: 205px;
}
.form-list .customer-name-prefix-suffix .name-firstname input.input-text,
.form-list .customer-name-prefix-suffix .name-lastname input.input-text {
  width: 189px;
}
.form-list .customer-name-prefix-suffix .name-firstname {
  width: 210px;
}
.form-list .customer-name-prefix-suffix .name-lastname {
  width: 205px;
}
.form-list .customer-name-prefix-suffix .name-firstname input.input-text,
.form-list .customer-name-prefix-suffix .name-lastname input.input-text {
  width: 189px;
}
.form-list .customer-name-prefix .name-firstname,
.form-list .customer-name-middlename .name-firstname {
  width: 210px;
}
.form-list .customer-name-suffix .name-lastname,
.form-list .customer-name-middlename .name-firstname,
.form-list .customer-name-middlename-suffix .name-firstname,
.form-list .customer-name-middlename-suffix .name-lastname {
  width: 205px;
}
.form-list .customer-name-prefix .name-firstname input.input-text,
.form-list .customer-name-suffix .name-lastname input.input-text,
.form-list .customer-name-middlename .name-firstname input.input-text,
.form-list .customer-name-middlename-suffix .name-firstname input.input-text,
.form-list .customer-name-middlename-suffix .name-lastname input.input-text {
  width: 189px;
}
.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-year {
  float: left;
  width: 85px;
}
.form-list .customer-dob input.input-text {
  display: block;
  width: 74px;
}
.form-list .customer-dob label {
  font-size: 10px;
  font-weight: normal;
  color: #888;
}
.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-month {
  width: 60px;
}
.form-list .customer-dob .dob-day input.input-text,
.form-list .customer-dob .dob-month input.input-text {
  width: 46px;
}
.form-list .customer-dob .dob-year {
  width: 140px;
}
.form-list .customer-dob .dob-year input.input-text {
  width: 134px;
}
.buttons-set .back-link {
  float: left;
}
.buttons-set button.button {
  float: right;
}
.buttons-set p.required {
  margin: 0 0 5px;
}
.fieldset .legend {
  float: left;
  font-weight: bold;
  font-size: 13px;
  border: 1px solid #fefefe;
  background: #dedede;
  color: #333;
  margin: -33px 0 0 -10px;
  padding: 0 8px;
  position: relative;
}
/* Form Validation */
.validation-advice {
  clear: both;
  min-height: 13px;
  margin: 3px 0 0;
  font-size: 10px;
  line-height: 13px;
  color: #f00;
}
.validation-failed {
  border: 1px dashed #f00 !important;
  background: #faebe7 !important;
}
p.required {
  font-size: 10px;
  text-align: right;
  color: #f00;
}
/* Expiration date and CVV number validation fix */
.v-fix {
  float: left;
}
.v-fix .validation-advice {
  display: block;
  width: 12em;
  margin-right: -12em;
  position: relative;
}
/* Global Messages  */
.success {
  color: #3d6611;
  font-weight: bold;
}
.error {
  color: #f00;
  font-weight: bold;
}
.notice {
  color: #ccc;
}
.messages,
.messages ul {
  list-style: none !important;
  margin: 0;
  padding: 0 !important;
}
.messages {
  width: 100%;
  overflow: hidden;
}
.messages li li {
  margin: 0 0 3px;
}
.error-msg,
.success-msg,
.note-msg,
.notice-msg {
  border-style: solid !important;
  border-width: 1px !important;
  background-position: 10px 9px !important;
  background-repeat: no-repeat !important;
  min-height: 24px !important;
  padding: 8px 8px 8px 32px !important;
  font-size: 11px !important;
  font-weight: bold !important;
}
.error-msg {
  border-color: #f16048;
  background-color: #faebe7;
  background-image: url(../images/i_msg-error.gif);
  color: #df280a;
}
.success-msg {
  border-color: #446423;
  background-color: #eff5ea;
  background-image: url(../images/i_msg-success.gif);
  color: #3d6611;
}
.note-msg,
.notice-msg {
  border-color: #fcd344;
  background-color: #fafaec;
  background-image: url(../images/i_msg-note.gif);
  color: #3d6611;
}
/* BreadCrumbs */
.breadcrumbs {
  background: #ffffff;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 10px 20px;
}
.under-breadcrumbs {
  margin-bottom: 20px;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li a {
  color: #1469a2 !important;
  font-size: 18px !important;
}
.breadcrumbs li span {
  font-size: 18px !important;
}
/* Page Heading */
.page-title {
  padding: 0 0 5px;
  margin: 0 0 10px;
}
.page-title h1,
.page-title h2 {
  color: #f26e32;
}
.page-title .separator {
  margin: 0 3px;
}
.page-title .link-rss {
  float: right;
}
.title-buttons {
  text-align: right;
}
.title-buttons h1,
.title-buttons h2,
.title-buttons h3,
.title-buttons h4,
.title-buttons h5,
.title-buttons h6 {
  float: left;
}
.subtitle,
.sub-title {
  clear: both;
}
/* Pager */
.pager .amount {
  float: left;
}
.pager .limiter {
  float: right;
}
.pager .pages ol {
  display: inline;
}
.pager .pages li {
  display: inline;
}
/* Sorter */
.sorter .view-mode {
  float: left;
}
.sorter .sort-by {
  float: right;
  padding-right: 20px;
}
.sorter .sort-by .jq-selectbox {
  width: 145px !important;
}
.sorter .sort-by span.glyphicon {
  font-size: 18px;
  color: #9f9da3;
  padding-left: 5px;
  padding-top: 5px;
}
/* Toolbar */
/* Data Table */
.data-table {
  width: 100%;
}
.data-table th {
  padding: 5px;
  border: 1px solid #ddd;
  font-weight: bold;
  white-space: nowrap;
}
.data-table td {
  padding: 5px;
  border: 1px solid #ddd;
}
.data-table tr.even {
  background-color: #f6f6f6;
}
.data-table tbody.odd td {
  border-width: 0 1px;
}
.data-table tbody.even {
  background-color: #f6f6f6;
}
.data-table tbody.even td {
  border-width: 0 1px;
}
.data-table tbody.odd tr.border td,
.data-table tbody.even tr.border td {
  border-bottom-width: 1px;
}
.data-table th .tax-flag {
  white-space: nowrap;
  font-weight: normal;
}
.data-table td.label,
.data-table th.label {
  font-weight: bold;
  background-color: #f6f6f6;
}
/* Shopping cart total summary row expandable to details */
tr.summary-total {
  cursor: pointer;
}
tr.summary-total .summary-collapse {
  float: right;
  text-align: right;
  padding-left: 20px;
  background: url(../images/bkg_collapse.gif) 0 4px no-repeat;
  cursor: pointer;
}
tr.show-details .summary-collapse {
  background-position: 0 -53px;
}
tr.summary-details td {
  font-size: 11px;
  background-color: #dae1e4;
  color: #626465;
}
tr.summary-details-first td {
  border-top: 1px solid #d2d8db;
}
tr.summary-details-excluded {
  font-style: italic;
}
/* Shopping cart tax info */
.cart-tax-info {
  display: block;
}
.cart-tax-info,
.cart-tax-info .cart-price {
  padding-right: 20px;
}
.cart-tax-total {
  display: block;
  padding-right: 20px;
  background: url(../images/bkg_collapse.gif) 100% 4px no-repeat;
  cursor: pointer;
}
.cart-tax-info .price,
.cart-tax-total .price {
  display: inline !important;
  font-weight: normal !important;
}
.cart-tax-total-expanded {
  background-position: 100% -53px;
}
/* Class: std - styles for admin-controlled content */
.std .subtitle {
  padding: 0;
}
.std ol.ol {
  list-style: decimal outside;
  padding-left: 1.5em;
}
.std ul.disc {
  list-style: disc outside;
  padding-left: 18px;
  margin: 0 0 10px;
}
.std dl dt {
  font-weight: bold;
}
.std dl dd {
  margin: 0 0 10px;
}
/*.std ul,
.std ol,
.std dl,
.std p,
.std address,
.std blockquote { margin:0 0 1em; padding:0; }
.std ul { list-style:disc outside; padding-left:1.5em; }
.std ol { list-style:decimal outside; padding-left:1.5em; }
.std ul ul { list-style-type:circle; }
.std ul ul,
.std ol ol,
.std ul ol,
.std ol ul { margin:.5em 0; }
.std dt { font-weight:bold; }
.std dd { padding:0 0 0 1.5em; }
.std blockquote { font-style:italic; padding:0 0 0 1.5em; }
.std address { font-style:normal; }
.std b,
.std strong { font-weight:bold; }
.std i,
.std em { font-style:italic; }*/
/* Misc */
.links li {
  display: inline;
}
.links li.first {
  padding-left: 0 !important;
}
.links li.last {
  background: none !important;
  padding-right: 0 !important;
}
.link-cart {
  font-weight: bold;
  color: #f00;
}
.link-wishlist {
  font-weight: bold;
}
.link-reorder {
  font-weight: bold;
}
.link-compare {
  font-weight: bold;
}
.link-print {
  background: url(../images/i_print.gif) 0 2px no-repeat;
  padding: 2px 0 2px 25px;
}
.link-rss {
  background: url(../images/i_rss.gif) 0 1px no-repeat;
  padding-left: 18px;
  white-space: nowrap;
}
.btn-remove {
  display: block;
  width: 11px;
  height: 11px;
  font-size: 0;
  line-height: 0;
  background: url(../images/btn_remove.gif) 0 0 no-repeat;
  text-indent: -999em;
  overflow: hidden;
}
.btn-remove2 {
  display: block;
  width: 16px;
  height: 16px;
  font-size: 0;
  line-height: 0;
  background: url(../images/btn_trash.gif) 0 0 no-repeat;
  text-indent: -999em;
  overflow: hidden;
}
.btn-edit {
  display: block;
  width: 11px;
  height: 11px;
  font-size: 0;
  line-height: 0;
  background: url(../images/btn_edit.gif) 0 0 no-repeat;
  text-indent: -999em;
  overflow: hidden;
}
.cards-list dt {
  margin: 5px 0 0;
}
.cards-list .offset {
  padding: 2px 0 2px 20px;
}
.separator {
  margin: 0 3px;
}
.divider {
  clear: both;
  display: block;
  font-size: 0;
  line-height: 0;
  height: 1px;
  margin: 10px 0;
  background: #ddd;
  text-indent: -999em;
  overflow: hidden;
}
/* Noscript Notice */
.noscript {
  border: 1px solid #ddd;
  border-width: 0 0 1px;
  background: #ffff90;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  color: #2f2f2f;
}
.noscript .noscript-inner {
  width: 1000px;
  margin: 0 auto;
  padding: 12px 0 12px;
  background: url(../images/i_notice.gif) 20px 50% no-repeat;
}
.noscript p {
  margin: 0;
}
/* Demo Notice */
.demo-notice {
  margin: 0;
  padding: 6px 10px;
  background: #d75f07;
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  color: #fff;
}
/* ======================================================================================= */
/* Header ================================================================================ */
.guarantees .days {
  position: relative;
  width: 70px;
  height: 82px;
  float: left;
  -moz-transition: all 1s 0.3s ease;
  -o-transition: all 1s 0.3s ease;
  -webkit-transition: all 1s 0.3s ease;
  overflow: hidden;
}
.guarantees .days .text {
  background: url("../images/theme/bages/days.png") no-repeat;
  width: 32px;
  height: 38px;
  position: absolute;
  top: 22px;
  left: 18px;
  z-index: 1;
}
.guarantees .days:hover {
  width: 375px;
}
.guarantees .days:hover .days-center {
  width: 305px;
}
.guarantees .days-center {
  background: #666666;
  width: 0px;
  height: 80px;
  margin-top: 1px;
  float: left;
  -moz-transition: all 1s 0.3s ease;
  -o-transition: all 1s 0.3s ease;
  -webkit-transition: all 1s 0.3s ease;
  position: relative;
  overflow: hidden;
}
.guarantees .days-center div {
  width: 270px;
  position: absolute;
  left: 35px;
  color: #ffffff;
  top: 10px;
}
.guarantees .days-center div a {
  color: #ffffff !important;
}
.guarantees .days-center div p {
  color: #ffffff;
  line-height: 1;
}
.guarantees .days-left {
  background: url("../images/theme/bages/gray-left.png") no-repeat;
  width: 35px;
  height: 82px;
  float: left;
}
.guarantees .days-right {
  background: url("../images/theme/bages/gray-right.png") no-repeat;
  width: 35px;
  height: 82px;
  float: left;
}
.guarantees .months {
  position: relative;
  float: left;
  width: 71px;
  height: 82px;
  -moz-transition: all 1s 0.3s ease;
  -o-transition: all 1s 0.3s ease;
  -webkit-transition: all 1s 0.3s ease;
}
.guarantees .months .text {
  background: url("../images/theme/bages/month.png") no-repeat;
  width: 47px;
  height: 35px;
  position: absolute;
  top: 22px;
  left: 12px;
  z-index: 1;
}
.guarantees .months:hover {
  width: 376px;
}
.guarantees .months:hover .months-center {
  width: 305px;
}
.guarantees .months-center {
  background: #FF691F;
  width: 0px;
  height: 80px;
  margin-top: 1px;
  float: left;
  -moz-transition: all 1s 0.3s ease;
  -o-transition: all 1s 0.3s ease;
  -webkit-transition: all 1s 0.3s ease;
  position: relative;
  overflow: hidden;
}
.guarantees .months-center div {
  width: 270px;
  position: absolute;
  left: 35px;
  color: #ffffff;
  top: 10px;
}
.guarantees .months-center div a {
  color: #ffffff !important;
}
.guarantees .months-center div p {
  color: #ffffff;
  line-height: 1;
}
.guarantees .months-left {
  background: url("../images/theme/bages/orange-left.png") no-repeat;
  width: 36px;
  height: 82px;
  float: left;
}
.guarantees .months-right {
  background: url("../images/theme/bages/orange-right.png") no-repeat;
  width: 35px;
  height: 82px;
  float: left;
}
.guarantees .bug {
  position: relative;
  float: left;
  width: 70px;
  height: 82px;
  -moz-transition: all 1s 0.3s ease;
  -o-transition: all 1s 0.3s ease;
  -webkit-transition: all 1s 0.3s ease;
}
.guarantees .bug .text {
  background: url("../images/theme/bages/bugfree.png") no-repeat;
  width: 41px;
  height: 33px;
  position: absolute;
  top: 24px;
  left: 15px;
  z-index: 1;
}
.guarantees .bug:hover {
  width: 375px;
}
.guarantees .bug:hover .bug-center {
  width: 305px;
}
.guarantees .bug-center {
  background: #0067A5;
  width: 0px;
  height: 80px;
  margin-top: 1px;
  float: left;
  -moz-transition: all 1s 0.3s ease;
  -o-transition: all 1s 0.3s ease;
  -webkit-transition: all 1s 0.3s ease;
  position: relative;
  overflow: hidden;
}
.guarantees .bug-center div {
  width: 270px;
  position: absolute;
  left: 35px;
  color: #ffffff;
  top: 10px;
}
.guarantees .bug-center div a {
  color: #ffffff !important;
}
.guarantees .bug-center div p {
  color: #ffffff;
  line-height: 1;
}
.guarantees .bug-left {
  background: url("../images/theme/bages/blue-left.png") no-repeat;
  width: 35px;
  height: 82px;
  float: left;
}
.guarantees .bug-right {
  background: url("../images/theme/bages/blue-right.png") no-repeat;
  width: 35px;
  height: 82px;
  float: left;
}
.logo {
  float: left;
  padding-left: 37px;
  padding-top: 37px;
}
.logo-box {
  /*background: url("../images/theme/logo-box-bg.png") no-repeat;*/
  width: 33% !important;
  height: 136px;
}
.shadow {
  background: url("../images/theme/header-shadow.png") no-repeat;
  height: 10px;
  margin-bottom: 20px;
}
.header {
  height: 136px;
  background: url("../images/theme/hexagon-bg-big.png") repeat-x 53px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.header .topcart {
  padding-top: 8px;
  padding-right: 20px;
  width: 242px;
  position: relative;
}
.header .topcart .box-qty {
  background: url("../images/theme/basket_hex.png") no-repeat;
  background-position: 0 0;
  width: 70px;
  height: 82px;
  position: absolute;
  padding-top: 5px;
  text-align: center;
}
.header .topcart:hover .box-qty {
  background-position: 0 100%;
}
.header .topcart .cart-qty {
  color: #ffffff;
  font-size: 18px;
}
.header .topcart .icon {
  background: url("../images/theme/basket_new.png") no-repeat;
  width: 70px;
  height: 82px;
  float: right;
  z-index: 4501;
  position: absolute;
  top: 8px;
  right: 20px;
  cursor: pointer;
}
.header .topcart .cart-content {
  display: none;
  position: absolute;
  top: 30px;
  right: 20px;
}
.header .topcart.hover .cart-content {
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  padding: 10px;
  width: 220px;
  z-index: 4500;
}
.header .logo {
  float: left;
  text-decoration: none !important;
}
.header .logo strong {
  position: absolute;
  top: -999em;
  left: -999em;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -999em;
  overflow: hidden;
}
.header h1.logo {
  margin: 0;
  padding: 0;
}
.header .welcome-msg {
  font-weight: bold;
  text-align: right;
}
.header .links {
  float: right;
}
.header .form-search {
  text-align: right;
}
.header .form-search input {
  font-size: 12px;
  color: #666666;
  width: 190px;
  padding: 6px 10px;
  float: right;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
}
.header .form-search button.btn-search {
  background: #666666 !important;
  border: none;
  padding: 6px 25px;
  float: right;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-right-radius: 5px;
}
.header .form-search button.btn-search span {
  color: #ffffff;
  text-transform: uppercase;
}
.header .form-search .search-autocomplete {
  z-index: 999;
}
.header .form-search .search-autocomplete ul {
  border: 1px solid #ddd;
  background-color: #fff;
}
.header .form-search .search-autocomplete li {
  padding: 3px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}
.header .form-search .search-autocomplete li .amount {
  float: right;
  font-weight: bold;
}
.header .form-language {
  clear: both;
  text-align: right;
}
.header-container .top-container {
  clear: both;
  text-align: right;
}
.quick-access {
  width: 67% !important;
}
.quick-access .account-panel.custom {
  width: 57.88%;
}
.quick-access .account-panel {
  background: #ffffff;
  height: 30px;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.quick-access .account-panel .jq-selectbox-wrapper {
  float: left;
}
.quick-access .account-panel ul.links {
  float: left;
  padding-top: 5px;
}
.quick-access .account-panel ul.links li {
  display: inline-block;
  padding-left: 20px;
}
.quick-access .account-panel ul.links li.first {
  padding-left: 20px !important;
}
.quick-access .account-panel ul.links li a {
  color: #2473a8 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
}
.quick-access .account-panel ul.links li a:hover {
  text-decoration: underline !important;
}
.header .search.custom {
  width: 38.5% !important;
}
.header .guarantees {
  padding-right: 7px;
  padding-top: 8px;
}
.header .guarantees .bage {
  margin-left: 5px;
}
/********** < Navigation */
/* All Levels */
#nav li {
  text-align: left;
  position: relative;
}
#nav li.over {
  z-index: 998;
}
#nav li a {
  display: block;
  text-decoration: none;
}
#nav li a:hover {
  text-decoration: none;
}
#nav li a span {
  display: block;
  white-space: nowrap;
  cursor: pointer;
}
#nav li ul a span {
  white-space: normal;
}
/* 1st Level */
#nav li {
  float: left;
}
#nav li a {
  float: left;
}
/* 2nd Level */
#nav ul,
#nav div {
  position: absolute;
  top: 60px;
  left: -10000px;
  background: #EEEEEE;
}
#nav div ul {
  position: static;
  width: auto;
  border: none;
}
/* 3rd+ leven */
#nav ul ul,
#nav ul div {
  top: 7px;
}
#nav ul li {
  float: none;
}
#nav ul li.last {
  border-bottom: 0;
}
#nav ul li a {
  float: none;
  padding: 3px 9px;
  font-weight: normal;
}
#nav ul li.active > a,
#nav ul li.over > a {
  color: #000 !important;
}
/* Show menu */
#nav li ul.shown-sub,
#nav li div.shown-sub {
  left: 0;
  z-index: 999;
}
#nav li .shown-sub ul.shown-sub,
#nav li .shown-sub li div.shown-sub {
  left: 100px;
}
/********** Navigation > */
/* ======================================================================================= */
/* Sidebar =============================================================================== */
.sidebar {
  background: #eeeeee;
  padding: 15px;
}
.sidebar .form-search {
  margin-bottom: 25px;
}
.sidebar .form-search input {
  width: 100%;
}
.block-subscribe,
.sidebar .fb,
.sidebar .twitter {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #e2e2e2;
  float: left;
  clear: both;
}
.block.mpblog-recentposts {
  float: left;
  clear: both;
}
.block .block-title {
  color: #1368a1;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 20px;
}
.block .block-title strong {
  font-weight: normal;
}
.block .block-content ul.mplog-categories li a {
  color: #656565 !important;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 16px;
  text-decoration: none !important;
}
.block .block-content ul.mplog-categories li a:hover {
  color: #f06322 !important;
  /* text color */
}
.block .block-title a {
  text-decoration: none !important;
}
.block .btn-remove,
.block .btn-edit {
  float: right;
}
.block .actions {
  text-align: right;
}
.block .actions a {
  float: left;
}
.block .empty {
  width: 70%;
}
/* Mini Products List */
.mini-products-list li {
  padding: 5px 0;
}
.mini-products-list .product-image {
  float: left;
}
.mini-products-list .product-details {
  margin-left: 75px;
}
.mini-products-list .product-details h4 {
  font-size: 1em;
  font-weight: bold;
  margin: 0;
}
/* Block: Account */
.block-account {
  padding-top: 0 !Important;
  border-top: none !important;
}
.block-account h1 {
  color: #1469a2;
}
.block-account ul {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.block-account ul li a {
  color: #666666 !important;
  text-decoration: none !important;
}
.block-account ul li a:hover {
  text-decoration: underline !important;
}
.block-account ul li.current {
  color: #f16423 !important;
}
/* Block: Currency Switcher */
.block-currency select {
  width: 100%;
  border: 1px solid #888;
}
/* Block: Layered Navigation */
.block-layered-nav .block-title {
  display: none;
}
.block-layered-nav .block-content {
  padding-bottom: 20px;
}
.block-layered-nav .block-content p.block-subtitle {
  display: none;
}
.block-layered-nav .block-content dl dt {
  font-weight: normal !important;
  color: #1469a2;
  font-size: 18px;
}
.block-layered-nav dt {
  font-weight: bold;
}
.block-layered-nav .btn-remove {
  float: left;
  margin: 2px 3px 0 0;
}
/* Block: Cart */
.block.block-cart {
  padding-top: 0;
  padding-bottom: 0;
  border: none;
}
.block-cart .amount {
  font-size: 12px;
}
.block-cart span.title-cart {
  font-size: 18px;
  color: #666666;
}
.block-cart .subtotal {
  text-align: left;
  color: #f16423;
}
.block-cart .actions a.button.checkout {
  width: 100%;
  background: #1469a2;
  margin-top: 15px;
  margin-bottom: 15px;
  display: block;
  text-decoration: none !important;
  color: #f9f9f9 !important;
  text-align: center;
}
.block-cart .actions a.button.checkout span span {
  color: #f9f9f9 !important;
  text-decoration: none !important;
  padding: 10px 20px;
  display: inline-block;
}
.block-cart .actions a.button.checkout:hover {
  background: #115785;
}
.block-cart .block-content .mini-products-list .product-details p.product-name a {
  text-decoration: none !important;
  color: #337dae !important;
  font-weight: bold;
  font-size: 12px;
  width: 100%;
}
.block-cart .block-content .mini-products-list .price {
  font-size: 16px;
}
.block-cart .block-content .mini-products-list .glyphicon {
  color: #6d6d6d;
  font-size: 17px;
  clear: both;
}
.mpblog-recentposts .block-title span {
  font-size: 18px;
  color: #1469a2;
}
.mpblog-comments-container {
  border: none;
}
.mpblog-comments-container .mp-comment-form h3 {
  border: none;
}
.mpblog-comments-container .mp-comment-form fieldset .comment-form-field textarea {
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* stroke */
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  -moz-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  -webkit-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  width: 100%;
}
.mpblog-comments-container .mp-comment-form fieldset .comment-form-field input.required-entry {
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* stroke */
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  -moz-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  -webkit-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  height: 30px;
  padding: 2px;
  width: 100%;
}
.mpblog-comments-container .mp-comment-form fieldset .mp-form-footer button {
  float: right;
  width: 140px;
  height: 30px;
  -moz-border-radius: 4px / 3px;
  -webkit-border-radius: 4px / 3px;
  border-radius: 4px / 3px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #f16423;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  border: none;
  color: #ffffff;
}
.mpblog-comments-container .mp-comment-form .mpblog-notifications i.glyphicons {
  float: left;
}
.mpblog-comments-container .mp-comment-form .mpblog-notifications span.follow {
  padding-top: 4px;
  float: left;
}
.mpblog-comments-container .mp-comment-form .mpblog-notifications .mpblog-dialog {
  height: 135px;
}
.mp-comment-content fieldset,
.mp-comment-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
/* Block: Wishlist */
/* Block: Related */
.block-related li {
  padding: 5px 0;
}
.block-related input.checkbox {
  float: left;
  margin-right: -20px;
}
.block-related .product {
  margin-left: 20px;
}
.block-related .product .product-image {
  float: left;
  margin-right: -65px;
}
.block-related .product .product-details {
  margin-left: 65px;
}
/* Block: Compare Products */
.block-compare li {
  padding: 5px 0;
}
/* Block: Recently Viewed */
/* Block: Recently Compared */
/* Block: Poll */
.block-poll input.radio {
  float: left;
  margin: 1px -18px 0 0;
}
.block-poll .label {
  display: block;
  margin-left: 18px;
}
.block-poll li {
  padding: 3px 9px;
}
.block-poll .actions {
  margin: 5px 0 0;
}
.block-poll .answer {
  font-weight: bold;
}
.block-poll .votes {
  float: right;
  margin-left: 10px;
}
/* Block: Tags */
.block-tags ul,
.block-tags li {
  display: inline;
}
/* Block: Subscribe */
.block-subscribe .actions button.button {
  margin-top: 10px;
}
.block-subscribe .actions button.button span {
  font-size: 14px;
  padding: 5px 15px;
}
/* Block: Reorder */
.block-reorder li {
  padding: 5px 0;
}
.block-reorder input.checkbox {
  float: left;
  margin: 3px -20px 0 0;
}
.block-reorder .product-name {
  margin-left: 20px;
}
/* Block: Banner */
.block-banner .block-content {
  text-align: center;
}
/* Block: Login */
.block-login label {
  font-weight: bold;
  color: #666;
}
.block-login input.input-text {
  display: block;
  width: 167px;
  margin: 3px 0;
}
/* Paypal */
.sidebar .paypal-logo {
  display: block;
  margin: 10px 0;
  text-align: center;
}
.sidebar .paypal-logo a {
  float: none;
}
.sidebar .form-subscribe-header {
  color: #317bac;
}
.block-subscribe input {
  width: 100%;
}
/* ======================================================================================= */
/* Category Page ========================================================================= */
.category-title {
  border: 0;
  margin: 0 0 7px;
}
.category-image {
  width: 100%;
  overflow: hidden;
  margin: 0 0 10px;
  text-align: center;
}
.category-desc {
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
}
.category-products .toolbar {
  background: #eeeeee;
  font-family: "Segoe UI", Arial;
  padding: 13px 10px;
}
.category-products .toolbar .jq-selectbox__select-text {
  font-size: 14px;
}
.category-products .toolbar .pager {
  float: left;
  padding-top: 4px;
}
.category-products .toolbar .limiter {
  width: 135px;
  float: right;
}
.category-products .toolbar .limiter label {
  float: left;
  padding-top: 4px;
  padding-right: 5px;
  font-family: "Segoe UI", Arial;
  font-size: 16px;
}
.category-products .toolbar .limiter .jq-selectbox-wrapper {
  float: left;
}
.category-products .toolbar .limiter .jq-selectbox {
  width: 70px !important;
}
.category-products .toolbar .sorter {
  float: right;
}
.category-products .toolbar .sorter label {
  float: left;
  padding-top: 4px;
  padding-right: 5px;
  font-family: "Segoe UI", Arial;
  font-size: 16px;
}
.category-products .toolbar .sorter .jq-selectbox-wrapper {
  float: left;
}
.category-products .toolbar .pager p.amount {
  font-size: 16px;
}
.category-products .toolbar .pager .pages {
  font-size: 16px;
  margin-left: 260px;
  color: #666666 !important;
}
.category-products .toolbar .pager .pages li a {
  text-decoration: none !important;
  color: #666666 !important;
}
.category-products .toolbar .pager .pages li a:hover {
  color: #0067A5 !important;
}
.category-products .toolbar .pager .pages li.current {
  color: #f16423 !important;
  font-weight: bold !important;
}
/* View Type: Grid */
.products-grid {
  border-bottom: 1px solid #ddd;
  position: relative;
}
.products-grid.last {
  border-bottom: 0;
}
.products-grid li.item {
  float: left;
  width: 138px;
  padding: 12px 10px 80px;
}
.products-grid li.item a {
  font-size: 16px !important;
}
.products-grid .product-image {
  display: block;
  width: 135px;
  height: 135px;
  margin: 0 0 10px;
}
.products-grid .product-name {
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 13px;
}
.products-grid .price-box {
  margin: 5px 0;
}
.products-grid .availability {
  line-height: 21px;
}
.products-grid .actions {
  position: absolute;
  bottom: 12px;
}
.col2-left-layout .products-grid,
.col2-right-layout .products-grid {
  width: 632px;
  margin: 0 auto;
}
.col1-layout .products-grid {
  width: 790px;
  margin: 0 auto;
}
/* View Type: List */
.products-list {
  padding: 30px;
}
.products-list .item .ajax-reviews {
  float: left;
  width: 75%;
}
.products-list .item .ajax-reviews .mp-review-rating-box {
  float: left;
  display: inline;
}
.products-list .item .ajax-reviews .amount {
  float: left;
  margin-left: 5px;
}
.products-list .item .add-box {
  float: right;
  clear: right;
}
.products-list li.item {
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}
.products-list li.item a {
  font-size: 14px;
}
.products-list li.item.last {
  border-bottom: 0;
}
.products-list .product-image {
  float: left;
  width: 180px;
  height: 210px;
}
.products-list .product-shop {
  float: left;
  width: 77%;
}
.products-list .product-shop button.button span {
  padding: 10px 25px;
}
.products-list .product-shop button.button {
  float: right;
}
.products-list .product-name {
  margin: 0 0 5px;
  font-weight: normal;
  font-size: 20px !important;
  float: left;
}
.products-list .product-name .bookmarks {
  position: relative !important;
  right: 0 !important;
  top: 0 !important;
  display: inline-block;
}
.products-list .product-name .bookmarks .bookmarks-wrapper {
  top: -10px !important;
}
.products-list .product-name .bookmarks .bookmarks-wrapper .star {
  position: relative !important;
}
.products-list .product-name span.version {
  padding-left: 5px;
}
.product-name .bookmarks {
  position: relative !important;
  right: 0 !important;
  top: 0 !important;
  display: inline-block;
}
.product-name .bookmarks .bookmarks-wrapper {
  top: -10px !important;
}
.product-name .bookmarks .bookmarks-wrapper .star {
  position: relative !important;
}
.products-list .product-name a {
  text-decoration: none !important;
  color: #1469a2 !important;
  font-size: 26px !important;
}
.ajaxcartpro-box-show .price-box {
  width: 110px;
}
.ajaxcartpro-box-show .price-box p.special-price {
  text-align: left;
}
.ajaxcartpro-box-show .price-box p.special-price span.price {
  color: #f06322;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px !important;
  font-weight: normal;
}
.ajaxcartpro-box-show .price-box p.old-price {
  text-align: left;
}
.ajaxcartpro-box-show .price-box p.old-price span.price {
  color: #666666;
  /* text color */
  font-family: "Roboto Regular";
  font-weight: normal;
  font-size: 24px;
  text-decoration: line-through;
}
.product-options-bottom .price-box p.special-price {
  float: right;
  margin-left: 15px;
  margin-top: -8px;
}
.product-options-bottom .price-box p.special-price span.price {
  color: #f06322;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 36px;
  font-weight: normal;
}
.product-options-bottom .price-box p.old-price {
  float: left;
}
.product-options-bottom .price-box p.old-price span.price {
  color: #666666;
  /* text color */
  font-family: "Roboto Regular";
  font-weight: normal;
  font-size: 24px;
  text-decoration: line-through;
}
.add-block {
  position: absolute;
  top: 0;
  right: 0;
}
.add-block .free-download {
  clear: right;
}
.products-list .price-box {
  float: right;
  margin: 0 0 5px;
  font-size: 28px;
  clear: right;
}
.products-list .price-box p.special-price {
  text-align: right;
}
.products-list .price-box p.special-price span.price {
  color: #f06322;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 36px;
  font-weight: normal;
}
.products-list .price-box p.old-price {
  text-align: right;
}
.products-list .price-box p.old-price span.price {
  color: #666666;
  /* text color */
  font-family: "Roboto Regular";
  font-weight: normal;
  font-size: 24px;
  text-decoration: line-through;
}
.products-list .availability {
  float: left;
  margin: 3px 0 0;
}
.products-list .desc {
  padding: 6px 0 0;
  margin: 0 0 30px;
  line-height: 1.35;
  float: left;
  width: 75%;
  font-size: 16px;
  clear: left;
}
.products-list .desc .link-learn {
  font-size: 14px;
}
.products-list .add-to-links {
  clear: both;
}
.products-list .add-to-links li {
  display: inline;
}
.products-list .add-to-links .separator {
  display: inline;
  margin: 0 2px;
}
/* ======================================================================================= */
/* Product View ========================================================================== */
/* Availability */
.availability {
  margin: 0;
}
.availability span {
  font-weight: bold;
}
.availability.out-of-stock span {
  color: #d83820;
}
.availability-only {
  margin: 0 0 7px;
}
.availability-only a {
  background: url(../images/i_availability_only_arrow.gif) 100% 0 no-repeat;
  cursor: pointer;
  padding-right: 15px;
}
.availability-only .expanded {
  background-position: 100% -15px;
}
.availability-only-details {
  margin: 0 0 7px;
}
.availability-only-details th {
  background: #f2f2f2;
  font-size: 10px;
  padding: 0 8px;
}
.availability-only-details td {
  border-bottom: 1px solid #ddd;
  font-size: 11px;
  padding: 2px 8px 1px;
}
/* Email to a Friend */
/* Alerts */
/********** < Product Prices */
.price {
  white-space: nowrap !important;
}
.price-box .price {
  font-weight: bold;
}
/* Regular price */
.regular-price .price {
  font-weight: bold;
}
/* Old price */
.old-price .price-label {
  white-space: nowrap;
}
.old-price .price {
  font-weight: bold;
  text-decoration: line-through;
}
/* Special price */
.special-price .price-label {
  font-weight: bold;
  white-space: nowrap;
}
.special-price .price {
  font-weight: bold;
}
/* Minimal price (as low as) */
.minimal-price .price-label {
  font-weight: bold;
  white-space: nowrap;
}
.minimal-price-link {
  display: block;
}
.minimal-price-link .price {
  font-weight: normal;
}
/* Excluding tax */
.price-excluding-tax {
  display: block;
}
.price-excluding-tax .label {
  white-space: nowrap;
}
.price-excluding-tax .price {
  font-weight: normal;
}
/* Including tax */
.price-including-tax {
  display: block;
}
.price-including-tax .label {
  white-space: nowrap;
}
.price-including-tax .price {
  font-weight: bold;
}
/* Configured price */
.configured-price .price-label {
  font-weight: bold;
  white-space: nowrap;
}
.configured-price .price {
  font-weight: bold;
}
/* FPT */
.weee {
  display: block;
  font-size: 11px;
  color: #444;
}
.weee .price {
  font-size: 11px;
  font-weight: normal;
}
/* Excl tax (for order tables) */
.price-excl-tax {
  display: block;
}
.price-excl-tax .label {
  display: block;
  white-space: nowrap;
}
.price-excl-tax .price {
  display: block;
}
/* Incl tax (for order tables) */
.price-incl-tax {
  display: block;
}
.price-incl-tax .label {
  display: block;
  white-space: nowrap;
}
.price-incl-tax .price {
  display: block;
  font-weight: bold;
}
/* Price range */
.price-from .price-label {
  font-weight: bold;
  white-space: nowrap;
}
.price-to .price-label {
  font-weight: bold;
  white-space: nowrap;
}
/* Price notice next to the options */
.price-notice {
  padding-left: 10px;
}
.price-notice .price {
  font-weight: bold;
}
/* Price as configured */
.price-as-configured .price-label {
  font-weight: bold;
  white-space: nowrap;
}
/********** Product Prices > */
/* Tier Prices */
.tier-prices .price {
  font-weight: bold;
}
/* Add to Links */
.add-to-links .separator {
  display: none;
}
/* Add to Cart */
button.btn-cart {
  font-family: "Roboto Regular" !important;
  font-size: 18px !important;
  color: #fff;
  text-transform: uppercase;
}
button.btn-cart span {
  padding: 3px 17px 6px;
}
.add-to-cart label {
  float: left;
  margin-right: 5px;
}
.add-to-cart .qty {
  float: left;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.add-to-cart button.button {
  float: left;
  margin-left: 5px;
}
.add-to-cart .paypal-logo {
  clear: left;
  text-align: right;
}
.add-to-cart .paypal-logo .paypal-or {
  clear: both;
  display: block;
  margin: 5px 60px 5px 0;
}
.product-view .add-to-cart .paypal-logo {
  margin: 0;
}
/* Add to Links + Add to Cart */
.add-to-box .add-to-cart {
  float: left;
}
.add-to-box .or {
  float: left;
  margin: 0 10px;
}
.add-to-box .add-to-links {
  float: left;
}
.product-view {
  position: relative;
}
.compatibility {
  float: left;
  width: 100%;
  margin-bottom: 30px;
}
.compatibility .ce-compatibility,
.compatibility .ee-compatibility {
  float: left;
  width: 100%;
  margin-top: 40px;
  /*    .display(flex);
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: space-around;
        justify-content: space-around;*/
}
.compatibility .ce-compatibility span,
.compatibility .ee-compatibility span {
  width: 85px;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  color: #eeeeee;
  display: inline-block;
  float: left;
  background-color: #FFF;
}
.compatibility .community,
.compatibility .enterprise {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
  position: relative;
  margin-top: 30px;
  left: 0;
}
.compatibility .community:before,
.compatibility .enterprise:before,
.compatibility .community:after,
.compatibility .enterprise:after {
  content: "";
  display: table;
}
.compatibility .community:after,
.compatibility .enterprise:after {
  clear: both;
}
.compatibility .community span.label,
.compatibility .enterprise span.label {
  font-size: 28px;
  color: #666666;
  position: absolute;
  font-weight: bold;
}
.compatibility .community span.label.empty_1,
.compatibility .enterprise span.label.empty_1 {
  left: 85px;
}
.compatibility .community span.label.empty_2,
.compatibility .enterprise span.label.empty_2 {
  left: 170px;
}
.compatibility .community span.label.empty_3,
.compatibility .enterprise span.label.empty_3 {
  left: 255px;
}
.compatibility .community span.label.empty_4,
.compatibility .enterprise span.label.empty_4 {
  left: 340px;
}
.compatibility .community span.label.empty_5,
.compatibility .enterprise span.label.empty_5 {
  left: 425px;
}
.compatibility .community span.label.empty_6,
.compatibility .enterprise span.label.empty_6 {
  left: 510px;
}
.compatibility .community span.label.empty_6,
.compatibility .enterprise span.label.empty_6 {
  left: 510px;
}
.compatibility .community span.label.to_right,
.compatibility .enterprise span.label.to_right {
  left: auto;
  right: 25px;
}
.compatibility .community span.label em,
.compatibility .enterprise span.label em {
  font-style: normal;
}
.compatibility .community span.label em {
  color: #1469a2;
}
.compatibility .enterprise span.label em {
  color: #f16423;
}
.compatibility .ce-compatibility {
  background-color: #1469a2;
}
.compatibility .ce-compatibility span.is_compatible {
  color: #ffffff;
  background-color: #1469a2;
}
.compatibility .ee-compatibility {
  background-color: #f16423;
}
.compatibility .ee-compatibility span.is_compatible {
  color: #ffffff;
  background-color: #f16423;
}
.features-list {
  width: 100%;
  float: left;
  display: none;
}
.features-list .feature {
  float: left;
  width: 100%;
  padding: 40px 0;
  position: relative;
}
.features-list .feature .next {
  min-width: 235px;
  min-height: 1px;
}
.features-list .feature .text {
  padding-top: 100px;
}
.features-list .feature .img,
.features-list .feature .text {
  width: 50%;
  float: left;
}
.features-list .feature .img img,
.features-list .feature .text img {
  margin: 0 auto;
  display: block;
}
.features-list .feature .img span.title,
.features-list .feature .text span.title {
  font-size: 28px;
}
.features-list .feature .img p,
.features-list .feature .text p {
  font-size: 14px;
}
.features-list .feature span.next-text {
  color: #fff;
  font-family: "Felt Tip Woman";
  font-size: 20px;
  position: absolute;
}
.features-list .feature .next-link {
  position: absolute;
  display: block;
  width: 19px;
  height: 42px;
  background-size: 38px 42px;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.features-list .feature .add-to {
  background-image: url(../images/theme/features-icons/cart.png);
  position: absolute;
  display: block;
  width: 39px;
  height: 37px;
  background-size: 78px 37px;
  background-repeat: no-repeat;
  background-position: 0 0;
  right: 25px;
  bottom: 15px;
}
.features-list .feature a.next:hover .next-text {
  color: #666;
}
.features-list .feature a.next:hover .add-to,
.features-list .feature a.next:hover .next-link {
  background-position: 100% 0;
}
.features-list .feature-header {
  width: 100%;
  margin: 0;
  padding: 0;
}
.features-list .left-to-right .text {
  padding-right: 70px;
}
.features-list .left-to-right span.next-text {
  bottom: 10px;
  right: 80px;
  text-align: right;
}
.features-list .left-to-right .next-link {
  background-image: url(../images/theme/features-icons/arrow-right.png);
  right: 25px;
  bottom: 15px;
}
.features-list .right-to-left .text {
  padding-left: 70px;
}
.features-list .right-to-left span.next-text {
  bottom: 10px;
  left: 80px;
  text-align: left;
}
.features-list .right-to-left .add-to {
  left: 25px;
  right: 0;
  bottom: 15px;
}
.features-list .right-to-left .next-link {
  background-image: url(../images/theme/features-icons/arrow-left.png);
  left: 25px;
  bottom: 15px;
}
.features-list .right-to-left .next {
  float: left;
}
.features-list .feature:nth-child(2) {
  background-color: #cedce5;
}
.features-list .feature:nth-child(2) .text span.title {
  color: #1469a2;
}
.features-list .feature:nth-child(2) .text p {
  color: #666;
}
.features-list .feature:nth-child(3) {
  background-color: #e5d7ce;
}
.features-list .feature:nth-child(3) .text span.title {
  color: #f16423;
}
.features-list .feature:nth-child(3) .text p {
  color: #666;
}
.features-list .feature:nth-child(4) {
  background-color: #ededed;
}
.features-list .feature:nth-child(4) .text span.title {
  color: #1469a2;
}
.features-list .feature:nth-child(4) .text p {
  color: #666;
}
.features-list .feature:nth-child(5) {
  background-color: #e5d7ce;
}
.features-list .feature:nth-child(5) .text span.title {
  color: #f16423;
}
.features-list .feature:nth-child(5) .text p {
  color: #666;
}
.features-list .feature:nth-child(6) {
  background-color: #cedce5;
}
.features-list .feature:nth-child(6) .text span.title {
  color: #1469a2;
}
.features-list .feature:nth-child(6) .text p {
  color: #666;
}
.features-list .feature:last-child {
  margin-bottom: 60px;
}
.features-list .feature-header img {
  margin: 0 auto;
  display: block;
}
.product-collateral {
  padding: 20px;
}
.product-collateral.ajax-reviews {
  padding: 0 175px 60px !important;
}
.product-collateral.ajax-reviews .mp-ajax-reviews {
  padding: 0 10px 10px 10px;
}
.product-collateral .more-views h2 {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
}
.product-collateral .more-views .bx-wrapper {
  margin: 20px auto 30px;
}
.product-collateral .more-views .bx-viewport {
  background: none;
  border: none;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}
.product-collateral .more-views .bx-controls .bx-controls-direction a {
  width: 27px;
  height: 45px;
  top: 130px;
  margin-top: 0;
  z-index: initial;
  background-image: url("../images/theme/arrows-screenshots.png");
}
.product-collateral .more-views .bx-controls .bx-controls-direction a.bx-prev {
  background-position: 100% 0;
  left: -66px;
}
.product-collateral .more-views .bx-controls .bx-controls-direction a.bx-prev:hover {
  background-position: 100% -45px;
}
.product-collateral .more-views .bx-controls .bx-controls-direction a.bx-prev:active {
  background-position: 100% -90px;
}
.product-collateral .more-views .bx-controls .bx-controls-direction a.bx-next {
  background-position: 0 0;
  right: -56px;
}
.product-collateral .more-views .bx-controls .bx-controls-direction a.bx-next:hover {
  background-position: 0 -45px;
}
.product-collateral .more-views .bx-controls .bx-controls-direction a.bx-next:active {
  background-position: 0 -90px;
}
.product-collateral .box-collateral {
  margin: 0 0 15px;
}
.product-collateral ul.product-tabs li {
  height: 30px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  background-color: #eee;
  display: inline-block;
  width: 136px;
  text-align: center;
  padding-top: 6px;
  border: 1px solid #eeeeee;
}
.product-collateral ul.product-tabs li a {
  text-decoration: none !important;
  font-family: "Roboto Regular" !important;
  font-size: 14px !important;
  color: #666 !important;
}
.product-collateral ul.product-tabs li a:hover {
  color: #1469a2 !important;
}
.product-collateral ul.product-tabs li.active {
  height: 30px;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  background-color: #fff;
  border-bottom: none;
}
.product-collateral ul.product-tabs li.active a {
  color: #f16423 !important;
}
.product-collateral .product-tabs-content {
  border: 1px solid #eeeeee;
  padding: 15px;
}
.product-collateral .product-tabs-content dl dt {
  margin-top: 20px;
  margin-bottom: 10px;
  font-style: italic;
}
.product-collateral .product-tabs-content dl dt span.review-title {
  display: block;
  font-weight: bold;
  color: #f26e32;
  margin-bottom: 10px;
  font-style: normal;
}
.product-collateral .product-tabs-content dl dd {
  padding-bottom: 20px;
  border-bottom: 1px solid #EEEEEE;
}
.product-collateral .product-tabs-content .other-things .compatibility span.title {
  color: #1368a1;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}
.product-collateral .product-tabs-content .other-things .compatibility .compatibility-table {
  width: 400px;
  height: 150px;
}
.product-collateral .product-tabs-content .other-things .compatibility .compatibility-table .top {
  background-color: #f06322;
  /* layer fill content */
  float: left;
  clear: both;
  width: 400px;
  padding: 6px 10px;
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.product-collateral .product-tabs-content .other-things .compatibility .compatibility-table .top span {
  color: #fff;
}
.product-collateral .product-tabs-content .other-things .compatibility .compatibility-table .middle {
  padding: 6px 10px;
  float: left;
  clear: both;
  width: 400px;
  border: 1px solid #ededed;
  /* stroke */
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #fff;
  /* layer fill content */
}
.product-collateral .product-tabs-content .other-things .compatibility .compatibility-table .bottom {
  padding: 6px 10px;
  float: left;
  clear: both;
  width: 400px;
  border: 1px solid #ededed;
  /* stroke */
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #fff;
  /* layer fill content */
}
/* Product Images */
@media only screen and (max-width: 1400px) {
  .product-shop {
    width: 470px !important;
  }
  .side-block {
    margin-right: 20px !important;
  }
  .side-block:after {
    border: none !Important;
  }
}
.product-view .samples-wrapper {
  position: relative;
  float: left;
  width: 100%;
}
.product-view .samples-wrapper span.icon {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  float: left;
  background-image: url("../images/theme/demo-icon.png");
  background-image: url("../images/theme/demo-icon.svg");
  width: 63px;
  height: 60px;
  background-size: 63px 60px;
}
.product-view .samples-wrapper .samples-links {
  float: left;
  padding-top: 10px;
  padding-left: 63px;
}
.product-view .samples-wrapper .samples-links a {
  background: #428bca;
  margin-left: 15px;
  padding: 0px 10px 2px;
  font-size: 18px;
  color: #fff !important;
  text-decoration: none !important;
  -webkit-border-radius: 13px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 13px;
  -moz-background-clip: padding;
  border-radius: 13px;
  background-clip: padding-box;
  white-space: nowrap;
  float: left;
  margin-bottom: 10px;
}
.product-view .product-img-box {
  margin-top: 60px;
  float: left;
  width: 300px;
  overflow: hidden;
}
.product-view .product-img-box .product-image {
  position: relative;
  width: 100%;
}
.product-view .product-img-box .product-image img {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}
.product-view .product-img-box .product-image-zoom {
  position: relative;
  width: 265px;
  height: 265px;
  overflow: hidden;
  z-index: 9;
}
.product-view .product-img-box .product-image-zoom img {
  position: absolute;
  left: 0;
  top: 0;
  cursor: move;
}
.product-view .product-img-box .zoom-notice {
  text-align: center;
}
.product-view .product-img-box .zoom {
  position: relative;
  z-index: 9;
  height: 18px;
  margin: 0 auto 13px;
  padding: 0 28px;
  background: url(../images/slider_bg.gif) 50% 50% no-repeat;
  cursor: pointer;
}
.product-view .product-img-box .zoom.disabled {
  -moz-opacity: .3;
  -webkit-opacity: .3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  /*IE8*/
  opacity: .3;
}
.product-view .product-img-box .zoom #track {
  position: relative;
  height: 18px;
}
.product-view .product-img-box .zoom #handle {
  position: absolute;
  left: 0;
  top: -1px;
  width: 9px;
  height: 22px;
  background: url(../images/magnifier_handle.gif) 0 0 no-repeat;
}
.product-view .product-img-box .zoom .btn-zoom-out {
  position: absolute;
  left: 2px;
  top: 0;
}
.product-view .product-img-box .zoom .btn-zoom-in {
  position: absolute;
  right: 2px;
  top: 0;
}
.product-view .product-img-box .more-views ul {
  margin-left: -4px;
}
.product-view .product-img-box .more-views li {
  float: left;
  padding: 1px;
  background-color: #ddd;
  margin: 0 0 8px 4px;
}
.product-view .product-img-box .samples {
  width: 100%;
  margin-left: -10px;
}
.product-view .product-img-box .samples table {
  width: 100%;
}
.product-view .product-img-box .samples table span {
  font-family: "Roboto Regular";
  font-size: 18px;
  color: #666;
}
.product-view .product-img-box .samples table a {
  font-family: "Roboto Regular";
  font-size: 14px;
  text-decoration: underline;
  color: #f16423;
}
.product-view .side-block {
  position: relative;
  top: 0;
  float: right;
  margin-right: -90px;
  margin-top: 60px;
}
.product-view .side-block .product-options-bottom,
.product-view .side-block .product-options {
  width: 370px;
  float: left;
  clear: left;
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}
.product-view .side-block .product-options-bottom:before,
.product-view .side-block .product-options:before,
.product-view .side-block .product-options-bottom:after,
.product-view .side-block .product-options:after {
  content: "";
  display: table;
}
.product-view .side-block .product-options-bottom:after,
.product-view .side-block .product-options:after {
  clear: both;
}
.product-view .side-block .product-options-bottom .mp-share-fb-product .mp-share-box {
  border: none !important;
}
.product-view .side-block .product-options-bottom .mp-share-fb-product {
  margin: 0 !important;
  min-height: 50px;
}
.product-view .side-block .product-options-bottom .mp-share-fb-product .mp-share-btn {
  position: relative !important;
}
.product-view .side-block .product-options-bottom .mp-share-fb-product .mp-share-count {
  display: inline-block !important;
  text-align: center !important;
}
.product-view .side-block .product-options-bottom .mp-share-fb-product .mp-share-actions-overlay {
  background: none !important;
}
.product-view .side-block .product-options-bottom .mp-share-fb-product .mp-share-loading {
  top: 20px !important;
}
.product-view .side-block .product-options-bottom .mp-share-box {
  padding: 0 !important;
}
.product-view .side-block .product-options-bottom .mp-share-box .mp-share-header {
  display: none;
}
.product-view .side-block .product-options-bottom input#qty {
  display: none !important;
}
.product-view .side-block .product-options-bottom .price-box .special-price {
  float: left;
  margin-left: 0;
  clear: left;
}
.product-view .side-block .product-options-bottom .price-box .old-price {
  clear: left;
  float: left;
}
.product-view .side-block .product-options-bottom .button span span {
  padding: 15px 30px !important;
}
.product-view .side-block .product-options-bottom .mp-share-box {
  margin-bottom: 5px !important;
}
.product-view .side-block .product-options-bottom .mp-share-box .mp-share-table-box {
  height: initial !important;
}
.product-view .side-block .product-options-bottom .shareme-box {
  float: left;
  width: 100%;
}
.product-view .side-block .product-options-bottom .shareme-box label.mp-share-discount {
  float: left;
  line-height: initial;
  height: initial;
  padding-right: 10px;
  margin-top: -4px;
}
.product-view .side-block .product-options-bottom .shareme-box .mp-share-btn-cell {
  float: left;
}
.product-view .side-block .product-options-bottom .shareme-box .mp-share-btn-cell div div {
  white-space: nowrap !important;
}
.product-view .side-block:after {
  position: absolute;
  bottom: -10px;
  right: 5px;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 85px 0 0;
  border-color: #666666 transparent transparent transparent;
}
.product-view .closed-block {
  margin-top: 60px;
  float: right;
  width: 230px;
  margin-right: 60px;
}
.product-view .closed-block img {
  margin-bottom: 26px;
}
.product-view .closed-block p {
  width: 100%;
  text-align: center;
  color: #666;
  font-size: 18px;
}
.product-view .closed-block p.no-support {
  font-size: 12px;
}
.product-view .closed-block a.button {
  text-align: center;
  display: block;
  margin: 26px auto 12px;
  padding: 15px 45px !important;
  text-transform: none;
  font-size: 18px;
  text-decoration: none !important;
  color: white !important;
}
.product-view .product-shop {
  margin-top: 60px;
  float: left;
  width: 580px;
  position: relative;
}
.product-view .product-shop .marketing-text {
  font-weight: bold;
  font-size: 30px;
  color: #f16423;
}
.product-view .product-shop .short-description .std {
  font-size: 18px;
}
.product-view .product-shop .short-description.out-of-stock {
  padding-right: 30px;
}
.product-view .product-shop .samples table#my-orders-table.samples-table {
  width: 100%;
}
.product-view .product-shop .samples table#my-orders-table.samples-table thead {
  display: none;
}
.product-view .mp-countdown ul li .pie-chart span.huge {
  padding-top: 17px;
}
.product-view .points {
  float: left;
}
.product-view .points .points-notice-sidebar-msg {
  margin-top: 24px;
  font-family: "Roboto Regular";
  font-size: 14px;
  color: #666;
  position: relative;
}
.product-view .points .points-notice-sidebar-msg .message {
  margin-top: 5px;
  padding-right: 5px;
  display: inline-block;
  float: left;
}
.product-view .points .points-notice-sidebar-msg .points-container {
  font-weight: bold;
}
.product-view .points .points-notice-sidebar-msg .icon-points {
  display: inline-block;
  background: url('../images/theme/icon-points.png') no-repeat;
  width: 27px;
  height: 30px;
  float: right;
}
.product-view .points .points-notice-sidebar-msg div.hint {
  text-align: left;
  float: left;
  clear: both;
}
.product-view .points:hover div.hint {
  display: block;
}
.product-view .more-views {
  background-color: #666666;
  margin-left: -20px;
  margin-right: -20px;
}
.product-view .more-views h2 {
  display: none;
}
.product-view .more-views .bx-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
.product-view .more-views .bx-wrapper ul.bxslider li a {
  position: relative;
  width: 300px;
  height: 240px;
}
.product-view .more-views .bx-wrapper ul.bxslider li a img {
  width: 300px;
  height: 240px;
  object-fit: cover;
  background-color: #666;
}
.col3-layout .product-view .product-img-box {
  float: none;
  margin: 0 auto;
}
.product-image-popup {
  margin: 0 auto;
}
.product-image-popup .buttons-set {
  float: right;
  clear: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.product-image-popup .nav {
  margin: 0 100px;
  text-align: center;
}
.product-image-popup .image {
  display: block;
}
/* Product Shop */
.product-view .product-shop .product-name h1 {
  float: left;
}
.product-view .product-shop .product-name h1 .version {
  padding-left: 5px;
}
.product-view .product-shop .product-name h1 .bookmarks {
  float: right;
}
.product-view .product-shop .product-name h1 .bookmarks .bookmarks-wrapper {
  top: 0 !important;
}
.product-view .product-shop .short-description .std {
  padding: 0;
}
.product-view .product-shop .mp-share-fb-product {
  float: left;
  width: 100%;
  margin-top: 20px;
}
.product-view .product-shop .mp-share-fb-product .mp-share-box.mp-share-square {
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
  background: #EEEEEE;
  padding: 13px;
  float: left;
  border: none;
  width: 100%;
  margin-top: 0 !important;
}
.product-view .product-shop .mp-share-fb-product .mp-share-box.mp-share-square .mp-share-header {
  padding: 0;
  border: none;
  background: none;
  color: #1469a2 !important;
  text-transform: uppercase;
}
.full-desc {
  width: 820px;
  margin: 0 auto;
  padding: 50px 0 !important;
  font-size: 16px;
}
.guides {
  padding-top: 20px;
  float: left;
  width: 100%;
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
}
.guides:before,
.guides:after {
  content: "";
  display: table;
}
.guides:after {
  clear: both;
}
.guides .col-lg-4 {
  position: relative;
}
.guides a.block {
  display: block;
  float: left;
  padding: 40px 5px;
  height: 192px;
  filter: alpha(opacity=85);
  -webkit-opacity: 0.85;
  -moz-opacity: 0.85;
  opacity: 0.85;
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */
  -webkit-transition: opacity 0.3s ease-in-out 0.1s;
  -moz-transition: opacity 0.3s ease-in-out 0.1s;
  -o-transition: opacity 0.3s ease-in-out 0.1s;
  transition: opacity 0.3s ease-in-out 0.1s;
}
.guides a.block:before,
.guides a.block:after {
  content: "";
  display: table;
}
.guides a.block:after {
  clear: both;
}
.guides a.block:hover {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.guides a.block.readme {
  background-color: #ca7b44;
}
.guides a.block.guide {
  background-color: #5b9c7e;
}
.guides a.block.license {
  background-color: #343434;
}
.guides .icon {
  width: 140px;
  height: 140px;
  position: absolute;
  left: 0;
  top: 26px;
  display: inline-block;
  background-size: 140px 140px !important;
}
.guides .icon.readme {
  background: url(../images/guides-icons/note.png);
}
.guides .icon.userguide {
  background: url(../images/guides-icons/book.png);
}
.guides .icon.license {
  background: url(../images/guides-icons/key.png);
}
.guides .content {
  padding-left: 140px;
  padding-right: 0px;
}
.guides .content .title {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
}
.guides .content .text {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
.scroll-wrapper {
  float: right;
}
.scroll-to-options {
  width: 205px;
  height: 90px;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
  background: #EEEEEE;
  position: fixed;
  top: -150px;
  margin-left: -115px;
  padding: 10px;
  -webkit-transition: top 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9) 0s;
  -moz-transition: top 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9) 0s;
  -o-transition: top 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9) 0s;
  transition: top 0.3s cubic-bezier(0.1, 0.1, 0.25, 0.9) 0s;
}
.scroll-to-options.show {
  top: 30px;
}
.scroll-to-options:after {
  position: absolute;
  bottom: -10px;
  right: 5px;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 85px 0 0;
  border-color: #666666 transparent transparent transparent;
}
@media only screen and (max-width: 1400px) {
  .scroll-to-options {
    margin-left: -225px;
  }
  .scroll-to-options:after {
    display: none;
  }
}
.scroll-to-options .price-box {
  padding-top: 10px;
  float: left;
}
.scroll-to-options .price-box .special-price .price {
  font-size: 22px;
  font-weight: normal;
  color: #f26e32;
}
.scroll-to-options .price-box .regular-price {
  line-height: 50px;
}
.scroll-to-options a#to-options {
  margin-top: 6px;
  float: right;
  display: inline-block;
  background-image: url(../images/theme/cart.png);
  width: 56px;
  height: 56px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #f16423;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
}
.scroll-to-options a#to-options.free {
  background-image: url(../images/theme/download.png);
  background-color: #1369a1;
}
.features {
  margin-bottom: 20px;
  float: left;
  width: 100%;
  padding: 0 200px;
  margin-top: 50px;
}
.features .features-line {
  float: left;
  width: 100%;
}
.features .features-line .left {
  padding-right: 120px;
  text-align: right;
}
.features .features-line .left span.icon {
  float: right;
  right: 20px;
  top: 0;
}
.features .features-line .right {
  padding-left: 120px;
  text-align: left;
}
.features .features-line .right span.icon {
  float: left;
  left: 20px;
  top: 0;
}
.features .features-line .left,
.features .features-line .right {
  position: relative;
}
.features .features-line .left span.title,
.features .features-line .right span.title {
  color: #0069A5;
  font-size: 18px;
  font-weight: 700;
}
.features .features-line .left p.text,
.features .features-line .right p.text {
  color: #666;
  margin-top: 5px;
}
.features .features-line .left span.icon,
.features .features-line .right span.icon {
  -webkit-transition: opacity 0.3s ease-in-out 0.3s;
  -moz-transition: opacity 0.3s ease-in-out 0.3s;
  -o-transition: opacity 0.3s ease-in-out 0.3s;
  transition: opacity 0.3s ease-in-out 0.3s;
  position: absolute;
  display: inline-block;
  width: 90px;
  height: 110px;
  background-repeat: no-repeat !important;
  background-position: center !important;
  zoom: 1;
  filter: alpha(opacity=70);
  -webkit-opacity: 0.7;
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.features .features-line .left span.icon.time,
.features .features-line .right span.icon.time {
  background: url(../images/clock_icon.png);
  background: url(../images/clock_icon.svg);
}
.features .features-line .left span.icon.peoples,
.features .features-line .right span.icon.peoples {
  background: url(../images/users_icon.png);
  background: url(../images/users_icon.svg);
}
.features .features-line .left span.icon.settings,
.features .features-line .right span.icon.settings {
  background: url(../images/gears_icon.png);
  background: url(../images/gears_icon.svg);
}
.features .features-line .left span.icon.email,
.features .features-line .right span.icon.email {
  background: url(../images/email_icon.png);
  background: url(../images/email_icon.svg);
}
.features .features-line .left span.icon.discount,
.features .features-line .right span.icon.discount {
  background: url(../images/diskount_icon.png);
  background: url(../images/diskount_icon.svg);
}
.features .features-line .left span.icon.push,
.features .features-line .right span.icon.push {
  background: url(../images/push_icon.png);
  background: url(../images/push_icon.svg);
}
.features .features-line .left span.icon.author,
.features .features-line .right span.icon.author {
  background: url(../images/features_icons/blogpro/author.png);
  background: url(../images/features_icons/blogpro/author.svg);
}
.features .features-line .left span.icon.comment,
.features .features-line .right span.icon.comment {
  background: url(../images/features_icons/blogpro/comment.png);
  background: url(../images/features_icons/blogpro/comment.svg);
}
.features .features-line .left span.icon.grid_list,
.features .features-line .right span.icon.grid_list {
  background: url(../images/features_icons/blogpro/grid_list.png);
  background: url(../images/features_icons/blogpro/grid_list.svg);
}
.features .features-line .left span.icon.images,
.features .features-line .right span.icon.images {
  background: url(../images/features_icons/blogpro/images.png);
  background: url(../images/features_icons/blogpro/images.svg);
}
.features .features-line .left span.icon.notification,
.features .features-line .right span.icon.notification {
  background: url(../images/features_icons/blogpro/notification.png);
  background: url(../images/features_icons/blogpro/notification.svg);
}
.features .features-line .left span.icon.responsive,
.features .features-line .right span.icon.responsive {
  background: url(../images/features_icons/blogpro/responsive.png);
  background: url(../images/features_icons/blogpro/responsive.svg);
}
.features .features-line .left span.icon.seo,
.features .features-line .right span.icon.seo {
  background: url(../images/features_icons/blogpro/seo.png);
  background: url(../images/features_icons/blogpro/seo.svg);
}
.features .features-line .left span.icon.social_media,
.features .features-line .right span.icon.social_media {
  background: url(../images/features_icons/blogpro/social_media.png);
  background: url(../images/features_icons/blogpro/social_media.svg);
}
.features .features-line .left span.icon.widget,
.features .features-line .right span.icon.widget {
  background: url(../images/features_icons/blogpro/widget.png);
  background: url(../images/features_icons/blogpro/widget.svg);
}
.features .features-line .left span.icon.wysiwyg,
.features .features-line .right span.icon.wysiwyg {
  background: url(../images/features_icons/blogpro/wysiwyg.png);
  background: url(../images/features_icons/blogpro/wysiwyg.svg);
}
.features .features-line .left:hover span.icon,
.features .features-line .right:hover span.icon {
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.features .features-line button.button {
  width: 210px;
  margin: 0 auto;
  display: none;
}
.features .features-line button.button span span {
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-size: 26px;
}
.mp-share-fb-product .mp-discount {
  margin-top: 0;
  margin-bottom: 20px !important;
  background-color: #ffffff !important;
  background-image: none !important;
  border: 1px solid #1369a1 !important;
  /* stroke */
  -webkit-border-radius: 3px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 3px !important;
  -moz-background-clip: padding !important;
  border-radius: 3px !important;
  background-clip: padding-box !important;
  padding: 5px 10px !important;
  color: #1369a1 !important;
  /* text color */
  font-family: "Roboto Regular" !important;
  font-size: 14px !important;
  font-weight: normal !important;
  text-transform: none !important;
}
.col3-layout .product-view .product-shop {
  float: none;
  width: auto;
}
.product-view .product-name h1 {
  color: #1469a2;
  font-weight: bold;
}
.product-view .short-description {
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 5px;
  clear: both;
}
/* Product Options */
.product-options {
  position: relative;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #EEEEEE;
  padding: 13px;
  float: left;
  width: 100%;
}
.product-options .jq-selectbox {
  width: 200px !important;
}
.product-options .jq-radio.checked .jq-radio__div {
  margin: 2px 0 0 2px;
}
.product-options .bages {
  float: right;
  width: 340px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-options .bages a {
  display: block;
  width: 33%;
  position: relative;
}
.product-options .bages a .icon {
  display: block;
  background-repeat: no-repeat;
  float: none;
  margin: 0 auto;
  background-image: url("../images/new-big-bages.png");
}
.product-options .bages a .text {
  color: #656565;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  width: 100%;
  display: none;
  position: absolute;
}
.product-options .bages a .text span {
  border-bottom: 1px dashed #656565;
}
.product-options .bages .bug .icon {
  background-position: -198px 0;
  width: 112px;
  height: 130px;
}
.product-options .bages .bug:hover .icon {
  background-position: -198px 100%;
}
.product-options .bages .bug:hover .text {
  display: inline;
}
.product-options .bages .support .icon {
  background-position: -96px 0;
  width: 102px;
  height: 130px;
}
.product-options .bages .support:hover .icon {
  background-position: -96px 100%;
}
.product-options .bages .support:hover .text {
  display: inline;
}
.product-options .bages .moneyback .icon {
  background-position: 0 0;
  width: 96px;
  height: 130px;
}
.product-options .bages .moneyback:hover .icon {
  background-position: 0 100%;
}
.product-options .bages .moneyback:hover .text {
  display: inline;
}
.product-options dt label {
  color: #1469a2;
  font-weight: normal !important;
}
.product-options dt label.required {
  color: #1469a2;
  font-weight: normal !important;
}
.product-options dt span.required {
  color: red;
}
.product-options dt .qty-holder {
  float: right;
}
.product-options dt .qty-holder label {
  vertical-align: middle;
}
.product-options dt .qty-disabled {
  background: none;
  border: 0;
  padding: 3px;
  color: #000;
}
.product-options dd {
  margin: 5px 0;
}
.product-options dd div.input-box .jq-selectbox {
  width: 200px !important;
}
.product-options dd div.input-box .jq-selectbox .jq-selectbox__select {
  padding: 3px 30px 0 5px;
}
.product-options dd div.input-box .jq-selectbox .jq-selectbox__select-text {
  font-size: 16px;
}
.product-options dd input.input-text {
  width: 98%;
}
.product-options dd input.datetime-picker {
  width: 150px;
}
.product-options dd .time-picker {
  display: -moz-inline-box;
  display: inline-block;
  padding: 2px 0;
  vertical-align: middle;
}
.product-options dd textarea {
  width: 98%;
  height: 8em;
}
.product-options .options-list input.radio {
  float: left;
  margin: 3px -18px 0 0;
}
.product-options .options-list input.checkbox {
  float: left;
  margin: 3px -20px 0 0;
}
.product-options .options-list .label {
  display: inline-block;
  margin-left: 7px;
}
.product-options ul.validation-failed {
  padding: 0 7px;
}
.product-options p.required {
  padding: 15px 0 0;
  display: none;
}
.product-options-bottom {
  background-color: #eee;
  float: left;
  width: 100%;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 0 13px 13px;
}
.product-options-bottom .price-box {
  float: left;
}
.price-box .regular-price .price {
  font-family: "Roboto Regular";
  font-size: 30px;
  color: #666;
  font-weight: normal;
}
.product-options-bottom .add-to-cart {
  float: right;
  width: 190px;
}
/* Grouped Product */
/* Block: Description */
/* Block: Additional */
/* Block: Upsell */
.product-view .box-up-sell {
  height: 200px;
  overflow-y: hidden;
}
.product-view .box-up-sell h3.product-name {
  height: 15px;
  overflow: hidden;
}
table.products-grid .price-box p.special-price span.price {
  font-weight: normal;
  color: #1469a2;
}
table.products-grid .price-box p.old-price span.price {
  font-weight: normal;
}
.product-view .box-up-sell .products-grid td {
  width: 25%;
}
/* Block: Tags */
.product-view .box-tags .form-add label {
  float: left;
}
.product-view .box-tags .form-add .input-box {
  float: left;
  width: 260px;
  margin: 0 5px;
}
.product-view .box-tags .form-add input.input-text {
  width: 254px;
}
.product-view .box-tags .form-add p {
  clear: both;
}
/* Block: Reviews */
/* Send a Friend */
/* ======================================================================================= */
/* Content Styles ================================================================= */
.product-name {
  font-size: 1em;
  font-weight: normal;
}
/* Product Tags */
.tags-list li {
  display: inline;
}
/* Advanced Search */
/* CMS Home Page */
/* Sitemap */
.page-sitemap .links {
  text-align: right;
  margin: 0 8px -22px 0;
}
.page-sitemap .links a {
  text-decoration: none;
  position: relative;
}
.page-sitemap .links a:hover {
  text-decoration: underline;
}
.page-sitemap .sitemap {
  margin: 12px;
}
.page-sitemap .sitemap li {
  margin: 3px 0;
}
.page-sitemap .sitemap li.level-0 {
  margin: 10px 0 0;
  font-weight: bold;
}
/* RSS */
.rss-title h1 {
  background: url(../images/i_rss-big.png) 0 4px no-repeat;
  padding-left: 27px;
}
.rss-table .link-rss {
  display: block;
  line-height: 1.35;
  background-position: 0 2px;
}
/* ======================================================================================= */
/* Shopping Cart ========================================================================= */
.checkout-cart-index .col-main {
  padding: 20px 25px;
}
.zblock-cart-content-top a {
  margin: 0 auto;
}
/* Checkout Types */
.cart .page-title {
  margin: 0;
  border: none;
  padding: 0;
}
.cart .page-title h1 {
  color: #1368a1 !important;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
  margin-top: 12px !Important;
}
.cart .actions {
  margin-top: 16px;
}
.cart .actions .col1 button.btn-continue {
  width: 210px;
  height: 43px;
  -moz-border-radius: 6px / 4px;
  -webkit-border-radius: 6px / 4px;
  border-radius: 6px / 4px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
}
.cart .actions .col1 button.btn-continue span {
  padding: 10px 15px;
}
.cart .actions .col1 .points-message {
  width: 340px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #ededed;
  /* layer fill content */
  float: left;
  margin-top: 20px;
  padding: 15px;
}
.cart .actions .col1 .points-message .block-title strong {
  font-weight: normal !important;
}
.cart .actions .col1 .points-message .block-title strong span {
  color: #1368a1;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
}
.cart .actions .col1 .points-message .block-content ul li {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
}
.cart .actions .col1 .points-message .block-content ul li span.top-message {
  float: left;
  padding-top: 3px;
  padding-right: 5px;
}
.cart .actions .col1 .points-message .block-content ul li span.top-message .points-container {
  font-weight: bold;
}
.cart .actions .col1 .points-message .block-content ul li div.hint {
  float: left;
  clear: both;
}
.cart .actions .col1 .points-message .block-content ul li span.icon {
  display: inline-block;
  background: url('../images/theme/icon-points.png') no-repeat;
  width: 27px;
  height: 30px;
}
.cart .actions .col1 .points-message .block-content .info-link-container a {
  float: right;
}
.cart .actions .col2 .discount {
  padding-bottom: 72px;
  padding-left: 43px;
  background: url("../images/theme/cupon-bg.png") no-repeat;
  width: 333px;
  height: 262px;
  display: block;
}
.cart .actions .col2 .discount h2 {
  color: #fff;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
  padding: 10px 15px;
  padding-bottom: 5px;
}
.cart .actions .col2 .discount .discount-form label[for=coupon_code] {
  color: #fff;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  padding: 0 15px;
}
.cart .actions .col2 .discount .discount-form .input-box {
  padding: 20px 15px;
}
.cart .actions .col2 .discount .discount-form .input-box input {
  width: 250px;
  height: 30px;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.cart .actions .col2 .discount .discount-form .buttons-set {
  float: left;
  padding-left: 100px;
  padding-top: 13px;
}
.cart .actions .col2 .discount .discount-form .buttons-set button {
  height: 32px;
  float: left;
  -webkit-border-radius: 2px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 2px;
  -moz-background-clip: padding;
  border-radius: 2px;
  background-clip: padding-box;
}
.cart .actions .col2 .discount .discount-form .buttons-set button span {
  padding: 0 20px;
}
.cart .actions .col2 .discount .discount-form .buttons-set button span span {
  color: #fff;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
}
.cart .actions .col2 .discount .discount-form .buttons-set button.disabled {
  display: none;
}
.cart .actions .col3 button.btn-update {
  margin-bottom: 20px;
}
.cart .actions .col3 .subtotals {
  float: right;
  clear: both;
  font-family: "Roboto Regular";
  color: #666;
  font-size: 20px;
}
.cart .actions .col3 .grandtotal {
  font-family: "Roboto Regular";
  color: #666;
  float: right;
  clear: both;
  font-size: 36px;
  margin-bottom: 20px;
}
.cart .actions .col3 #shopping-cart-totals-table {
  float: right;
  font-family: "Roboto Regular";
  color: #666;
}
.cart .actions .col3 #shopping-cart-totals-table tbody {
  font-size: 24px;
}
.cart .actions .col3 #shopping-cart-totals-table tfoot {
  font-size: 36px;
}
.crosssell {
  background: #fff;
  padding: 20px 25px;
}
.crosssell h2 {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
}
.crosssell ul#crosssell-products-list {
  margin-top: 20px;
}
.crosssell ul#crosssell-products-list li.item.last {
  padding-right: 0 !important;
}
.crosssell ul#crosssell-products-list li.item {
  width: 313px;
  float: left;
  margin-right: 60px;
}
.crosssell ul#crosssell-products-list li.item div.product-details h3.product-name {
  float: right;
  margin-top: 25px;
  font-family: "Roboto Regular";
  font-size: 18px;
  text-align: right;
}
.crosssell ul#crosssell-products-list li.item div.product-details h3.product-name a {
  color: #1368a1 !important;
  /* text color */
  text-decoration: none !important;
}
.crosssell ul#crosssell-products-list li.item div.product-details div.price-box {
  float: right;
  clear: both;
  padding: 10px 0;
}
.crosssell ul#crosssell-products-list li.item div.product-details div.price-box .regular-price span.price {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 36px;
}
.crosssell ul#crosssell-products-list li.item div.product-details div.price-box p.special-price span.price {
  font-weight: normal;
  color: #f26e32;
  font-size: 30px;
}
.crosssell ul#crosssell-products-list li.item div.product-details div.price-box p.old-price {
  text-align: right;
}
.crosssell ul#crosssell-products-list li.item div.product-details div.price-box p.old-price span.price {
  font-weight: normal;
}
.crosssell ul#crosssell-products-list li.item div.product-details button.btn-cart {
  float: right;
  clear: both;
  width: 142px;
  height: 43px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #f16423;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
}
.crosssell ul#crosssell-products-list li.item div.product-details button.btn-cart span {
  display: block;
  padding: 0 30px;
}
.crosssell ul#crosssell-products-list li.item div.product-details button.btn-cart span span {
  text-transform: none;
}
.cart .checkout-types {
  float: right;
  text-align: right;
}
.cart button.button span span {
  font-size: 18px;
  text-transform: uppercase;
}
.cart fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.cart .data-table thead {
  background-color: #eeeeee;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.cart .data-table th {
  border: none;
}
.cart .data-table td {
  border: none;
}
.cart .data-table th {
  font-weight: normal;
  font-size: 12px;
}
.cart .data-table tr.even {
  background: none;
}
.cart h2.product-name a {
  text-decoration: none !important;
  font-size: 18px;
}
.cart .item-options dt {
  font-style: normal;
  font-size: 12px;
}
.cart .item-options dd {
  font-style: normal;
  font-size: 12px;
}
.cart h2.product-name a:hover {
  text-decoration: underline !important;
}
.cart .title-buttons .checkout-types li {
  float: left;
  margin: 0 0 5px 5px;
}
.cart .checkout-types .paypal-or {
  margin: 0 8px;
  line-height: 2.3;
}
.cart .totals .checkout-types .paypal-or {
  clear: both;
  display: block;
  padding: 3px 55px 8px 0;
  line-height: 1.0;
  font-size: 11px;
}
/* Shopping Cart Table */
.cart-table .item-msg {
  font-size: 10px;
}
.cart-table .glyphicon {
  color: #666666;
  font-size: 18px;
}
.cart-table tbody tr td.a-right span.cart-price span.price {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
}
/* Shopping Cart Collateral boxes */
.cart .cart-collaterals {
  padding: 25px 0 0;
}
.cart .data-table td.last {
  width: 5%;
}
.cart .cart-price span.price span.big {
  font-size: 18px;
}
.cart .data-table input.input-text,
textarea {
  padding: 2px 11px;
}
.cart fieldset {
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  border: 1px solid #EEEEEE;
}
.cart .cart-collaterals .col2-set {
  float: left;
  width: 700px;
}
.cart .icon-remove {
  float: right;
}
.cart .icon-edit {
  float: left;
}
.cart .crosssell h2 {
  font-size: 13px;
  font-weight: bold;
}
.cart .crosssell .product-image {
  float: left;
  width: 75px;
  height: 75px;
  border: 1px solid #ddd;
}
.cart .crosssell .product-details {
  margin-left: 90px;
}
.cart .crosssell li.item {
  margin: 12px 0;
}
.cart button.btn-update,
.cart button.btn-continue {
  background: none repeat scroll 0 0 #1469A2;
}
.cart button.btn-update:hover,
.cart button.btn-continue:hover {
  background: #115785;
}
/* Discount Codes & Estimate Shipping and Tax Boxes */
/* Shopping Cart Totals */
.cart .totals {
  float: right;
}
.cart .totals table {
  width: 100%;
}
.cart .totals table th,
.cart .totals table td {
  padding: 5px;
}
.cart .totals table th {
  font-weight: bold;
}
/* Options Tool Tip */
.item-options dt {
  font-weight: bold;
  font-style: italic;
}
.item-options dd {
  padding-left: 10px;
}
.truncated {
  cursor: help;
}
.truncated a.dots {
  cursor: help;
}
.truncated a.details {
  cursor: help;
}
.truncated .truncated_full_value {
  position: relative;
  z-index: 999;
}
.truncated .truncated_full_value .item-options {
  position: absolute;
  top: -99999em;
  left: -99999em;
  z-index: 999;
  width: 250px;
  padding: 8px;
  border: 1px solid #ddd;
  background-color: #f6f6f6;
}
.truncated .truncated_full_value .item-options > p {
  font-weight: bold;
  text-transform: uppercase;
}
.truncated .show .item-options {
  top: -20px;
  left: -200px;
}
.col-left .truncated .show .item-options {
  left: 30px;
  top: 7px;
}
.col-right .truncated .show .item-options {
  left: -240px;
  top: 7px;
}
/* ======================================================================================= */
/* Checkout ============================================================================== */
/********** < Common Checkout Styles */
/* Shipping and Payment methods */
.sp-methods dt {
  font-weight: normal;
}
.sp-methods .jq-radio.checked .jq-radio__div {
  margin: 2px 0 0 2px !important;
}
.sp-methods .price {
  font-weight: bold;
}
.sp-methods .form-list {
  padding-left: 20px;
}
.sp-methods select.month {
  width: 150px;
  margin-right: 10px;
}
.sp-methods select.year {
  width: 96px;
}
.sp-methods input.cvv {
  width: 3em !important;
}
.sp-methods .checkmo-list li {
  margin: 0 0 5px;
}
.sp-methods .checkmo-list label {
  width: 135px;
  padding-right: 10px;
  text-align: right;
}
.sp-methods .checkmo-list address {
  float: left;
}
.sp-methods .centinel-logos a {
  margin-right: 3px;
}
.sp-methods .centinel-logos img {
  vertical-align: middle;
}
.sp-methods .release-amounts {
  margin: 0.5em 0 1em;
}
.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0;
}
.please-wait {
  float: right;
  margin-right: 5px;
}
.please-wait img {
  vertical-align: middle;
}
.cvv-what-is-this {
  cursor: help;
  margin-left: 5px;
}
/* Tooltip */
.tool-tip {
  border: 1px solid #ddd;
  background-color: #f6f6f6;
  padding: 5px;
  position: absolute;
  z-index: 9999;
}
.tool-tip .btn-close {
  text-align: right;
}
.tool-tip .btn-close a {
  display: block;
  margin: 0 0 0 auto;
  width: 15px;
  height: 15px;
  background: url(../images/btn_window_close.gif) 100% 0 no-repeat;
  text-align: left;
  text-indent: -999em;
  overflow: hidden;
}
.tool-tip .tool-tip-content {
  padding: 5px;
}
/* Gift Messages */
.gift-messages-form {
  border: 1px solid #ddd;
  background-color: #f5f5f5;
}
.gift-messages-form {
  position: relative;
}
.gift-messages-form label {
  float: none !important;
  position: static !important;
}
.gift-messages-form .item {
  margin: 0 0 10px;
}
.gift-messages-form .item .product-img-box {
  float: left;
  width: 75px;
}
.gift-messages-form .item .product-image {
  margin: 0 0 7px;
}
.gift-messages-form .item .number {
  margin: 0;
  font-weight: bold;
  text-align: center;
}
.gift-messages-form .item .details {
  margin-left: 90px;
}
.gift-message-link {
  display: block;
  background: url(../images/bkg_collapse.gif) 0 4px no-repeat;
  padding-left: 20px;
}
.gift-message-link.expanded {
  background-position: 0 -53px;
}
.gift-message-row .btn-close {
  float: right;
}
.gift-message dt strong {
  font-weight: bold;
}
/* Checkout Agreements */
.checkout-agreements li {
  margin: 10px 0;
}
.checkout-agreements .agreement-content {
  border: 1px solid #ddd;
  background-color: #f6f6f6;
  padding: 5px;
  height: 10em;
  overflow: auto;
}
.checkout-agreements .agree {
  padding: 6px;
}
/* Centinel */
.centinel .authentication {
  border: 1px solid #ddd;
  background: #fff;
}
.centinel .authentication iframe {
  width: 99%;
  height: 400px;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
/* Generic Info Set */
/********** Common Checkout Styles > */
/* One Page Checkout */
.block-progress dt {
  font-weight: bold;
}
.block-progress dt.complete,
.block-progress dd.complete {
  background-color: #f6f6f6;
}
.opc.not-logged #opc-login .step-title span.number {
  margin: 0;
  border-left: none !important;
  width: 69px;
  float: left;
}
.opc.not-logged #opc-login .step-title h2 {
  float: left;
  clear: both;
  margin-left: -25px;
}
.opc.not-logged #opc-billing .step-title span.number {
  margin: 0;
  width: 79px;
  float: left;
  margin-left: 40px;
}
.opc.not-logged #opc-billing .step-title h2 {
  float: left;
  clear: both;
  margin-left: 20px;
}
.opc.not-logged #opc-payment .step-title span.number {
  margin: 0;
  width: 79px;
  float: left;
  margin-left: 90px;
}
.opc.not-logged #opc-payment .step-title h2 {
  float: left;
  clear: both;
  margin-left: 60px;
}
.opc.not-logged #opc-review .step-title span.number {
  margin: 0;
  border-right: none !important;
  width: 69px;
  float: right;
}
.opc.not-logged #opc-review .step-title h2 {
  float: right;
  clear: both;
  margin-right: -10px;
}
.opc.logged div.step {
  margin-top: 25px;
}
.opc.logged #opc-billing .step-title span.number {
  margin: 0;
  border-left: none !important;
  width: 69px;
  float: left;
}
.opc.logged #opc-billing .step-title h2 {
  float: left;
  clear: both;
  margin-left: -25px;
}
.opc.logged #opc-payment {
  /* .step-title {
       span.number {
         margin: 0;
         width: 79px;
         float: left;
         margin-left: 40px;
       }
       h2 {
         float: left;
         clear: both;
         margin-left: 20px;
       }
     }*/
}
.opc.logged #opc-review .step-title span.number {
  margin: 0;
  border-right: none !important;
  width: 69px;
  float: right;
}
.opc.logged #opc-review .step-title h2 {
  float: right;
  clear: both;
  margin-right: -10px;
}
.opc {
  min-height: 810px;
  width: 840px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-top: 25px;
}
.opc span.please-wait {
  display: block;
  margin: 0 auto;
  float: none;
  width: 40px;
  margin-top: 20px;
}
.opc button:active,
.opc button:focus {
  -moz-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
  -webkit-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
}
.opc li.section.logged {
  width: 33.33% !important;
}
.opc li.section:first-child {
  background-position: 50% 40%;
}
.opc li.section {
  float: left;
  width: 25%;
  background: url("../images/theme/line.png") 0 40% repeat-x;
}
.opc li.section .step-title {
  cursor: pointer;
}
.opc li.section .step-title span.number {
  color: #dcdcdc;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 30px;
  background: url("../images/theme/opc-hex.png");
  width: 79px;
  border-left: 10px solid white;
  border-right: 10px solid white;
  height: 69px;
  display: block;
  padding-top: 15px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.opc li.section .step-title h2 {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-weight: normal;
  font-size: 14px;
  display: table;
  margin: 0 auto;
}
.opc li.section #checkout-step-login .col2-set {
  padding-top: 20px;
}
.opc li.section #checkout-step-login .col2-set .col-1 {
  height: 225px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* stroke */
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  -moz-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  -webkit-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  border-bottom: none;
}
.opc li.section #checkout-step-login .col2-set .col-1 h3 {
  display: none;
}
.opc li.section #checkout-step-login .col2-set .col-1 p {
  font-family: "Roboto Regular";
  font-size: 14px;
  color: #666;
  text-align: center;
  margin: 20px 0;
}
.opc li.section #checkout-step-login .col2-set .col-1 ul {
  font-family: "Roboto Regular";
  font-size: 14px;
  color: #666;
  text-align: center;
}
.opc li.section #checkout-step-login .col2-set .col-2 {
  height: 225px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* stroke */
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  -moz-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  -webkit-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  border-bottom: none;
}
.opc li.section #checkout-step-login .col2-set .col-2 h3 {
  display: none;
}
.opc li.section #checkout-step-login .col2-set .col-2 form fieldset {
  border: none;
  padding: 20px 17px;
}
.opc li.section #checkout-step-login .col2-set .col-2 form fieldset h4 {
  text-align: center;
}
.opc li.section #checkout-step-login .col2-set .col-2 form fieldset p {
  text-align: center;
}
.opc li.section #checkout-step-login .col2-set .col-2 form fieldset ul li label.required {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  font-weight: normal !important;
}
.opc li.section #checkout-step-login .col2-set .col-2 form fieldset ul li .input-box {
  width: 100%;
}
.opc li.section #checkout-step-login .col2-set .col-2 form fieldset ul li .input-box input {
  width: 100%;
}
.opc li.section #checkout-step-login .col2-set.bottom {
  padding: 0;
}
.opc li.section #checkout-step-login .col2-set.bottom .col-1-bottom {
  width: 49%;
  float: left;
  height: 60px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* stroke */
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  -moz-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  -webkit-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  border-top: none;
}
.opc li.section #checkout-step-login .col2-set.bottom .col-1-bottom .buttons-set p.required {
  display: none;
}
.opc li.section #checkout-step-login .col2-set.bottom .col-1-bottom .buttons-set button {
  display: block;
  float: none;
  margin: 0 auto;
  -moz-border-radius: 4px / 3px;
  -webkit-border-radius: 4px / 3px;
  border-radius: 4px / 3px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #1368a1;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
}
.opc li.section #checkout-step-login .col2-set.bottom .col-1-bottom .buttons-set button span {
  padding: 5px 30px;
}
.opc li.section #checkout-step-login .col2-set.bottom .col-2-bottom {
  width: 49%;
  height: 60px;
  float: right;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* stroke */
  -webkit-border-bottom-right-radius: 2px;
  -webkit-border-bottom-left-radius: 2px;
  -moz-border-radius-bottomright: 2px;
  -moz-border-radius-bottomleft: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  -moz-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  -webkit-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  border-top: none;
}
.opc li.section #checkout-step-login .col2-set.bottom .col-2-bottom .buttons-set p.required {
  display: none;
}
.opc li.section #checkout-step-login .col2-set.bottom .col-2-bottom .buttons-set button {
  display: block;
  float: none;
  margin: 0 auto;
  -moz-border-radius: 4px / 3px;
  -webkit-border-radius: 4px / 3px;
  border-radius: 4px / 3px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #1368a1;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
}
.opc li.section #checkout-step-login .col2-set.bottom .col-2-bottom .buttons-set button span {
  padding: 5px 30px;
}
.opc li.section #checkout-step-login .col2-set.bottom .col-2-bottom .buttons-set a.forgot {
  text-align: center;
  display: block;
}
.opc li.section #checkout-step-billing {
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* stroke */
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  -moz-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  -webkit-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  padding: 15px 20px;
}
.opc li.section #checkout-step-billing fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.opc li.section #checkout-step-billing fieldset .jq-selectbox-wrapper .jq-selectbox__dropdown ul {
  max-height: 350px !important;
  overflow-y: auto !important;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li.control label {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  font-weight: normal;
  padding-left: 5px;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li.wide label {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  font-weight: normal;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li.wide .input-box {
  width: 100%;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li.wide .input-box input.input-text {
  width: 100% !important;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li.wide .input-box .jq-selectbox {
  width: 100% !important;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.field.f-1 {
  float: left;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.field.f-2 {
  float: right;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.field.f-2.custom input.input-text {
  margin-top: 0px;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.field.f-2.custom .jq-selectbox-wrapper {
  margin-bottom: 10px;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.field {
  width: 49%;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.field label {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  font-weight: normal;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.field .input-box {
  width: 100%;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.field .input-box input.input-text {
  width: 100% !important;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.field .input-box .jq-selectbox {
  width: 100% !important;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.customer-name {
  width: 100%;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.customer-name label {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  font-weight: normal;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.customer-name div.input-box {
  width: 100%;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.customer-name div.input-box input.input-text {
  width: 100%;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.customer-name div.field {
  width: 49%;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.customer-name div.field label {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  font-weight: normal;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.customer-name div.name-firstname {
  float: left;
}
.opc li.section #checkout-step-billing fieldset ul.form-list li#billing-new-address-form li.fields div.customer-name div.name-lastname {
  float: right;
}
.opc li.section #checkout-step-billing fieldset .buttons-set {
  float: left;
  width: 800px;
  margin-top: 10px;
}
.opc li.section #checkout-step-billing fieldset .buttons-set p.required {
  display: none;
}
.opc li.section #checkout-step-billing fieldset .buttons-set button.button {
  display: block;
  margin: 0 auto;
  width: 132px;
  height: 39px;
  -moz-border-radius: 4px / 3px;
  -webkit-border-radius: 4px / 3px;
  border-radius: 4px / 3px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #1368a1;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  text-align: center;
  float: none;
}
.opc li.section #checkout-step-billing fieldset .buttons-set button.button span {
  padding: 0 0 0 35px !important;
}
.opc li.section #checkout-step-billing fieldset .buttons-set button.button span span {
  padding: 0 !important;
}
.opc li.section.active .step-title span.number {
  color: #fff;
  background: url("../images/theme/opc-hex-active.png");
}
.opc li.section.active div.step {
  width: 840px;
  position: absolute;
  left: 165px;
}
.opc #opc-payment div.step {
  width: 840px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* stroke */
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  /* border radius */
  background: url("../images/theme/paypal-biglogo.png") no-repeat right top;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  -moz-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  -webkit-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
}
.opc #opc-payment div.step fieldset {
  border: none;
  margin: 0;
}
.opc #opc-payment div.step fieldset .sp-methods dt {
  margin-bottom: 8px;
}
.opc #opc-payment div.step fieldset .sp-methods .jq-checkbox {
  width: 18px;
}
.opc #opc-payment div.step fieldset .sp-methods label[for=use_points] {
  line-height: 1;
}
.opc #opc-payment div.step fieldset .sp-methods #points_amount {
  width: 48px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* stroke */
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  -moz-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  -webkit-box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  box-shadow: inset 1px 2px 0 rgba(255, 255, 255, 0.75);
  /* inner shadow */
  padding: 1px;
}
.opc #opc-payment div.step fieldset .sp-methods label[for=p_method_paypal_standard] img {
  display: none;
}
.opc #opc-payment div.step fieldset .sp-methods label[for=p_method_paypal_standard] a {
  font-weight: normal;
  font-family: "Roboto Regular";
}
.opc #opc-payment div.step #payment-buttons-container {
  padding: 0 10px;
}
.opc #opc-payment div.step #payment-buttons-container p.required {
  display: none;
}
.opc #opc-payment div.step #payment-buttons-container p.back-link {
  display: none;
}
.opc #opc-payment div.step #payment-buttons-container button.button {
  width: 132px;
  height: 39px;
  -moz-border-radius: 4px / 3px;
  -webkit-border-radius: 4px / 3px;
  border-radius: 4px / 3px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #1368a1;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  float: none;
  margin: 0 auto;
  display: block;
  margin-bottom: 10px;
}
.opc #opc-payment div.step #payment-buttons-container button.button span {
  padding: 0 35px;
}
.opc #opc-payment div.step #payment-buttons-container button.button span span {
  padding: 0;
}
.opc #checkout-step-review #checkout-review-table thead tr {
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* stroke */
}
.opc #checkout-step-review #checkout-review-table thead tr th {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  font-weight: normal;
  border: none;
}
.opc #checkout-step-review #checkout-review-table tbody {
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* stroke */
}
.opc #checkout-step-review #checkout-review-table tbody tr {
  border: none;
  /* stroke */
  background: none !important;
}
.opc #checkout-step-review #checkout-review-table tbody tr td {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  font-weight: bold;
  border: none;
}
.opc #checkout-step-review #checkout-review-table tbody tr td h3 {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  font-weight: bold;
  border: none;
}
.opc #checkout-step-review #checkout-review-table tbody tr td dl dd {
  font-weight: normal;
}
.opc #checkout-step-review #checkout-review-submit {
  margin-top: 10px;
}
.opc #checkout-step-review #checkout-review-submit span.subtotals {
  float: right;
  clear: both;
  white-space: nowrap;
}
.opc #checkout-step-review #checkout-review-submit span.grandtotal {
  float: right;
  clear: both;
  font-size: 24px;
}
.opc #checkout-step-review #checkout-review-submit .buttons-set {
  clear: both;
}
.opc #checkout-step-review #checkout-review-submit .buttons-set button.button {
  margin: 0 auto;
  display: block;
  float: none;
  width: 195px;
  height: 50px;
  -moz-border-radius: 4px / 3px;
  -webkit-border-radius: 4px / 3px;
  border-radius: 4px / 3px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #f06322;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  text-align: center;
  margin-top: 10px;
}
.opc #checkout-step-review #checkout-review-submit .buttons-set button.button span {
  padding: 0 50px;
  font-size: 18px;
}
.opc #checkout-step-review #checkout-review-submit .buttons-set button.button span span {
  padding: 0;
}
.opc #checkout-step-review #checkout-review-submit .buttons-set p.f-left {
  text-align: center;
  display: block;
  margin: 0 auto;
  float: none !important;
}
/* Multiple Addresses Checkout */
.checkout-progress {
  padding: 0 50px;
  margin: 10px 0;
}
.checkout-progress li {
  float: left;
  width: 20%;
  border-top: 5px solid #ccc;
  text-align: center;
  color: #ccc;
}
.checkout-progress li.active {
  border-top-color: #000;
  color: #000;
}
.multiple-checkout {
  position: relative;
}
.multiple-checkout .tool-tip {
  top: 50%;
  margin-top: -120px;
  right: 10px;
}
.multiple-checkout .grand-total {
  font-size: 1.5em;
  text-align: right;
}
/* ======================================================================================= */
/* Account Login/Create Pages ============================================================ */
.account-login {
  padding: 20px;
  background: #fff;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
}
.account-login .page-title {
  border: none;
  margin: 0;
  padding: 0;
}
.account-login .page-title h1 {
  color: #1469a2;
  margin-bottom: 15px !important;
}
.account-login .content {
  background: #EEEEEE;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 20px;
}
.account-login .buttons-set {
  background: #EEEEEE;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 20px;
}
.account-login h2 {
  margin-bottom: 15px;
  color: #f16423;
}
.account-login ul.form-list {
  margin-top: 15px;
}
.account-login ul.form-list label {
  color: #666666;
}
.account-create {
  padding: 20px;
  background: #fff;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
}
.account-create .page-title {
  border: none;
  margin: 0;
  padding: 0;
}
.account-create .page-title h1 {
  color: #1469a2;
}
/* Account Login/Create Pages ============================================================ */
/* Remember Me Popup ===================================================================== */
.window-overlay {
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 990;
}
/* Remember Me Popup ===================================================================== */
/* My Account ============================================================================= */
#aw_points-summary-box {
  background: #EEEEEE;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
  border: none;
  padding: 20px 15px;
  font-size: 14px;
}
.points-reward-index p.back-link {
  margin-top: 23px;
}
.points-reward-index p.back-link button.back {
  padding: 10px 25px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #1368a1;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  text-align: center;
}
.points-reward-index p.back-link button.back span {
  float: none;
  padding: 0;
}
#aw_points-summary-box p.box-title {
  font-weight: bold;
}
#aw_points-history-box .pager {
  margin: 10px 0;
}
#aw_points-history-box .pager .amount {
  margin-top: 5px;
}
#aw_points-history-box .pager .pages {
  float: none;
  display: inline-block;
  margin: 0 auto;
  margin-top: 5px;
  padding-left: 20%;
}
#aw_points-history-box h3 {
  font-family: "Roboto Regular";
  font-size: 18px;
  color: #666;
  margin-top: 15px;
}
#aw_points-history-box .history-box {
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
  overflow: hidden;
}
#aw_points-history-box .data-table {
  border-collapse: separate;
  border-spacing: 0;
}
#aw_points-history-box .data-table thead {
  background: #f26e32;
  border: 1px solid #f26e32;
}
#aw_points-history-box .data-table th {
  border: none;
  font-weight: normal;
  color: #ffffff;
}
.my-account .title-buttons .link-rss {
  float: none;
  margin: 0;
}
.my-account {
  padding: 15px 20px;
}
.my-account p.gray-head {
  background-color: #eee;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
  color: #1469a2;
  padding: 10px 15px;
}
.my-account .form-title {
  background: #EEEEEE;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  padding: 10px;
  color: #1469a2;
}
.my-account input.validate-email {
  width: 100% !important;
}
.my-account li.control .jq-checkbox {
  margin-bottom: 2px;
  margin-right: 5px;
}
.my-account .addresses-list h2 {
  font-size: 18px;
  color: #f26e32;
  font-weight: normal;
}
.my-account .addresses-list li.item h3 {
  height: 30px;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
  display: block;
  font-family: "Roboto Regular";
  padding: 7px 15px;
  font-size: 14px;
  color: #1469a2;
  background-color: #eee;
}
.my-account .addresses-list li.item address {
  padding-left: 10px;
  padding-top: 15px;
}
.my-account .addresses-list li.item p {
  padding-left: 10px;
  padding-bottom: 15px;
}
.my-account .order-history {
  border: 1px solid #eee;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.my-account .order-history .data-table th {
  border: none;
  font-weight: normal;
  background: #EEEEEE;
  color: #1469a2;
}
.my-account .order-history .data-table td {
  border: none;
}
.my-account .dashboard .box-reviews {
  margin-top: 15px;
}
.my-account .dashboard .box-reviews .box-head {
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #ededed;
  /* layer fill content */
}
.my-account .dashboard .box-reviews .box-head h2 {
  float: left;
  color: #1368a1;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
}
.my-account .dashboard .box-reviews .box-head a {
  float: right;
  color: #f06322;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
}
.my-account .dashboard .box-reviews ol {
  padding: 15px 10px;
}
.my-account .dashboard .box-reviews ol span.number {
  display: none;
}
.my-account .dashboard .box-reviews ol div.details {
  margin-left: 0;
}
.review-customer-index .my-account .pager {
  padding: 10px 0;
}
.review-customer-index .my-account .pager p.amount {
  padding-top: 5px;
}
.review-customer-index .my-account .pager .pages {
  padding-left: 15%;
  padding-top: 5px;
  float: left;
}
.my-account .page-title h1 {
  font-size: 2em;
  color: #f16423;
}
.my-account .page-title {
  border: none;
  margin: 0 0 15px;
  padding: 0;
}
.my-account p.title {
  background: #EEEEEE;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  padding: 10px;
  color: #1469a2;
}
.my-account .fieldset ul.form-list {
  padding: 15px 10px;
}
.my-account .fieldset ul.form-list .jq-selectbox__select-text {
  font-size: 16px;
}
.my-account .fieldset ul.form-list .jq-selectbox__select {
  color: #707070;
  padding: 4px 30px 0 3px;
}
.my-account .fieldset ul.form-list .phone,
.my-account .fieldset ul.form-list .city,
.my-account .fieldset ul.form-list .zip,
.my-account .fieldset ul.form-list .name-firstname {
  margin-right: 75px;
}
.my-account .fieldset ul.form-list .wide .input-box,
.my-account .fieldset ul.form-list .wide input {
  width: 100% !important;
}
.my-account .fieldset ul.form-list .input-box,
.my-account .fieldset ul.form-list .field,
.my-account .fieldset ul.form-list .field .jq-selectbox,
.my-account .fieldset ul.form-list .field input.input-text {
  width: 370px !important;
}
.my-account .fieldset ul.form-list label {
  font-weight: normal;
  color: #707070;
  font-size: 18px;
  padding-bottom: 10px;
}
/********** < Dashboard */
.dashboard .welcome-msg {
  color: #666666;
}
/* Block: Recent Orders */
.dashboard .box-recent {
  margin: 10px 0;
}
.dashboard .box-recent .box-head a {
  padding-top: 3px;
}
.dashboard .box-recent div.recent {
  border: 1px solid #EEEEEE;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.dashboard .box-recent .data-table td,
.dashboard .box-recent .data-table th {
  border: none;
}
.dashboard .box-recent .data-table th {
  font-weight: normal;
  color: #1469a2;
}
.dashboard .box-recent .data-table thead tr {
  background: #EEEEEE;
}
/* Block: Account Information */
.dashboard .box-info {
  margin-top: 25px;
}
.dashboard .box-account .box-head h2 {
  font-family: "Roboto Regular";
  font-size: 18px;
  color: #f16423;
  font-weight: normal;
}
.dashboard .box-account .box-head h2,
.dashboard .box-info .box-head h2 {
  color: #f16423;
}
.dashboard .box-info .box-title {
  background: #EEEEEE;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  padding: 10px;
}
.dashboard .box-info .box-title p {
  float: left;
  color: #1469a2;
}
.dashboard .box-info .box-title a {
  float: right;
}
.dashboard .box-info .box-content {
  padding: 15px 10px;
}
/* Block: Reviews */
.dashboard .box-reviews .number {
  float: left;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin: 3px -20px 0 0;
  padding: 2px 3px;
  background: #ddd;
}
.dashboard .box-reviews .details {
  margin-left: 20px;
}
/* Block: Tags */
.dashboard .box-tags .number {
  float: left;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin: 3px -20px 0 0;
  padding: 2px 3px;
  background: #ddd;
}
.dashboard .box-tags .details {
  margin-left: 20px;
}
/********** Dashboard > */
/* Address Book */
/* Order View */
.order-info {
  border: 1px solid #ddd;
  padding: 5px;
}
.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
  display: inline;
}
.order-info dt {
  font-weight: bold;
}
.order-date {
  margin: 10px 0;
}
.order-items {
  width: 100%;
  overflow-x: auto;
}
.order-items .buttons-set {
  margin-top: 20px;
}
.order-additional {
  margin: 15px 0;
}
/* Order Gift Message */
.gift-message dt strong {
  color: #666;
}
.gift-message dd {
  font-size: 13px;
  margin: 5px 0 0;
}
/* Order Comments */
.order-about dt {
  font-weight: bold;
}
.order-about dd {
  font-size: 13px;
  margin: 0 0 7px;
}
.tracking-table {
  margin: 0 0 15px;
}
.tracking-table th {
  font-weight: bold;
  white-space: nowrap;
}
.tracking-table-popup {
  width: 100%;
}
.tracking-table-popup th {
  font-weight: bold;
  white-space: nowrap;
}
.tracking-table-popup th,
.tracking-table-popup td {
  padding: 1px 8px;
}
/* Order Print Pages */
.page-print .print-head img {
  float: left;
}
.page-print .print-head address {
  float: left;
  margin-left: 15px;
}
/* Price Rewrites */
.page-print .gift-message-link {
  display: none;
}
.page-print .price-excl-tax,
.page-print .price-incl-tax {
  display: block;
  white-space: nowrap;
}
.page-print .cart-price,
.page-print .price-excl-tax .label,
.page-print .price-incl-tax .label,
.page-print .price-excl-tax .price,
.page-print .price-incl-tax .price {
  display: inline;
}
/* My Reviews */
.product-review .product-img-box {
  float: left;
  width: 140px;
}
.product-review .product-img-box .product-image {
  display: block;
  width: 125px;
  height: 125px;
}
.product-review .product-img-box .label {
  font-size: 11px;
  margin: 0 0 3px;
}
.product-review .product-details {
  margin-left: 150px;
}
.product-review .product-name {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}
.product-review .ratings-table {
  margin: 0 0 10px;
}
.product-review dt {
  font-weight: bold;
}
.product-review dd {
  font-size: 13px;
  margin: 5px 0 0;
}
/* ======================================================================================= */
/* Footer ================================================================================ */
.footer-container {
  margin-top: 40px;
}
.footer p {
  text-align: right;
}
.footer address {
  text-align: right;
}
.footer ul {
  float: left;
}
.footer ul.links {
  padding-left: 60px;
}
.footer ul li {
  display: list-item;
}
.footer ul li a {
  color: #2f79aa !important;
  font-size: 12px;
  text-decoration: none !important;
}
.footer ul li a:hover {
  text-decoration: underline !important;
}
.footer-container .bottom-container {
  text-align: center;
}
/* Blog Pro 2 styles */
aside.left {
  background: #eeeeee;
  padding: 15px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topleft: 5px;
  -moz-background-clip: padding;
  border-top-left-radius: 5px;
  background-clip: padding-box;
}
article.desktop.two-columns-left {
  background: #eee;
  float: left;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
article.desktop.two-columns-left .mpblog-post .mp-content {
  padding: 0;
}
section.content {
  padding: 0 !important;
  background: #fff;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-right-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius-topright: 5px;
  -moz-background-clip: padding;
  border-top-right-radius: 5px;
  background-clip: padding-box;
}
.mpblog-comments-container .mpblog-comments-livestream .mp-comment-form {
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
}
.mpblog-comments-container .mpblog-comments-livestream .mp-comment-form fieldset {
  margin: 10px 0 0 0;
  padding: 0;
}
.mpblog-comments-container .mpblog-comments-livestream .mp-comment-form fieldset textarea,
.mpblog-comments-container .mpblog-comments-livestream .mp-comment-form fieldset input.text {
  padding: 6px;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
}
.mpblog-comments-container .mpblog-comments-livestream .mp-comment-form fieldset .form-actions input[type="checkbox"]:checked + label::before {
  right: 0;
}
.mpblog-comments-container .mpblog-comments-livestream .mp-comment-form fieldset .form-actions label {
  padding-left: 5px;
}
.mpblog-list .mp-content {
  padding: 0;
}
.mpblog-list .mp-details a.button {
  overflow: visible;
  width: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  background: #1469a2 !important;
  -webkit-border-radius: 0;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 0;
  -moz-background-clip: padding;
  border-radius: 0;
  background-clip: padding-box;
  text-align: center;
  white-space: nowrap;
  color: #fff !important;
  font-size: 16px !important;
  font-family: "Segoe UI", Arial;
  padding: 10px 25px;
  text-decoration: none !important;
  float: left;
  -webkit-box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 -3px rgba(0, 0, 0, 0.5);
}
.mpblog-list .mp-details a.button:hover {
  background: #005f9e !important;
}
.mpblog-list .mp-details a.button:active,
.mpblog-list .mp-details a.button:focus {
  box-shadow: inset 0 3px rgba(0, 0, 0, 0.5);
}
a.blue.button-blue {
  background: #1469a2 !important;
  padding: 5px 25px;
  -webkit-border-radius: 4px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 4px;
  -moz-background-clip: padding;
  border-radius: 4px;
  background-clip: padding-box;
}
a.blue.button-blue:hover {
  background: #005f9e !important;
}
/* Clears ================================================================================ */
.clearer:after,
.header-container:after,
.header-container .top-container:after,
.header:after,
.header .quick-access:after,
#nav:after,
.main:after,
.footer:after,
.footer-container .bottom-container:after,
.col-main:after,
.col2-set:after,
.col3-set:after,
.col4-set:after,
.search-autocomplete li:after,
.block .block-content:after,
.block .actions:after,
.block li.item:after,
.block-poll li:after,
.block-layered-nav .currently li:after,
.page-title:after,
.products-grid:after,
.products-list li.item:after,
.box-account .box-head:after,
.dashboard .box .box-title:after,
.box-reviews li.item:after,
.box-tags li.item:after,
.pager:after,
.sorter:after,
.ratings:after,
.add-to-box:after,
.add-to-cart:after,
.product-essential:after,
.product-collateral:after,
.product-view .product-img-box .more-views ul:after,
.product-view .product-shop .short-description:after,
.product-view .box-description:after,
.product-view .box-tags .form-add:after,
.product-options .options-list li:after,
.product-options-bottom:after,
.product-review:after,
.cart:after,
.cart-collaterals:after,
.cart .crosssell li.item:after,
.opc .step-title:after,
.checkout-progress:after,
.multiple-checkout .place-order:after,
.group-select li:after,
.form-list li:after,
.form-list .field:after,
.buttons-set:after,
.page-print .print-head:after,
.advanced-search-summary:after,
.gift-messages-form .item:after,
.send-friend .form-list li p:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden;
}
/* ======================================================================================= */
.mp-prev {
  display: inline-block;
  background: #000000;
  width: 10px;
  height: 10px;
}
.mpblog-container {
  padding: 15px;
}
#acp-overlay {
  background: url("../images/theme/hider.png") !important;
  z-index: 4502 !important;
}
#acp-product-options {
  z-index: 4503 !important;
}
#acp-overlay2 {
  background: -moz-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 2%, rgba(0, 0, 0, 0.98) 98%, #000000 100%);
  /* FF3.6+ */
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(2%, rgba(0, 0, 0, 0.02)), color-stop(98%, rgba(0, 0, 0, 0.98)), color-stop(100%, #000000));
  /* Chrome,Safari4+ */
  background: -webkit-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 2%, rgba(0, 0, 0, 0.98) 98%, #000000 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 2%, rgba(0, 0, 0, 0.98) 98%, #000000 100%);
  /* Opera 12+ */
  background: -ms-radial-gradient(center, ellipse cover, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 2%, rgba(0, 0, 0, 0.98) 98%, #000000 100%);
  /* IE10+ */
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 2%, rgba(0, 0, 0, 0.98) 98%, #000000 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}
.ajaxcartpro-box-show {
  padding: 15px !important;
}
.ajaxcartpro-box-show .ajaxcartpro-box-show {
  padding: 0 !Important;
}
.ajaxcartpro-box-show .product-options {
  padding: 0 !important;
}
.ajaxcartpro-box-show .product-options .option dl {
  padding: 0 !important;
}
.ajaxcartpro-box-show .product-options .option dl dt label {
  color: #696969;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
}
.ajaxcartpro-box-show .product-options .option dl dd .jq-selectbox-wrapper .jq-selectbox .jq-selectbox__select {
  padding: 2px 30px 0 3px;
}
.ajaxcartpro-box-show .product-options .option dl dd .jq-selectbox-wrapper .jq-selectbox .jq-selectbox__select .jq-selectbox__select-text {
  color: #1368a1;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 16px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
  /* drop shadow */
}
.ajaxcartpro-box-show .product-options .product-name {
  color: #1368a1;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 20px;
  text-align: left;
}
.ajaxcartpro-box-show .product-options .price-box {
  float: left;
}
.ajaxcartpro-box-show .product-options .price-box .regular-price .price {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 30px !important;
}
.ajaxcartpro-box-show .product-options label[for=qty] {
  float: left;
  padding-top: 5px;
  padding-left: 40px;
  padding-right: 5px;
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px !important;
}
.ajaxcartpro-box-show .product-options input.qty {
  float: left;
}
.ajaxcartpro-box-show .aw-acp-btn-container {
  clear: both;
  padding-left: 0 !important;
}
.ajaxcartpro-box-show .aw-acp-continue {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #dcdcdc;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  color: #1369a1 !important;
  /* text color */
  font-family: "Segoe UI", "Roboto Regular" !important;
  font-size: 18px !important;
  text-decoration: none !important;
  padding: 5px 20px 10px;
  height: 40px !important;
  display: inline-block;
  margin-top: 10px;
  float: left;
  width: 142px;
}
.ajaxcartpro-box-show .aw-acp-continue:hover {
  background-color: #ededed;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
}
.ajaxcartpro-box-show .aw-acp-continue:focus {
  background-color: #dcdcdc;
  /* layer fill content */
  -moz-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
}
.ajaxcartpro-box-show .aw-acp-checkout {
  width: 142px;
  float: right;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #f16423;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  color: #fff !important;
  /* text color */
  font-family: "Segoe UI", "Roboto Regular" !important;
  font-size: 18px !important;
  text-decoration: none !important;
  padding: 5px 20px 10px;
  height: 40px !important;
  display: inline-block;
  margin-top: 10px;
}
.ajaxcartpro-box-show .aw-acp-checkout:hover {
  background-color: #e6510f;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
}
.ajaxcartpro-box-show .aw-acp-checkout:focus {
  background-color: #f16423;
  /* layer fill content */
  -moz-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
}
#ajaxcartpro-add-confirm p.product-name {
  color: #1368a1;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 20px;
  text-align: left;
  float: left;
}
#ajaxcartpro-add-confirm p.text {
  color: #696969;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  text-align: left;
  float: left;
  clear: both;
  padding-bottom: 10px;
}
#ajaxcartpro-add-confirm img {
  float: left;
  clear: both;
}
#ajaxcartpro-add-confirm .actions {
  float: left;
}
#ajaxcartpro-add-confirm .aw-acp-checkout,
#ajaxcartpro-add-confirm .aw-acp-continue {
  width: 218px;
  float: left;
  clear: both;
}
#ajaxcartpro-add-confirm .aw-acp-continue:hover {
  cursor: pointer;
}
a.aw-acp-continue:focus,
a.aw-acp-continue:active,
button.aw-acp-continue:focus,
button.aw-acp-continue:active {
  background-color: #dcdcdc !important;
  /* layer fill content */
  -moz-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
  -webkit-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
}
a.aw-acp-checkout:focus,
a.aw-acp-checkout:active,
button.aw-acp-checkout:focus,
button.aw-acp-checkout:active {
  -moz-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
  -webkit-box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
  box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.5) !important;
  /* inner shadow */
}
.seven-reasons {
  background: #eeeeee;
  overflow: hidden;
}
.seven-reasons h3 {
  float: left;
  display: inline-block;
  width: 96%;
  padding: 0 !important;
  margin: 8px 20px !important;
}
.seven-reasons h3 span.icon-reasons {
  background: url("../images/theme/icon-reasons.png") no-repeat;
  width: 30px;
  height: 30px;
  display: inline-block;
  float: left;
  margin-top: 5px;
}
.seven-reasons h3 span.title {
  margin-top: 5px;
  margin-left: 5px;
  float: left;
  color: #1368a1;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 24px;
}
.seven-reasons h3 span.arrow-down {
  background: url("../images/theme/arrow-down.png");
  width: 40px;
  height: 45px;
  display: inline-block;
  float: right;
  -moz-transform: rotate(0deg);
  /* Для Firefox */
  -ms-transform: rotate(0deg);
  /* Для IE */
  -webkit-transform: rotate(0deg);
  /* Для Safari, Chrome, iOS */
  -o-transform: rotate(0deg);
  /* Для Opera */
  transform: rotate(0deg);
  -webkit-transition: transform 0.2s ease-out 0.2s;
  -moz-transition: transform 0.2s ease-out 0.2s;
  -o-transition: transform 0.2s ease-out 0.2s;
  transition: transform 0.2s ease-out 0.2s;
}
.seven-reasons h3.ui-state-active span.arrow-down {
  -moz-transform: rotate(180deg);
  /* Для Firefox */
  -ms-transform: rotate(180deg);
  /* Для IE */
  -webkit-transform: rotate(180deg);
  /* Для Safari, Chrome, iOS */
  -o-transform: rotate(180deg);
  /* Для Opera */
  transform: rotate(180deg);
  bottom: -950px;
  position: absolute;
  right: 0;
  z-index: 1;
}
.seven-reasons .hex-content {
  padding: 0 !important;
  overflow: visible !important;
}
.seven-reasons .hex-content .hexagons {
  background: url("../images/theme/hexagons.png") no-repeat;
  height: 858px;
  width: 891px;
  display: block;
  margin: 45px auto;
}
.seven-reasons .hex-content .hexagons .top {
  width: 891px;
  float: left;
  height: 262px;
}
.seven-reasons .hex-content .hexagons .top .empty {
  width: 152px;
  min-height: 200px;
  display: inline-block;
  float: left;
}
.seven-reasons .hex-content .hexagons .top .hex1 {
  width: 287px;
  height: 262px;
  float: left;
  display: inline-block;
}
.seven-reasons .hex-content .hexagons .top .hex1 span {
  color: #fff;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
  float: left;
  padding: 100px 15px 0;
  text-align: center;
}
.seven-reasons .hex-content .hexagons .top .hex2 {
  width: 289px;
  margin-left: 12px;
  height: 262px;
  float: left;
  display: inline-block;
}
.seven-reasons .hex-content .hexagons .top .hex2 span {
  color: #fff;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
  float: left;
  padding: 100px 15px 0;
  text-align: center;
}
.seven-reasons .hex-content .hexagons .middle {
  width: 891px;
  float: left;
}
.seven-reasons .hex-content .hexagons .middle .hex3 {
  width: 289px;
  height: 262px;
  float: left;
  display: inline-block;
}
.seven-reasons .hex-content .hexagons .middle .hex3 span {
  color: #fff;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
  float: left;
  padding: 115px 15px 0;
  text-align: center;
}
.seven-reasons .hex-content .hexagons .middle .hex4 {
  width: 289px;
  height: 262px;
  float: left;
  display: inline-block;
  margin-left: 12px;
}
.seven-reasons .hex-content .hexagons .middle .hex4 span {
  color: #666666;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
  float: left;
  padding: 115px 15px 0;
  text-align: center;
}
.seven-reasons .hex-content .hexagons .middle .hex5 {
  width: 289px;
  height: 262px;
  float: left;
  margin-left: 12px;
  display: inline-block;
}
.seven-reasons .hex-content .hexagons .middle .hex5 span {
  color: #fff;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
  float: left;
  padding: 115px 15px 0;
  text-align: center;
}
.seven-reasons .hex-content .hexagons .bottom {
  width: 891px;
  float: left;
  height: 262px;
}
.seven-reasons .hex-content .hexagons .bottom .empty {
  width: 152px;
  min-height: 200px;
  display: inline-block;
  float: left;
}
.seven-reasons .hex-content .hexagons .bottom .hex6 {
  width: 287px;
  height: 262px;
  float: left;
  display: inline-block;
}
.seven-reasons .hex-content .hexagons .bottom .hex6 span {
  color: #fff;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
  float: left;
  padding: 100px 15px 0;
  text-align: center;
}
.seven-reasons .hex-content .hexagons .bottom .hex7 {
  width: 289px;
  margin-left: 12px;
  height: 262px;
  float: left;
  display: inline-block;
}
.seven-reasons .hex-content .hexagons .bottom .hex7 span {
  color: #fff;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
  float: left;
  padding: 115px 15px 0;
  text-align: center;
}
.recent-posts {
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #fff;
  /* layer fill content */
}
.recent-posts .mpblog-container {
  padding: 24px;
}
.recent-posts .mpblog-container h1.mp-title {
  color: #f06322;
  /* text color */
  font-family: "Roboto Medium";
  margin-bottom: 20px !important;
  font-size: 24px;
}
.recent-posts .mpblog-container .mpblog-list .mpblog-post {
  border-bottom: 1px solid #dddddd;
}
.recent-posts .mpblog-container .mpblog-list .mpblog-post h2.mp-post-header {
  font-family: "Roboto Medium";
  font-size: 20px;
  border-bottom: none;
  padding-bottom: 0;
}
.recent-posts .mpblog-container .mpblog-list .mpblog-post h2.mp-post-header a {
  text-decoration: none !important;
  color: #1368a1 !important;
  /* text color */
}
.recent-posts .mpblog-container .mpblog-list .mpblog-post h2.mp-post-header a:hover {
  text-decoration: underline !important;
}
.recent-posts .mpblog-container .mpblog-list .mpblog-post i.glyphicons,
.recent-posts .mpblog-container .mpblog-list .mpblog-post i.glyphicons:before {
  color: #666666 !important;
}
.recent-posts .mpblog-container .mpblog-list .mpblog-post .mp-header span {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 12px;
}
.recent-posts .mpblog-container .mpblog-list .mpblog-post .mp-content {
  padding: 0;
}
img.shadow {
  margin: 0;
  background: none;
  height: auto;
  -webkit-border-radius: 5px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 5px;
  -moz-background-clip: padding;
  border-radius: 5px;
  background-clip: padding-box;
  box-shadow: 0 10px 21px -10px #333333;
  -moz-box-shadow: 0 10px 21px -10px #333333;
  -webkit-box-shadow: 0 10px 21px -10px #333333;
}
.cms-home .std {
  padding: 0;
}
.cms-home .col-main #message ul.messages {
  margin-bottom: 0 !important;
}
.mp-rht {
  margin-bottom: 0 !important;
}
.mp-rht p.special-price,
.mp-rht p.old-price {
  margin-bottom: 0;
}
.mp-rht ol.products-list {
  margin: 0;
  list-style: none !important;
  list-style-type: none !important;
}
.mp-rht ol.products-list li {
  list-style: none !important;
  list-style-type: none !important;
}
.mp-rht ul.mp-rht-tabs {
  background: #eeeeee !important;
  border: none !important;
  height: 60px !important;
  margin: 0;
}
.mp-rht ul.mp-rht-tabs li {
  background: none !important;
  border: none !important;
  height: 60px !important;
  list-style: none !important;
  list-style-type: none !important;
}
.mp-rht ul.mp-rht-tabs li a {
  color: #1368a1 !important;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 20px !important;
  text-decoration: none !important;
  background: none !important;
  padding: 22px 15px !important;
}
.mp-rht ul.mp-rht-tabs li a:hover {
  color: #ff0000 !important;
}
.mp-rht ul.mp-rht-tabs li.active a {
  color: #f16423 !important;
}
.mp-rht ul.mp-rht-tabs li.first {
  padding-left: 30px !important;
}
.mp-rht .mp-rht-padder {
  border: none !important;
}
.magento-partner {
  float: left;
  clear: both;
  width: 100%;
}
.vertnav-container {
  float: left;
}
.vertnav-container ul#vertnav {
  float: left;
  width: 260px;
}
.vertnav-container ul#vertnav li {
  float: left;
  display: block;
  width: 100%;
}
.vertnav-container ul#vertnav li span {
  float: left;
  background: none !important;
  border-bottom: none !important;
}
.vertnav-container ul#vertnav li span span.product-count {
  float: right;
  display: inline-block;
}
.vertnav-container ul#vertnav li span a {
  color: #656565 !important;
  /* text color */
  font-family: "Roboto Medium" !important;
  font-size: 16px !important;
  text-decoration: none !important;
  float: left;
  display: inline-block;
}
.vertnav-container ul#vertnav li span a span {
  float: left;
  display: inline-block;
}
.vertnav-container ul#vertnav li span a:hover {
  color: #f06322 !important;
  font-family: "Roboto Medium" !important;
}
.vertnav-container ul#vertnav li span:hover {
  color: #f06322 !important;
  cursor: pointer;
}
.vertnav-container ul#vertnav li span:hover a {
  color: #f06322 !important;
  font-family: "Roboto Medium" !important;
}
.vertnav-container ul#vertnav li ul {
  display: block;
  height: 100%;
}
.vertnav-container ul#vertnav li ul li.level1 span:hover {
  color: #f06322 !important;
  cursor: pointer;
}
.vertnav-container ul#vertnav li ul li.level1 span:hover a {
  color: #f06322 !important;
}
.vertnav-container ul#vertnav li ul li.level1 a {
  font-family: "Roboto Regular" !important;
  color: #656565 !important;
  font-size: 16px;
}
.vertnav-container ul#vertnav li ul li.level1 a span {
  font-family: "Roboto Regular" !important;
}
.vertnav-container ul#vertnav li ul li.level1 a:hover {
  color: #f06322 !important;
  font-family: "Roboto Medium" !important;
}
.vertnav-container ul#vertnav li ul li.level1-active a {
  font-family: "Roboto Regular" !important;
  color: #1368a1 !important;
  font-size: 16px;
}
.vertnav-container ul#vertnav li ul li.level1-active a span {
  font-family: "Roboto Regular" !important;
}
.vertnav-container ul#vertnav li.level0-parent a,
.vertnav-container ul#vertnav li.active a {
  color: #1368a1 !important;
}
.vertnav-container ul#vertnav li.active span {
  font-weight: normal;
}
#vertnav li .vertnav-cat {
  width: 100% !important;
}
.block-subscribe {
  float: left;
  clear: both;
  width: 100%;
}
.home-slider {
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.home-slider object {
  float: left;
}
.home-slider .mp_activecontent {
  margin: 0;
  float: left;
}
.home-slider .mp_activecontent .bx-wrapper .bx-viewport {
  left: 0;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  border: none;
}
.home-slider .mp_activecontent .bx-wrapper .bx-controls .bx-pager {
  bottom: 45px !important;
}
.home-slider .mp_activecontent .bx-wrapper .bx-controls .bx-pager .bx-pager-item a {
  background: url("../images/theme/bullets.png");
  width: 20px;
  height: 20px;
  background-position: 0 100%;
}
.home-slider .mp_activecontent .bx-wrapper .bx-controls .bx-pager .bx-pager-item a.active {
  background-position: 0 0 !important;
}
.home-slider .mp_activecontent iframe {
  border: none !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}
.nav-container ul#nav {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: #eeeeee;
  height: 60px;
}
.nav-container ul#nav li.level0 {
  height: 60px;
}
.nav-container ul#nav li.level0 a {
  text-decoration: none !important;
  color: #f06322 !important;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 24px;
  padding: 15px 0 14px 25px;
  text-transform: uppercase;
}
.nav-container ul#nav li.level0.over a.over {
  color: #f00 !important;
}
.nav-container ul#nav li.level0.over div.level0.shown-sub {
  float: left;
  padding-bottom: 20px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.nav-container ul#nav li.level0.over div.level0.shown-sub div.level1.active a {
  color: #1368a1 !important;
}
.nav-container ul#nav li.level0.over div.level0.shown-sub div.level1 {
  top: 0;
  left: 0;
  float: left;
  clear: both;
  display: block;
  position: relative;
  width: 100%;
  line-height: 1.5;
}
.nav-container ul#nav li.level0.over div.level0.shown-sub div.level1 a {
  padding-left: 20px;
  display: block;
  padding: 0 25px;
  text-transform: none;
  font-size: 16px;
  font-family: "Roboto Regular";
  color: #656565 !important;
  width: 100%;
}
.nav-container ul#nav li.level0.over div.level0.shown-sub div.level1 a span.category {
  float: left;
}
.nav-container ul#nav li.level0.over div.level0.shown-sub div.level1 a span.count {
  float: right;
}
.nav-container ul#nav li.level0.over div.level0.shown-sub div.level1 a:hover {
  color: #f06322 !important;
}
.nav-container ul#nav li.level0.active a {
  color: #1368a1 !important;
}
.block-subscribe .block-title {
  display: none;
}
.block-subscribe .block-content .ajaxnewsletter-input {
  padding-bottom: 8px;
}
.block-subscribe .block-content .actions div.loading {
  float: left;
  padding-top: 12px;
}
.contacts-index-index .col-main {
  padding: 20px 25px;
}
.contacts-index-index .col-main .page-title {
  border: none;
}
.contacts-index-index .col-main .page-title h1 {
  color: #f06322;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 24px;
}
.contacts-index-index .col-main .fieldset li.fields div.field.f-1 {
  float: left;
}
.contacts-index-index .col-main .fieldset li.fields div.field.f-2 {
  float: right;
}
.contacts-index-index .col-main .fieldset li.fields div.field.f-2.custom input.input-text {
  margin-top: 10px;
}
.contacts-index-index .col-main .fieldset li.fields div.field {
  width: 49%;
}
.contacts-index-index .col-main .fieldset li.fields div.field label {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  font-weight: normal;
}
.contacts-index-index .col-main .fieldset li.fields div.field .input-box {
  width: 100%;
}
.contacts-index-index .col-main .fieldset li.fields div.field .input-box input.input-text {
  width: 100% !important;
}
.contacts-index-index .col-main .fieldset li.fields div.field .input-box .jq-selectbox {
  width: 100% !important;
}
.contacts-index-index .col-main .fieldset li label {
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  font-weight: normal;
}
.contacts-index-index .col-main .fieldset li div.input-box {
  width: 49%;
}
.contacts-index-index .col-main .fieldset li div.input-box input {
  width: 100%;
}
.contacts-index-index .col-main .fieldset li.wide .input-box {
  width: 100%;
}
.contacts-index-index .col-main .fieldset li.wide .input-box textarea {
  width: 100%;
}
.contacts-index-index .col-main .fieldset li.wide .subscription {
  margin-top: 10px;
}
.contacts-index-index .col-main .fieldset li.wide .subscription .checkbox .jq-checkbox {
  top: 0;
  margin-right: 5px;
}
.contacts-index-index .col-main .fieldset li.wide .subscription .checkbox .jq-checkbox,
.contacts-index-index .col-main .fieldset li.wide .subscription .checkbox .label {
  float: left;
}
.contacts-index-index .col-main .buttons-set button.button {
  display: block;
  float: none !important;
  margin: 0 auto;
}
.contacts-index-index .col-left #search_mini_form {
  display: none;
}
.contacts-index-index .col-left .block-layered-nav.even {
  border-bottom: 1px solid #E2E2E2;
}
#ajaxcartpro-remove-confirm .aw-acp-checkout,
#ajaxcartpro-remove-confirm .aw-acp-continue {
  width: 100% !important;
}
#ajaxcartpro-remove-confirm .aw-acp-checkout:hover,
#ajaxcartpro-remove-confirm .aw-acp-continue:hover {
  cursor: pointer;
}
.catalogsearch-term-popular .col-main,
.catalog-seo-sitemap-product .col-main,
.catalog-seo-sitemap-category .col-main {
  -webkit-border-top-left-radius: 0 !important;
  -webkit-border-top-right-radius: 0 !important;
  -moz-border-radius-topleft: 0 !important;
  -moz-border-radius-topright: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  padding: 20px 25px;
}
.catalogsearch-term-popular .col-main .page-title,
.catalog-seo-sitemap-product .col-main .page-title,
.catalog-seo-sitemap-category .col-main .page-title {
  padding: 0;
}
.catalogsearch-term-popular .col-main .page-title h1,
.catalog-seo-sitemap-product .col-main .page-title h1,
.catalog-seo-sitemap-category .col-main .page-title h1 {
  color: #1469a2;
}
.catalogsearch-advanced-index .col-main {
  padding: 20px 25px;
}
.catalogsearch-advanced-index .col-main ul.form-list li label {
  font-weight: normal;
  color: #666666;
}
.catalogsearch-advanced-index .col-main ul.form-list li label[for=price] {
  padding-top: 6px;
  padding-right: 5px;
}
.catalogsearch-advanced-index .col-main ul.form-list li input {
  color: #666666;
}
.catalogsearch-advanced-index .col-main ul.form-list li .jq-select-multiple {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  width: 98% !important;
}
.catalogsearch-advanced-index .col-main .buttons-set button {
  float: left;
}
.rss-index-index .col-main {
  padding: 20px 25px;
}
.rss-index-index .col-main .rss-title h1 {
  background-position: 0 8px;
}
.catalogsearch-result-index .col-main .page-title {
  display: none;
}
.catalogsearch-result-index .block-layered-nav {
  display: none;
}
.my-wishlist {
  padding: 20px 25px;
}
.my-wishlist #bookmarks-table {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.my-wishlist #bookmarks-table thead {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.my-wishlist #bookmarks-table thead tr {
  border: 1px solid #EEEEEE;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.my-wishlist #bookmarks-table thead tr th {
  border: none !important;
  font-weight: normal;
}
.my-wishlist #bookmarks-table tbody tr {
  border: 1px solid #EEEEEE;
}
.my-wishlist #bookmarks-table tbody tr td {
  border: none !important;
  font-weight: normal;
}
.my-wishlist #bookmarks-table tbody tr td textarea {
  width: 100%;
}
.my-wishlist #bookmarks-table tbody tr td a span.glyphicon {
  color: #666666 !important;
}
.my-wishlist #bookmarks-table tbody tr td button.update-comment {
  background-color: #1368a1;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
}
.my-wishlist #bookmarks-table tbody tr td button.update-comment span {
  padding: 3px 17px 6px;
}
.my-wishlist #bookmarks-table tbody tr td button.update-comment span span {
  padding: 0;
}
.my-wishlist .buttons-set {
  margin-top: 20px;
}
.my-wishlist .buttons-set p.back-link a {
  display: inline-block;
  text-decoration: none !important;
  padding: 10px 45px;
  width: 142px;
  height: 43px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #1368a1;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  color: #fff !important;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 16px;
}
.awaffiliate-customer-affiliate-report .col-main,
.awaffiliate-customer-affiliate-campaign .col-main,
.awaffiliate-customer-affiliate-view .col-main {
  padding: 20px 25px;
}
.awaffiliate-customer-affiliate-report .col-main h2.title,
.awaffiliate-customer-affiliate-campaign .col-main h2.title,
.awaffiliate-customer-affiliate-view .col-main h2.title {
  height: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding-top: 5px;
  padding-left: 15px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #ededed;
  /* layer fill content */
  color: #1368a1;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
}
.awaffiliate-customer-affiliate-report .col-main #top-info-container .summary,
.awaffiliate-customer-affiliate-campaign .col-main #top-info-container .summary,
.awaffiliate-customer-affiliate-view .col-main #top-info-container .summary {
  float: left;
}
.awaffiliate-customer-affiliate-report .col-main #top-info-container .report,
.awaffiliate-customer-affiliate-campaign .col-main #top-info-container .report,
.awaffiliate-customer-affiliate-view .col-main #top-info-container .report {
  float: right;
}
.awaffiliate-customer-affiliate-report .col-main #top-info-container .fieldset,
.awaffiliate-customer-affiliate-campaign .col-main #top-info-container .fieldset,
.awaffiliate-customer-affiliate-view .col-main #top-info-container .fieldset {
  padding: 0;
  width: 49%;
}
.awaffiliate-customer-affiliate-report .col-main #top-info-container .fieldset ul,
.awaffiliate-customer-affiliate-campaign .col-main #top-info-container .fieldset ul,
.awaffiliate-customer-affiliate-view .col-main #top-info-container .fieldset ul {
  padding: 15px;
}
.awaffiliate-customer-affiliate-report .col-main #top-info-container .fieldset ul li span.title,
.awaffiliate-customer-affiliate-campaign .col-main #top-info-container .fieldset ul li span.title,
.awaffiliate-customer-affiliate-view .col-main #top-info-container .fieldset ul li span.title {
  font-weight: normal;
}
.awaffiliate-customer-affiliate-report .col-main #top-info-container .fieldset ul li span.value,
.awaffiliate-customer-affiliate-campaign .col-main #top-info-container .fieldset ul li span.value,
.awaffiliate-customer-affiliate-view .col-main #top-info-container .fieldset ul li span.value {
  float: right;
}
.awaffiliate-customer-affiliate-report .col-main .campaings,
.awaffiliate-customer-affiliate-campaign .col-main .campaings,
.awaffiliate-customer-affiliate-view .col-main .campaings {
  float: left;
  clear: both;
  width: 100%;
}
.awaffiliate-customer-affiliate-report .col-main .campaings table,
.awaffiliate-customer-affiliate-campaign .col-main .campaings table,
.awaffiliate-customer-affiliate-view .col-main .campaings table {
  margin: 15px;
  width: 96%;
}
.awaffiliate-customer-affiliate-report .col-main .campaings table thead tr,
.awaffiliate-customer-affiliate-campaign .col-main .campaings table thead tr,
.awaffiliate-customer-affiliate-view .col-main .campaings table thead tr {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid #ededed;
  padding: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #ededed;
  /* layer fill content */
}
.awaffiliate-customer-affiliate-report .col-main .campaings table thead tr th,
.awaffiliate-customer-affiliate-campaign .col-main .campaings table thead tr th,
.awaffiliate-customer-affiliate-view .col-main .campaings table thead tr th {
  padding: 5px;
}
.awaffiliate-customer-affiliate-report .col-main .campaings table tbody tr,
.awaffiliate-customer-affiliate-campaign .col-main .campaings table tbody tr,
.awaffiliate-customer-affiliate-view .col-main .campaings table tbody tr {
  border: 1px solid #ededed;
  padding: 5px;
}
.awaffiliate-customer-affiliate-report .col-main .campaings table tbody tr td,
.awaffiliate-customer-affiliate-campaign .col-main .campaings table tbody tr td,
.awaffiliate-customer-affiliate-view .col-main .campaings table tbody tr td {
  padding: 5px;
}
.awaffiliate-customer-affiliate-report .col-main .withdrawals,
.awaffiliate-customer-affiliate-campaign .col-main .withdrawals,
.awaffiliate-customer-affiliate-view .col-main .withdrawals {
  float: left;
  clear: both;
  width: 100%;
}
.awaffiliate-customer-affiliate-report .col-main .withdrawals .content,
.awaffiliate-customer-affiliate-campaign .col-main .withdrawals .content,
.awaffiliate-customer-affiliate-view .col-main .withdrawals .content {
  padding: 15px;
}
.awaffiliate-customer-affiliate-report .col-main .withdrawals .content .pager,
.awaffiliate-customer-affiliate-campaign .col-main .withdrawals .content .pager,
.awaffiliate-customer-affiliate-view .col-main .withdrawals .content .pager {
  margin-bottom: 10px;
}
.awaffiliate-customer-affiliate-report .col-main .withdrawals .content .pager p.amount,
.awaffiliate-customer-affiliate-campaign .col-main .withdrawals .content .pager p.amount,
.awaffiliate-customer-affiliate-view .col-main .withdrawals .content .pager p.amount {
  margin-top: 5px;
}
.awaffiliate-customer-affiliate-report .col-main .withdrawals .content .pager .limiter .jq-selectbox-wrapper .jq-selectbox,
.awaffiliate-customer-affiliate-campaign .col-main .withdrawals .content .pager .limiter .jq-selectbox-wrapper .jq-selectbox,
.awaffiliate-customer-affiliate-view .col-main .withdrawals .content .pager .limiter .jq-selectbox-wrapper .jq-selectbox {
  width: 60px !important;
}
.awaffiliate-customer-affiliate-report .col-main .withdrawals .content .data-table thead tr,
.awaffiliate-customer-affiliate-campaign .col-main .withdrawals .content .data-table thead tr,
.awaffiliate-customer-affiliate-view .col-main .withdrawals .content .data-table thead tr {
  border: 1px solid #ededed;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #ededed;
}
.awaffiliate-customer-affiliate-report .col-main .withdrawals .content .data-table thead tr th,
.awaffiliate-customer-affiliate-campaign .col-main .withdrawals .content .data-table thead tr th,
.awaffiliate-customer-affiliate-view .col-main .withdrawals .content .data-table thead tr th {
  border: none;
  font-weight: normal;
}
.awaffiliate-customer-affiliate-report .col-main .withdrawals .content .data-table tbody tr,
.awaffiliate-customer-affiliate-campaign .col-main .withdrawals .content .data-table tbody tr,
.awaffiliate-customer-affiliate-view .col-main .withdrawals .content .data-table tbody tr {
  border: 1px solid #ededed;
}
.awaffiliate-customer-affiliate-report .col-main .withdrawals .content .data-table tbody tr td,
.awaffiliate-customer-affiliate-campaign .col-main .withdrawals .content .data-table tbody tr td,
.awaffiliate-customer-affiliate-view .col-main .withdrawals .content .data-table tbody tr td {
  border: none;
  font-weight: normal;
}
.awaffiliate-customer-affiliate-report .col-main .generate-link .content,
.awaffiliate-customer-affiliate-campaign .col-main .generate-link .content,
.awaffiliate-customer-affiliate-view .col-main .generate-link .content {
  padding: 15px;
}
.awaffiliate-customer-affiliate-report .col-main .generate-link .content .row,
.awaffiliate-customer-affiliate-campaign .col-main .generate-link .content .row,
.awaffiliate-customer-affiliate-view .col-main .generate-link .content .row {
  font-style: italic;
}
.awaffiliate-customer-affiliate-report .col-main .generate-link .content .row label,
.awaffiliate-customer-affiliate-campaign .col-main .generate-link .content .row label,
.awaffiliate-customer-affiliate-view .col-main .generate-link .content .row label {
  font-style: normal;
}
.awaffiliate-customer-affiliate-report .col-main .generate-link .content .row textarea,
.awaffiliate-customer-affiliate-campaign .col-main .generate-link .content .row textarea,
.awaffiliate-customer-affiliate-view .col-main .generate-link .content .row textarea {
  width: 100%;
}
.awaffiliate-customer-affiliate-report .col-main .create .form-list,
.awaffiliate-customer-affiliate-campaign .col-main .create .form-list,
.awaffiliate-customer-affiliate-view .col-main .create .form-list {
  padding: 15px;
}
.awaffiliate-customer-affiliate-report .col-main .create .form-list .row-container,
.awaffiliate-customer-affiliate-campaign .col-main .create .form-list .row-container,
.awaffiliate-customer-affiliate-view .col-main .create .form-list .row-container {
  margin-bottom: 10px;
}
.awaffiliate-customer-affiliate-report .col-main .create .form-list .row-container label,
.awaffiliate-customer-affiliate-campaign .col-main .create .form-list .row-container label,
.awaffiliate-customer-affiliate-view .col-main .create .form-list .row-container label {
  font-weight: normal;
  color: #666666;
}
.awaffiliate-customer-affiliate-report .col-main .create .form-list .row-container .jq-selectbox,
.awaffiliate-customer-affiliate-campaign .col-main .create .form-list .row-container .jq-selectbox,
.awaffiliate-customer-affiliate-view .col-main .create .form-list .row-container .jq-selectbox {
  width: 130px !important;
}
.awaffiliate-customer-affiliate-report .button-set.bottom button.back,
.awaffiliate-customer-affiliate-campaign .button-set.bottom button.back,
.awaffiliate-customer-affiliate-view .button-set.bottom button.back {
  padding: 10px 25px;
  height: 43px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #1368a1;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  text-align: center;
}
.awaffiliate-customer-affiliate-report .button-set.bottom button.back span,
.awaffiliate-customer-affiliate-campaign .button-set.bottom button.back span,
.awaffiliate-customer-affiliate-view .button-set.bottom button.back span {
  float: none;
  padding: 0;
}
.awaffiliate-customer-affiliate-report .report {
  min-height: 250px;
  clear: both;
}
.awaffiliate-customer-affiliate-report .button-set.bottom {
  float: left;
  width: 50%;
}
.awaffiliate-customer-affiliate-report .button-set.create {
  float: right;
  width: 50%;
}
.awaffiliate-customer-affiliate-report #my-sales-table {
  margin-bottom: 15px;
}
#search_autocomplete ul li span.name {
  float: left;
}
#search_autocomplete ul li span.amount {
  float: right;
}
.container {
  width: 1170px !important;
}
.version-downloadable-free .col-main .buttons-set button.back,
.version-downloadable-list .col-main .buttons-set button.back {
  padding: 10px 25px;
  float: left;
  height: 43px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #1368a1;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  text-align: center;
}
.version-downloadable-free .col-main .buttons-set button.back span,
.version-downloadable-list .col-main .buttons-set button.back span {
  float: none;
  padding: 0;
}
#ajaxbookmarks_sidebar {
  float: left;
  clear: both;
  width: 100%;
}
#ajaxbookmarks_sidebar .block-bookmarks {
  border-top: 10px solid #ffffff;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
}
#ajaxbookmarks_sidebar a.glyphicon {
  color: #666666 !important;
  text-decoration: none !important;
  float: right;
  padding-top: 4px;
}
#ajaxbookmarks_sidebar .mini-products-list .product-details p.product-name a {
  text-decoration: none !important;
  /*color: #1469a2 !important;*/
  font-size: 16px;
}
#ajaxbookmarks_sidebar .mini-products-list .price-box p.special-price span.price {
  font-weight: normal;
  color: #1469a2;
}
#ajaxbookmarks_sidebar .mini-products-list .price-box p.old-price span.price {
  font-weight: normal;
}
.page-404 .cat {
  background: url("../images/theme/cat-404.png") no-repeat;
  display: block;
  float: left;
  margin-left: 100px;
  margin-top: 70px;
  margin-bottom: 70px;
  margin-right: 140px;
  width: 190px;
  height: 270px;
}
.page-404 .content {
  background: url("../images/theme/page-404.png") no-repeat;
  width: 640px;
  height: 283px;
  margin-top: 70px;
  float: left;
}
.page-404 .content .form-search {
  width: 484px;
  margin-top: 40px;
}
.page-404 .content .form-search input.input-text {
  width: 385px;
  height: 30px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #fff;
  /* layer fill content */
  border: none;
  float: left;
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 12px;
}
.page-404 .content .form-search button {
  float: right;
  width: 98px;
  height: 29px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  /* stroke */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #656565;
  /* layer fill content */
}
.page-404 .content .form-search button span {
  color: #ededed;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  text-transform: uppercase;
}
.page-404 .content h1 {
  color: #656565;
  /* text color */
  font-family: "Roboto Bold", "Roboto Regular";
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
  margin-top: 40px;
}
.page-404 .content p.text {
  color: #656565;
  /* text color */
  font-family: "Roboto Medium", "Roboto Regular";
  font-size: 30px;
  line-height: 1;
  margin: 0;
}
.page-404 .content p.contact-text {
  color: #656565;
  /* text color */
  font-family: "Roboto Medium", "Roboto Regular";
  font-size: 24px;
  line-height: 1;
  margin: 0;
  margin-top: 110px;
}
.page-404 .content p.contact-text a.mail {
  color: #1469a2 !important;
  text-decoration: none !important;
}
i.mpblog-classic.glyphicons,
i.mpblog-classic.glyphicons:before {
  color: #666666 !important;
}
.customer-account-resetpassword .col-main,
.customer-account-forgotpassword .col-main {
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 20px 25px;
}
.customer-account-resetpassword .col-main .page-title,
.customer-account-forgotpassword .col-main .page-title {
  text-align: center;
}
.customer-account-resetpassword .col-main .fieldset,
.customer-account-forgotpassword .col-main .fieldset {
  width: 50%;
  display: block;
  margin: 0 auto;
}
.customer-account-resetpassword .col-main .fieldset ul.form-list li label,
.customer-account-forgotpassword .col-main .fieldset ul.form-list li label {
  color: #666666 !Important;
  margin-top: 10px;
}
.customer-account-resetpassword .col-main .fieldset ul.form-list li div.input-box,
.customer-account-forgotpassword .col-main .fieldset ul.form-list li div.input-box {
  width: 100%;
}
.customer-account-resetpassword .col-main .fieldset ul.form-list li div.input-box input,
.customer-account-forgotpassword .col-main .fieldset ul.form-list li div.input-box input {
  width: 100%;
}
.customer-account-resetpassword .col-main .fieldset ul.form-list li .field,
.customer-account-forgotpassword .col-main .fieldset ul.form-list li .field {
  width: 100%;
  float: left;
}
.customer-account-resetpassword .col-main .buttons-set,
.customer-account-forgotpassword .col-main .buttons-set {
  width: 50%;
  display: block;
  margin: 0 auto 50px;
}
.customer-account-resetpassword .col-main .buttons-set p.back-link a,
.customer-account-forgotpassword .col-main .buttons-set p.back-link a {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #1368a1;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  display: block;
  color: #fff !important;
  text-decoration: none !important;
  font-family: "Segoe UI";
  font-size: 16px;
  padding: 10px 25px;
}
.customer-account-logoutsuccess .col-main {
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 20px 25px;
  min-height: 255px;
}
.customer-account-edit ul.form-list div.input-box input.input-text {
  width: 100%;
}
.messages {
  margin-bottom: 15px !important;
}
.messages .error-msg {
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #c32d27;
  /* stroke */
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  padding: 5px 10px !important;
}
.messages .error-msg ul li {
  margin: 0;
}
.messages .error-msg span {
  color: #c32d27;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px !important;
  font-weight: normal !important;
  padding: 0;
}
.messages .success-msg {
  background-color: #ffffff !important;
  background-image: none !important;
  border: 1px solid #1369a1 !important;
  /* stroke */
  -webkit-border-radius: 3px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 3px !important;
  -moz-background-clip: padding !important;
  border-radius: 3px !important;
  background-clip: padding-box !important;
  padding: 5px 10px !important;
}
.messages .success-msg ul li {
  margin: 0 !important;
}
.messages .success-msg span {
  color: #1369a1 !important;
  /* text color */
  font-family: "Roboto Regular" !important;
  font-size: 18px !important;
  font-weight: normal !important;
  padding: 0 !important;
}
.messages .note-msg,
.messages .notice-msg {
  background-color: #ffffff !important;
  background-image: none !important;
  border: 1px solid #f16323 !important;
  /* stroke */
  -webkit-border-radius: 3px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 3px !important;
  -moz-background-clip: padding !important;
  border-radius: 3px !important;
  background-clip: padding-box !important;
  padding: 5px 10px !important;
}
.messages .note-msg ul li,
.messages .notice-msg ul li {
  margin: 0 !important;
}
.messages .note-msg span,
.messages .notice-msg span {
  color: #f16323 !important;
  /* text color */
  font-family: "Roboto Regular" !important;
  font-size: 18px !important;
  font-weight: normal !important;
  padding: 0 !important;
}
p.error-msg {
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #c32d27;
  /* stroke */
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
  color: #c32d27;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px !important;
  font-weight: normal !important;
  padding: 5px 10px !important;
}
p.success-msg {
  background-color: #ffffff !important;
  background-image: none !important;
  border: 1px solid #1369a1 !important;
  /* stroke */
  -webkit-border-radius: 3px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 3px !important;
  -moz-background-clip: padding !important;
  border-radius: 3px !important;
  background-clip: padding-box !important;
  color: #1369a1 !important;
  /* text color */
  font-family: "Roboto Regular" !important;
  font-size: 18px !important;
  font-weight: normal !important;
  padding: 5px 10px !important;
}
p.note-msg,
p.notice-msg {
  background-color: #ffffff !important;
  background-image: none !important;
  border: 1px solid #f16323 !important;
  /* stroke */
  -webkit-border-radius: 3px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 3px !important;
  -moz-background-clip: padding !important;
  border-radius: 3px !important;
  background-clip: padding-box !important;
  color: #f16323 !important;
  /* text color */
  font-family: "Roboto Regular" !important;
  font-size: 18px !important;
  font-weight: normal !important;
  padding: 5px 10px !important;
}
.checkout-onepage-success .col-main {
  padding: 20px 25px;
}
.checkout-onepage-index ul#nav,
.checkout-cart-index ul#nav {
  display: none;
}
.checkout-onepage-index .zblock,
.checkout-cart-index .zblock {
  -webkit-border-radius: 5px !important;
  -webkit-background-clip: padding-box !important;
  -moz-border-radius: 5px !important;
  -moz-background-clip: padding !important;
  border-radius: 5px !important;
  background-clip: padding-box !important;
}
#mp-dialog-content {
  height: 400px !important;
}
.customer-account-create .page-title h1 {
  color: #f26e32 !important;
}
.customer-account-create .fieldset h2 {
  padding: 6px 15px;
  height: 30px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #ededed;
  /* layer fill content */
  color: #1368a1 !important;
  /* text color */
  font-family: "Roboto Regular" !important;
  font-size: 14px !important;
}
.customer-account-create .fieldset ul.form-list {
  padding: 10px 15px;
}
.customer-account-create .fieldset ul.form-list label.required {
  color: #666666;
  font-weight: normal;
}
.customer-account-create .fieldset .control label {
  color: #666666;
  font-weight: normal;
}
.customer-account-create .buttons-set p.back-link a.back-link {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 10px 25px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #1368a1;
  /* layer fill content */
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.5);
  /* inner shadow */
  color: #FFF !Important;
  text-decoration: none !important;
  font-size: 16px !important;
}
.customer-account-create .buttons-set p.back-link a.back-link small {
  display: none;
}
.share-box {
  float: right;
}
.share-box .share-text {
  cursor: pointer;
  color: #656565;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 14px;
  display: inline-block;
  float: left;
  padding-top: 6px;
  padding-right: 6px;
}
.share-box .main-hex {
  cursor: pointer;
  display: inline-block;
  background-image: url("../images/hex_center.png");
  background-size: 28px 32px;
  background-repeat: no-repeat;
  width: 28px;
  height: 32px;
  position: relative;
}
.share-box .main-hex span.heart-icon {
  display: block;
  background-image: url("../images/heart_icon.png");
  background-size: 18px 15px;
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 32px;
}
.share-box .main-hex .hex {
  display: none;
  position: absolute;
  background-size: 28px 32px;
  width: 28px;
  height: 32px;
  background-repeat: no-repeat;
}
.share-box .main-hex .facebook {
  background-image: url("../images/hex_1.png");
  left: 0px;
  top: 0px;
}
.share-box .main-hex .pin {
  background-image: url("../images/hex_2.png");
  left: 0px;
  top: 0px;
}
.share-box .main-hex .twitter {
  background-image: url("../images/hex_4.png");
  left: 0px;
  top: 0px;
}
.share-box .main-hex .google {
  background-image: url("../images/hex_6.png");
  left: 0px;
  top: 0px;
}
.share-box .main-hex .linked {
  background-image: url("../images/hex_5.png");
  left: 0px;
  top: 0px;
}
.share-box:hover .hex {
  display: block;
}
.share-box:hover .facebook {
  left: -14px;
  top: -25px;
}
.share-box:hover .facebook a.share {
  display: block;
  background-image: url("../images/facebook_icon.png");
  background-size: 9px 16px;
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 32px;
}
.share-box:hover .pin {
  left: 15px;
  top: -25px;
}
.share-box:hover .pin a.share {
  display: block;
  background-image: url("../images/pinterest_icon.png");
  background-size: 12px 16px;
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 32px;
}
.share-box:hover .twitter {
  left: 30px;
  top: 0px;
}
.share-box:hover .twitter a.share {
  display: block;
  background-image: url("../images/twitter_icon.png");
  background-size: 17px 14px;
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 32px;
}
.share-box:hover .google {
  left: 15px;
  top: 25px;
}
.share-box:hover .google a.share {
  display: block;
  background-image: url("../images/google_plus_icon.png");
  background-size: 15px 15px;
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 32px;
}
.share-box:hover .linked {
  left: -15px;
  top: 25px;
}
.share-box:hover .linked a.share {
  display: block;
  background-image: url("../images/linkedin_icon.png");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  width: 28px;
  height: 32px;
}
.bug-message {
  position: fixed !important;
  z-index: 9999 !important;
  background: url("../images/theme/bug-coin.png") 90% 10px no-repeat;
  width: 1170px !important;
  top: 0;
  height: 48px;
  background-position: 90% 10px;
  border: 1px solid #f16322;
  /* stroke */
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  /* border radius */
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  /* prevents bg color from leaking outside the border */
  background-color: #fff;
  /* layer fill content */
  padding: 10px 15px;
  /*  .bug-coin {
      display: inline-block;
      background: url("../images/theme/bug-coin.png") no-repeat;
      width: 96px;
      height: 30px;
    }*/
}
.bug-message .main-text {
  color: #f16322;
  /* text color */
  font-family: "Roboto Regular";
  font-size: 18px;
}
.bug-message .main-text a {
  text-decoration: none !important;
  color: #1469a2 !important;
  padding-left: 15px;
  float: none;
}
.bug-message a {
  color: #666666 !important;
  display: inline-block;
  float: right;
}
.bug-message a span {
  font-size: 16px;
  padding-top: 5px;
}
.box-reviews span.no-review {
  padding-top: 10px;
  font-style: italic;
}
.add-to-cart .free-download .editions {
  width: 150px;
  left: 5px;
}
.free-download {
  float: right;
  position: relative;
}
.free-download .editions {
  position: absolute;
  bottom: -77px;
}
.free-download .editions ul {
  padding: 0 10px 0 10px;
  background-color: #eeeeee;
  -webkit-border-radius: 3px;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 3px;
  -moz-background-clip: padding;
  border-radius: 3px;
  background-clip: padding-box;
}
.free-download .editions ul li {
  padding: 10px 0 10px 0;
  border-top: 1px solid #ffffff;
}
.free-download .editions ul li.first {
  border-top: none;
}
.mp-ajax-reviews .mp-form-box#mp-add-box label {
  text-transform: none;
  margin-bottom: 5px;
}
.mp-ajax-reviews .mp-add-ratings li {
  text-transform: none;
  min-width: 230px;
}
