/* 0 Level */
/* Child Level */
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
/* Reset ================================================================================= */
/* 0 Level */
/* Child Level */
* {
  margin: 0;
  padding: 0; }

body {
  background: white;
  font-size: 13px;
  line-height: 1.55;
  font-family: robotoregular, Arial, Helvetica, sans-serif;
  color: #282828;
  text-align: left; }

.page {
  background: white; }

img {
  border: 0;
  vertical-align: top; }

a {
  color: black;
  text-decoration: none; }

a:hover {
  text-decoration: none;
  color: #e10505; }

a:focus {
  outline: 0;
  text-decoration: none; }

p {
  font-size: 14px; }

ul, ol {
  list-style: none;
  margin: 0; }

/* 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 {
  float: left !important; }

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

/* Table */
table {
  border: 0;
  border-spacing: 0;
  empty-cells: show;
  font-size: 100%; }

caption, th, td {
  vertical-align: top;
  text-align: left;
  font-weight: normal; }

/* fix bootstrap */
.data-table.table > thead > tr > th {
  border-width: 0 0 1px;
  text-transform: uppercase; }

.page .label,
.page label {
  color: inherit;
  font-size: 100%;
  font-weight: normal;
  margin: 0;
  vertical-align: middle;
  text-align: left;
  padding: 0; }

.btn-default, .btn-primary, .btn-success, .btn-info, .btn-warning, .btn-danger {
  text-shadow: 0 0 0 #FFFFFF; }
button.btn-proceed-checkout { background:#e10505!important;}
.page label {
  margin: 0; }

input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
  outline: none;
  outline-offset: 0; }

/* End fix bootstrap */
/* ====================================================================================== */
.clearfix {
  clear: both; }

.clearfix:after,
.buttons-set:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

.z-links {
  display: inline-block;
  background: #282828;
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  padding: 7px 40px;
  font-family: 'robotolight'; }
  .z-links:hover {
    background: #e10505;
    color: #fff; }

/* typo ================================================================================= */
h1, h2, h3,
h4, h5, h6 {
  margin: 0 0 5px;
  line-height: 1.35;
  color: #282828;
  font-family: inherit; }

h1 {
  font-size: 30px;
  font-weight: normal; }

h2 {
  font-size: 26px;
  font-weight: normal; }

h3 {
  font-size: 20px;
  font-weight: normal; }

h4 {
  font-size: 16px;
  font-weight: normal; }

h5 {
  font-size: 14px;
  font-weight: normal; }

h6 {
  font-size: 11px;
  font-weight: normal; }

/* Content */
p {
  margin: 0 0 10px; }

strong {
  font-weight: bold; }

address {
  font-style: normal;
  line-height: 1.35;
  margin: 0; }

cite {
  font-style: normal; }

q,
blockquote {
  quotes: none; }

q:before,
q:after {
  content: ''; }

small, big {
  font-size: 1em; }

/* ====================================================================================== */
/* Layout ================================================================================ */
.page-print {
  background: #fff;
  padding: 25px 30px;
  text-align: left; }

.page-empty {
  background: #fff;
  padding: 20px;
  text-align: left; }

.page-popup {
  background: #fff;
  padding: 25px 30px;
  text-align: left; }

/* Base Columns */
.col-left {
  margin-bottom: 40px; }
  .col-left:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.col-main {
  margin-bottom: 40px; }
  .col-main:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.col-right {
  margin-bottom: 40px; }
  .col-right:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

/* 1 Column Layout */
/* 2 Columns Layout */
/* 3 Columns Layout */
/* Content Columns */
.col2-set .col-1 {
  float: left;
  width: 48.5%; }
.col2-set .col-2 {
  float: right;
  width: 48.5%; }
.col2-set .col-narrow {
  width: 32%; }
.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%; }

/* ====================================================================================== */
.page .set,
#slideshow {
  margin: 0 0 60px; }
  .page .set:after,
  #slideshow:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.col-main .block {
  margin: 0; }

/* Layout */
.boxed {
  max-width: 1170px;
  margin: 0 auto; }

/* Page Heading */
.page-title {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  margin: 0 0 25px; }
  .page-title h1, .page-title h2 {
    margin: 0;
    font-size: 20px;
    color: #0a263c; }
  .page-title .separator {
    margin: 0 3px; }
  .page-title .link-rss {
    float: right;
    margin: 7px 0 0; }

.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;
  padding: 15px 0 0;
  font-size: 15px;
  margin: 0 0 6px;
  color: #e25203; }

/* Data Table */
.data-table {
  width: 100%; }
  .data-table td.last, .data-table th.last {
    border-right: 0; }
  .data-table th {
    padding: 3px 8px;
    font-size: 16px; }
  .data-table td {
    padding: 3px 8px; }

.data-table thead th a, .data-table thead th a:hover {
  color: #fff; }
.data-table thead .tax-flag {
  font-size: 11px;
  white-space: nowrap; }

/* Bundle products tables */
.data-table tbody td .option-label {
  font-weight: bold;
  font-style: italic; }

.data-table tbody td .option-value {
  padding-left: 10px; }

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

/* Misc */
.links li {
  display: inline; }

.links li.first {
  padding-left: 0 !important; }

.links li.last {
  background: none !important;
  padding-right: 0 !important; }

.link-print {
  /*background:url(../images/i_print.gif) 0 2px no-repeat; padding:2px 0 2px 25px;*/
  font-weight: bold;
  color: #dc6809; }

.link-rss {
  background: url(../images/i_rss.gif) 0 2px no-repeat;
  padding-left: 18px;
  line-height: 14px;
  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-previous {
  display: block;
  width: 11px;
  height: 11px;
  font-size: 0;
  line-height: 0;
  background: url(../images/btn_previous.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: url(../images/bkg_divider1.gif) 0 50% repeat-x;
  text-indent: -999em;
  overflow: hidden; }

/* ======================================================================================= */
.guest-select {
  width: 305px !important; }

/* Global Styles ========================================================================= */
/* Form Elements */
input, select, textarea, button {
  vertical-align: middle;
  color: #2f2f2f; }

input.input-text, select, textarea {
  background: #fff;
  border: 1px solid #e9e9e9; }

input.input-text, textarea {
  padding: 5px 2px; }

select {
  padding: 4px 2px; }

select option {
  padding-right: 10px; }

select.multiselect option {
  border-bottom: 1px solid #d7d7d7;
  padding: 2px 5px; }

select.multiselect option:last-child {
  border-bottom: 0; }

textarea {
  overflow: auto; }

input.radio {
  display: inline-block;
  margin-right: 3px;
  margin-top: 0; }

input.checkbox {
  margin-right: 3px; }

input.qty {
  width: 2.5em !important;
  text-align: center; }

button.button::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* FF Fix */
button.button {
  -webkit-border-fit: lines; }

/* <- Safari & Google Chrome Fix */
button.button {
  border: 1px solid transparent;
  background: #282828;
  color: white;
  padding: 0 30px;
  line-height: 38px;
  border-radius: 0;
  -moz-border-radius: 0;
  font-size: 15px;
  font-family: 'robotolight';
  text-transform: uppercase; }

button.button:hover {
  border-color: transparent;
  background: #e10505;
  color: white; }

button.disabled span {
  border-color: #bbb !important;
  background: #bbb !important; }

button.btn-checkout.no-checkout span {
  background-position: 0 100%;
  color: #b8baba; }

button.btn-checkout.no-checkout span span {
  background-position: 100% 100%; }

p.control input.checkbox,
p.control input.radio {
  margin-right: 6px; }

/* Form Highlight */
input.input-text:focus, select:focus, textarea:focus {
  background-color: #eee; }

.form-list li {
  margin: 0 0 8px; }

.form-list label {
  float: left;
  color: #666;
  position: relative;
  z-index: 0;
  margin: 0;
  font-weight: normal;
  padding: 0 0 2px; }

.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;
  vertical-align: middle; }

.form-list li.control input.radio,
.form-list li.control input.checkbox {
  margin-right: 6px;
  display: inline-block;
  margin-top: 0; }

.form-list li.control .input-box {
  clear: none;
  display: inline;
  width: auto; }

.form-list .input-box {
  display: block;
  clear: both;
  width: 100%; }

.form-list .field {
  float: left;
  width: 49%; }

.form-list .field:last-child {
  float: right; }

.form-list input.input-text {
  width: 100%;
  min-height: 34px; }

.form-list textarea {
  width: 100%;
  height: 10em; }

.form-list select {
  width: 100%; }

.form-list li.wide .input-box {
  width: 100%; }

.form-list li.wide input.input-text {
  width: 100%; }

.form-list li.wide textarea {
  width: 100%; }

.form-list li.wide select {
  width: 100%; }

.form-list li.additional-row {
  border-top: 1px solid #d7d7d7;
  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; }

.form-list-narrow li {
  margin-bottom: 0; }

.form-list-narrow li .input-box {
  margin-bottom: 6px; }

.form-list-narrow li.wide .input-box {
  width: 100%; }

.form-list-narrow li.wide input.input-text,
.form-list-narrow li.wide textarea {
  width: 100%; }

.form-list-narrow li.wide select {
  width: 100%; }

/* 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 .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,
.form-list .customer-name-middlename .name-middlename {
  width: 210px; }

.form-list .customer-name-suffix .name-lastname,
.form-list .customer-name-middlename .name-firstname,
.form-list .customer-name-middlename .name-middlename,
.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 .name-middlename 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 {
  clear: both;
  margin: 4em 0 0;
  padding: 8px 0 0;
  border-top: 1px solid #d7d7d7;
  text-align: right; }

.buttons-set p.required {
  margin: 0 0 10px; }

.buttons-set .back-link {
  float: left;
  margin: 0; }

.buttons-set button.button {
  float: right;
  margin-left: 5px; }

.buttons-set-order {
  margin: 10px 0 0; }

.buttons-set-order .please-wait {
  padding: 12px 7px 0 0; }

.fieldset .legend {
  display: none; }

.fields:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

/* Form Validation */
.validation-advice {
  clear: both;
  min-height: 13px;
  margin: 5px 0 0;
  padding-left: 17px;
  font-size: 12px;
  line-height: 13px;
  background: url(../images/validation_advice_bg.gif) 2px 0 no-repeat;
  color: #eb340a; }

.validation-failed {
  border: 1px dashed #eb340a !important;
  background: #faebe7 !important; }

p.required {
  font-size: 11px;
  text-align: right;
  color: #EB340A; }

/* Expiration date and CVV number validation fix */
.v-fix {
  float: left; }

.v-fix .validation-advice {
  display: block;
  width: 12em;
  margin-right: -12em;
  position: relative; }

/* Messages ================================================================================= */
.success {
  color: #3d6611;
  font-weight: bold; }

.error {
  color: #df280a;
  font-weight: bold; }

.notice {
  color: #e26703; }

.messages {
  width: 100%;
  overflow: hidden; }
  .messages ul {
    list-style: none;
    margin: 0 !important;
    padding: 0 !important; }
  .messages li {
    margin: 0 0 10px; }
    .messages li li {
      margin: 0 0 3px !important; }

.error-msg,
.success-msg,
.note-msg,
.notice-msg {
  padding: 10px 15px;
  font-size: 14px; }

.error-msg {
  background-color: #f16048;
}

.success-msg {
  background-color: #eff5ea;
  color: #3d6611; }

.note-msg,
.notice-msg {
  background-color: #fafaec;
  color: #e26703; }

.validation-advice {
  color: #df280a; }

/* Global site notices */
.global-site-notice {
  border: 1px solid #cfcfcf;
  border-width: 0 0 1px;
  background: #ffff90;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  color: #2f2f2f; }

.global-site-notice .notice-inner {
  width: 860px;
  margin: 0 auto;
  padding: 12px 0 12px 80px;
  background: url(../images/i_notice.gif) 20px 25px no-repeat;
  text-align: left; }

.global-site-notice .notice-inner p {
  margin: 0;
  border: 1px dotted #cccc73;
  padding: 10px; }

.global-site-notice .notice-inner .actions {
  padding-top: 10px; }

/* End Messages ================================================================================= */
/********** < Navigation */
.main-nav {
  background: #282828;
  position: relative; }

/* All Levels */
/* Style consistent throughout all nav levels */
#nav li {
  position: relative;
  text-align: left; }

#nav li.over {
  z-index: 998; }

#nav a,
#nav a:hover {
  display: block;
  text-decoration: none; }

#nav span {
  display: block;
  cursor: pointer;
  white-space: nowrap; }

#nav li ul span {
  white-space: normal; }

#nav ul li.parent > ul {
  left: 100%; }

/* 0 Level */
#nav li.level-top {
  float: left;
  padding: 0 21px 0 20px;
  background: url(../images/bg-nav.jpg) right center no-repeat; }
  #nav li.level-top.last {
    background: none; }

#nav li.level-top.first {
  padding-left: 5px; }

#nav li.active > a {
  color: #e10505; }

#nav a.level-top {
  float: left;
  line-height: 42px;
  color: white;
  font-size: 13px; }

#nav li.over > a,
#nav li:hover > a {
  color: #e10505; }

/* 1st Level */
#nav ul li {
  border-bottom: 1px solid #333; }

#nav ul li:last-child {
  border-bottom: none; }

#nav ul li,
#nav ul li.active {
  float: none;
  margin: 0; }

#nav ul li.last {
  padding-bottom: 0; }

#nav ul a,
#nav ul a:hover {
  float: none;
  padding: 0;
  background: none; }

#nav ul li a {
  font-weight: normal !important; }

/* 2nd Level */
#nav ul,
#nav div {
  position: absolute;
  width: 16em;
  top: 100%;
  left: 0; }

#nav div ul {
  position: static;
  width: auto;
  border: none; }

/* 3rd+ Level */
#nav ul ul,
#nav ul div {
  top: 0;
  border-top: none; }

#nav ul {
  background: #282828;
  padding: 0 0 10px; }

#nav ul li a:hover {
  background: #282828; }

#nav ul li a {
  color: white; }

#nav ul li a:hover {
  color: #e10505; }

#nav ul span,
#nav ul li.last li span {
  padding: 6px 18px; }

/* Show menu */
#nav li ul.shown-sub,
#nav li div.shown-sub {
  z-index: 999; }

/********** Navigation > */
#nav, #nav ul {
  position: relative;
  margin: 0; }

#nav li {
  position: relative; }

#nav ul {
  position: absolute;
  display: none;
  border-top: 1px solid #454545; }

.nav-container em {
  display: none !important; }

.applePie {
  display: none; }

@media screen and (max-width: 801px) {
  .applePie {
    display: block; }

  .nav-container {
    display: none; } }
/* Sidebar =============================================================================== */
.sidebar {
  margin-bottom: 40px; }

.block {
  margin: 0 0 30px; }

.block img {
  max-width: 100%;
  height: auto; }

.block .block-title {
  border-bottom: 3px solid #2e2e2e;
  padding: 5px 0;
  margin-bottom: 20px;
  line-height: 1.25;
  padding: 0 0 8px; }

.block .block-title strong {
  text-transform: uppercase;
  font-size: 20px;
  color: #282828;
  font-family: 'robotoregular';
  font-weight: normal; }

.block .block-title a {
  text-decoration: none !important; }

.block .block-subtitle {
  margin: 0;
  padding: 5px 0;
  font-size: 1em; }

.block .block-content li.item {
  padding: 8px 0; }
  .block .block-content li.item:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .block .block-content li.item .btn-remove {
    margin-top: 10px; }

.block .block-content .product-name {
  color: #1e7ec8; }

.block .btn-remove,
.block .btn-edit {
  float: right;
  margin: 1px 0 2px 5px; }

.block .actions a {
  float: left; }

.block .actions button.button {
  float: right; }

.block .empty {
  border: 1px solid #bebebe;
  border-width: 1px 0;
  color: #7f7f7f;
  line-height: 68px;
  margin: 35px 0; }

/* Mini Products List */
.mini-products-list .product-image {
  float: left;
  margin: 0 12px 0 0; }

.mini-products-list .product-details {
  overflow: hidden; }

.block-cart .mini-products-list .product-details .product-name,
.block-cart .mini-products-list .product-details .nobr small {
  word-wrap: break-word; }

.block-cart .mini-products-list .product-details .nobr {
  white-space: normal !important; }

/* Block: Currency Switcher */
.block-currency .block-content select {
  width: 100%; }

/* Block: Layered Navigation */
.block-layered-nav .block-subtitle {
  display: none; }

.block-layered-nav dt {
  padding: 10px 26px 14px 0;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 16px;
  color: #282828;
  border-bottom: 1px solid #bebebe;
  position: relative; }
  .block-layered-nav dt:last-child {
    border-bottom: none; }
  .block-layered-nav dt:before {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    right: 0;
    background-color: #ebebeb;
    cursor: pointer;
    background-image: url(../images/arrow-smaill.png);
    background-position: 9px -50px;
    background-repeat: no-repeat; }
  .block-layered-nav dt.active:before {
    background-position: 10px 9px; }

.block-layered-nav dd {
  padding: 0 0 10px; }

.block-layered-nav dd.last {
  border: none; }

.block-layered-nav .currently li {
  padding: 5px 24px 5px 0;
  position: relative;
  z-index: 1; }

.block-layered-nav dd li {
  border-bottom: 1px solid #e9e9e9;
  padding: 10px 0 10px 18px;
  color: #7f7f7f;
  background: url(../images/sum.gif) left center no-repeat; }

.block-layered-nav dd li:last-child {
  border: none; }

.block-layered-nav dd li a {
  font-size: 14px;
  color: #7f7f7f; }

.block-layered-nav dd li a:hover {
  color: #e10505; }

.block-layered-nav .currently .label {
  color: #333;
  padding: 0 5px 0 0;
  font-size: 1em;
  font-weight: normal; }

.block-layered-nav .currently .value {
  display: inline-block;
  vertical-align: middle; }

.block-layered-nav .currently .btn-previous,
.block-layered-nav .currently .btn-remove {
  position: absolute;
  right: 4px;
  top: 15px;
  margin: 0; }

.block-layered-nav .currently .btn-previous {
  right: 17px; }

.block-layered-nav .actions a {
  float: right; }

/* Block: Cart */
.block-cart .block-title {
  /*border-bottom:0;*/ }

.block-cart .summary {
  background: #fff;
  padding: 2px 8px 8px;
  margin: -1px 0 0;
  position: relative;
  z-index: 1; }

.block-cart .amount {
  margin: 0; }

.block-cart .amount a {
  font-weight: bold; }

.block-cart .subtotal {
  margin: 5px 0 0;
  padding: 2px 0;
  background: #fbebd9;
  text-align: center; }

.block-cart .subtotal .price {
  font-weight: bold; }

.block-cart .actions {
  border-bottom: 1px solid #2e2e2e; }

.block-cart .actions .paypal-logo {
  float: left;
  width: 100%;
  margin: 3px 0 0;
  text-align: right; }

.block-cart .actions .paypal-logo .paypal-or {
  clear: both;
  display: block;
  padding: 0 55px 8px 0; }

/* Block: Wishlist */
.block-wishlist .actions {
  text-align: right; }

/* Block: Related */
.block-related .block-content #block-related {
  max-height: 650px;
  overflow: hidden;
  position: relative; }

.block-related .block-title {
  margin-bottom: 15px; }

.block-related input.checkbox {
  float: right;
  margin-top: 0; }

.block-related .item {
  margin: 25px 0 30px;
  padding: 0 8px 0 0 !important; }

.block-related .block-subtitle {
  font-size: 13px;
  color: #959595;
  border-bottom: 1px solid #bebebe;
  padding: 0 0 13px; }
  .block-related .block-subtitle a {
    color: #e10505; }

.block-related .product-name a {
  font-size: 14px;
  color: #282828;
  display: block;
  line-height: 1.3; }

.block-related .link-wishlist {
  font-size: 12px;
  color: #7f7f7f; }

.block-related .price-box {
  margin: 3px 0; }

.sidebar .block-related {
  margin-top: -4px; }

/* Block: Compare Products */
.page-popup .link-print {
  background: url(../images/i_print.gif) 0 2px no-repeat;
  padding: 2px 0 2px 25px;
  font-weight: bold;
  color: #1e7ec8; }

.compare-table {
  border: 0; }

.compare-table thead tr.first th,
.compare-table thead tr.first td {
  border: 0;
  background: none;
  padding: 0;
  font-size: 0;
  line-height: 0; }

.compare-table .btn-remove {
  float: right;
  background-image: url(../images/btn_remove2.gif);
  width: 72px;
  height: 15px; }

.compare-table tbody th {
  background: #d9e5ee url(../images/bkg_th-v.gif) 100% 0 repeat-y; }

.compare-table tbody th,
.compare-table tbody td {
  padding: 10px;
  border: 0;
  border-top: 1px solid #2e2e2e;
  border-left: 1px solid #2e2e2e; }

.compare-table tbody td.last {
  border-right: 1px solid #2e2e2e; }

.compare-table tbody tr.last th,
.compare-table tbody tr.last td {
  border-bottom: 1px solid #2e2e2e !important; }

.compare-table tr.add-to-row td {
  background: #fffada;
  text-align: center; }

.compare-table tr.first td {
  text-align: center; }

.compare-table tr.first td .product-name {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 5px;
  color: #203548; }

.compare-table tr.first td .product-name a {
  color: #203548; }

.compare-table tr.first td .ratings {
  width: 69px;
  margin: 0 auto; }

.compare-table tr.first td p,
.compare-table tr.add-to-row td p {
  margin: 0; }

#compare-items {
  margin-bottom: 15px; }

/* Block: Recently Viewed */
/* Block: Recently Compared */
/* Block: Poll */
.block-poll .block-subtitle {
  font-size: 12px; }

.block-poll label {
  color: #555555;
  font-weight: normal;
  line-height: 20px; }

.block-poll input.radio {
  float: left;
  margin-top: 1px; }

.block-poll .label {
  display: block;
  font-size: 100%;
  font-weight: normal;
  margin-left: 18px;
  padding: 0;
  text-align: left;
  vertical-align: middle; }

.block-poll li {
  padding: 4px 0; }

.block-poll .actions {
  margin: 5px 0 0; }

.block-poll .answer {
  font-weight: bold; }

.block-poll .votes {
  float: right;
  margin-left: 10px; }

/* Block: Orders and Returns */
.block-gr-search li {
  padding: 3px 9px; }

.block-gr-search button.button span {
  border-color: #2e2e2e;
  background: #618499; }

/* Block: Tags */
.block-tags .block-content .tags-list {
  background: none;
  border: 0;
  padding: 10px 0; }

.block-tags .block-content .tags-list li {
  display: inline-block; }

/* Block: Subscribe */
.block-subscribe .block-content {
  padding: 5px 10px; }

.block-subscribe label {
  font-weight: bold;
  color: #666; }

.block-subscribe input.input-text {
  display: block;
  width: 167px;
  margin: 3px 0; }

.block-subscribe .actions {
  background: none;
  padding: 0;
  margin: 3px 0 0;
  text-align: left; }

.block-subscribe .actions button.button {
  float: none; }

.block-subscribe .actions button.button {
  border-color: #2e2e2e;
  background: #618499; }

/* Block: Reorder */
.block-reorder input.checkbox {
  float: left;
  margin: 2px -20px 0 0; }

.block-reorder .product-name {
  margin-left: 20px; }

.block-reorder .validation-advice {
  margin: 3px 9px 7px; }

/* Block: Login */
.block-login .block-content {
  padding: 5px 10px; }

.block-login label {
  font-weight: bold;
  color: #666; }

.block-login input.input-text {
  display: block;
  width: 167px;
  margin: 3px 0; }

.block-login .actions {
  background: none;
  padding: 0;
  margin: 3px 0 0; }

.block-login .actions button.button span {
  border-color: #2e2e2e;
  background: #618499; }

/* Paypal */
.sidebar .paypal-logo {
  display: block;
  margin: 10px 0;
  text-align: center; }

.block .actions:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

/* BEST SELLERS */
.block-bestsallers .block-content {
  max-height: 648px;
  overflow: hidden;
  position: relative; }

/* Other */
.p-media .product-meta .price {
  color: #e10505 !important; }

/* Header ================================================================================ */
/* Toplinks */
.toplinks {
  border-bottom: 6px solid #e8e8e8;
  padding: 10px 0;
  background: white; }

.toplinks .links {
  height: 30px;
  line-height: 30px; }


.f-left.socials .left-top-links li,
.toplinks .links a {
  font-size: 12px;
  color: black;
  display: inline-block;
  padding: 0 20px;
  border-right: 1px solid #cacaca;
  height: 18px;
  line-height: 18px; }
  .toplinks .links a:hover {
    color: #e10505; }

.toplinks .links .first a {
  padding-left: 0; }

.toplinks .links .last a {
  border: none; }

.logo {
  float: left; }

.header-container {
  background: white; }

.header {
  display: table;
  height: 112px;
  width: 100%;
  color: #282828; }
  .header:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.header .logo {
  display: table-cell;
  vertical-align: middle;
  float: none; }

.header .logo img {
  vertical-align: middle; }

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

.header .quick-access {
  display: table-cell;
  vertical-align: middle;
  text-align: right; }
  .header .quick-access:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .header .quick-access select {
    border-color: #cacaca;
    font-size: 13px;
    padding: 2px; }
  .header .quick-access p {
    display: inline-block;
    padding: 0 20px 0 10px;
    line-height: 24px; }

.header .welcome-msg {
  text-align: right;
  display: block !important;
  padding: 0 !important;
  margin: 0 0 12px;
  font-size: 12px;
  font-family: 'robotobold'; }

/* Social */
.social li {
  display: inline-block;
  height: 30px;
  line-height: 30px; }

.social a {
  color: #434343;
  font-size: 19px;
  padding: 0 0 0 14px; }
  .social a:hover {
    color: #e10505; }

/* Search */
.header .form-search {
  position: relative;
  float: left; }

.header .form-search label {
  float: left; }

.header .form-search input.input-text {
  float: left;
  border-color: #5c7989;
  width: 220px; }

.header .form-search button.button {
  float: left; }

.header .form-search .search-autocomplete {
  z-index: 99; }

.header .form-search .search-autocomplete ul {
  border: 1px solid #5c7989;
  background-color: #f9f5f0; }

.header .form-search .search-autocomplete li {
  text-align: left;
  border-bottom: 1px solid #f4eee7;
  padding: 2px 8px 1px 8px;
  cursor: pointer; }

.header .form-search .search-autocomplete li .amount {
  float: right;
  font-weight: bold; }

.form-search:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
  background-color: #e10505; }

/* End Search */
.header .form-language {
  float: right;
  margin: 0 0 0 8px; }

.header .form-language label {
  display: none; }

.header .form-language select.flags option {
  background-position: 4px 50%;
  background-repeat: no-repeat;
  padding-left: 25px; }

.header .links {
  float: right; }

.header .links li {
  padding: 0 8px 0 7px;
  display: inline-block; }

.header-container .top-container {
  clear: both;
  padding: 5px 10px 0 12px;
  text-align: right; }

.header-container .top-container a {
  font-size: 11px;
  color: #ebbc58; }

/* Currency */
.top-currency {
  float: right; }

/* Cart */
.ico-cart a {
  line-height: 42px;
  color: #e10505; }

.ico-cart i {
  font-size: 17px;
  padding: 0 5px 0 10px; }

.cart-top .item {
  margin: 0 0 15px; }
  .cart-top .item:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .cart-top .item .product-image {
    float: left;
    margin: 0 10px 0 0; }
  .cart-top .item .product-details {
    overflow: hidden;
    color: #999; }
    .cart-top .item .product-details a {
      float: right; }
    .cart-top .item .product-details a.btn-remove {
      background-color: #777;
      background-position: center; }
    .cart-top .item .product-details a.btn-edit {
      display: none; }
    .cart-top .item .product-details .product-name a {
      line-height: 1.3;
      color: #999 !important;
      float: none;
      font-size: 13px;
      display: block; }

.cart-top .block-subtitle {
  text-transform: uppercase; }

.cart-top .summary {
  border-top: 1px solid #454545;
  padding: 15px 0 20px; }
  .cart-top .summary:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .cart-top .summary span {
    display: inline-block;
    line-height: 20px;
    float: left;
    padding: 0 5px 0 0; }
  .cart-top .summary .price {
    color: #e10505; }

.cart-top .actions {
  margin-bottom: 10px; }
  .cart-top .actions a {
    border: 1px solid #454545;
    color: #F1F1F1;
    line-height: 1.3;
    padding: 5px 10px 7px;
    margin: 0 5px 0 0; }
    .cart-top .actions a:hover {
      background: #333; }

/* End Header ================================================================================ */
/* dropdown */
.drop-dow {
  position: relative;
  z-index: 999; }

.drop-content {
  background: #282828;
  border-top: 1px solid #454545;
  display: none;
  padding: 15px;
  position: absolute;
  right: 0;
  top: 100%;
  width: 270px;
  z-index: 9; }

.drop-content p {
  font-size: 13px;
  color: #f0f0f0; }

.drop-content .links li:hover a {
  background: none; }

.drop-content .links li a {
  line-height: 18px; }

.links li.ico .drop-content {
  box-shadow: -1px 1px 3px #666;
  -webkit-box-shadow: -1px 1px 3px #666; }

/* end dropdown */
/* Footer ================================================================================ */
.footer-container {
  background: #282828;
  padding: 50px 0 0; }
  .footer-container a, .footer-container p {
    font-size: 13px;
    color: #767676; }
  .footer-container a {
    line-height: 30px; }
    .footer-container a:hover {
      color: #e10505; }
  .footer-container p {
    line-height: 20px; }
  .footer-container h4,
  .footer-container p.h4
  {
    font-weight: bold;
    border-bottom: 1px solid #313131;
    padding: 0 0 18px;
    margin: 0 0 10px; }
  .footer-container .custom-subscribe {
    margin: 45px 0 0; }
    .footer-container .custom-subscribe h4,
    .footer-container .custom-subscribe p.h4 {
      font-weight: bold;
      text-transform: uppercase;
      border: none;
      margin: 0; }
    .footer-container .custom-subscribe .input-box {
      width: 75%;
      float: left; }
    .footer-container .custom-subscribe .actions {
      width: 24%;
      float: right; }
      .footer-container .custom-subscribe .actions .button.button {
        width: 100%;
        text-align: center;
        background: #373737;
        height: 40px;
        text-transform: uppercase;
        font-size: 15px;
        text-transform: uppercase;
        font-family: 'robotolight'; }
        .footer-container .custom-subscribe .actions .button.button:hover {
          background: #e10505; }
  .footer-container .input-text {
    background: transparent;
    border-color: #3b3b3b;
    height: 40px;
    color: #999;
    padding: 0 10px;
    width: 100%; }
  .footer-container .input-text:focus {
    background: transparent;
    border-color: #464646; }
  .footer-container .coppyright {
    border-top: 1px solid #313131; }

.footer {
  padding: 45px 0 0; }

.footer .store-switcher {
  display: inline;
  margin: 0 5px 0 0;
  color: #fff; }

.footer .store-switcher label {
  font-weight: bold;
  vertical-align: middle; }

.footer .store-switcher select {
  padding: 0;
  vertical-align: middle; }

.footer a {
  color: #fff;
  text-decoration: none; }

.footer a:hover {
  text-decoration: underline; }

.footer .bugs {
  margin: 13px 0 0;
  color: #ecf3f6; }

.footer .bugs a {
  color: #ecf3f6;
  text-decoration: underline; }

.footer .bugs a:hover {
  text-decoration: none; }

.footer address {
  padding: 15px 0;
  line-height: 44px;
  font-size: 11px;
  color: #737373; }

.footer address a {
  color: #ecf3f6;
  text-decoration: underline; }

.footer address a:hover {
  text-decoration: none; }

.footer ul {
  display: inline; }

.footer ul.links {
  display: block; }

.footer li {
  display: inline;
  padding: 0 7px 0 4px; }

.footer li.last {
  background: none !important;
  padding-right: 0 !important; }

.footer-container .bottom-container {
  margin: 0 0 5px; }

/* ======================================================================================= */
/* Category Page ========================================================================= */
.category-title {
  display: none; }

.category-image {
  overflow: hidden;
  margin: 0 0 20px;
  text-align: center; }

.category-image img {
  max-width: 100%;
  height: auto; }

.category-description {
  margin: 0 0 10px; }

/* End Category Page ========================================================================= */
/* View Type: List */
.products-grid {
  margin-bottom: 30px; }

.products-list li.item {
  margin: 0 0 20px; }

.products-list li.item.last {
  border-bottom: 0; }

.products-list li.item:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

/* Product Block ========================================================================= */
.product-block {
  margin-top: 20px; }

.product-name {
  margin: 0;
  font-size: 1em;
  font-weight: normal; }

.product-name a {
  font-size: 16px; }

.product-image img {
  max-width: 100%;
  height: auto; }

table .product-image img {
  max-width: none; }

/* Product style */
.pt-style2 .products-grid {
  margin-bottom: 10px; }
.pt-style2 .product-block .product-meta {
  position: relative;
  padding: 12px 0 0; }
.pt-style2 .product-meta .actions {
  position: absolute;
  right: 0;
  bottom: 100%; }
.pt-style2 .product-block,
.pt-style2 .product-block .product-meta .actions {
  border: none; }
.pt-style2 .product-block .product-meta .actions {
  height: auto;
  margin: 0;
  padding: 0; }
.pt-style2 .product-block .product-meta .product-name {
  border-bottom: 1px solid #BEBEBE;
  padding: 0 0 12px;
  margin: 0 0 2px; }
.pt-style2 .product-meta .actions .button-cart, .pt-style2 .product-meta .actions .add-to-links li, .pt-style2 .product-meta .actions .a-popup {
  background-color: #FFF;
  margin: 0 5px 9px 0;
  text-align: center;
  vertical-align: middle;
  width: auto;
  float: right; }
  .pt-style2 .product-meta .actions .button-cart:hover, .pt-style2 .product-meta .actions .add-to-links li:hover, .pt-style2 .product-meta .actions .a-popup:hover {
    background-color: #eee; }
.pt-style2 .product-meta .actions .button-cart button.button, .pt-style2 .product-meta .actions .add-to-links a, .pt-style2 .product-meta .actions .a-popup a {
  width: 44px;
  height: 44px;
  overflow: hidden;
  text-indent: -9999em !important; }
.pt-style2 .product-meta .actions .button-cart {
  width: auto;
  min-height: 0;
  float: right; }
.pt-style2 .product-meta .actions button.button {
  background-position: 11px 9px; }
.pt-style2 .product-meta .actions .add-to-links a.link-wishlist {
  background-position: -82px 10px; }
.pt-style2 .product-meta .actions .add-to-links a.link-compare {
  background-position: -160px 10px; }
.pt-style2 .product-meta .actions .a-popup a {
  background-position: -236px 11px; }
.pt-style2 .product-meta .actions button.button,
.pt-style2 .product-meta .actions .a-popup a {
  float: none;
  padding: 0; }
.pt-style2 .product-meta .actions .add-to-links a.link-wishlist,
.pt-style2 .product-meta .actions .add-to-links a.link-compare,
.pt-style2 .product-meta .actions .a-popup a {
  margin: 0;
  vertical-align: middle; }

/* Product Image */
.product-block {
  border-bottom: 2px solid #282828; }
  .product-block .product-image {
    display: block; }
  .product-block .hover {
    display: none; }

/* Product Meta */
.product-block .product-meta {
  padding: 20px 0 0; }
  .product-block .product-meta:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .product-block .product-meta .product-name {
    height: 40px;
    font-size: 16px;
    margin: 0 0 5px; }
    .product-block .product-meta .product-name a {
      color: black; }
  .product-block .product-meta .availability {
     float: right;
     text-indent: 9999em;
     width: 20px;
     height: 24px;
     overflow: hidden;
     background: url(../images/outofstock.jpg) no-repeat 0 4px;
  }
  .product-block .product-meta .ratings {
    float: right;
    margin: 9px 0; }
    .product-block .product-meta .ratings .amount {
      display: none; }
  .product-block .product-meta .price-box {
    float: left;
    line-height: 46px; }
  .product-block .product-meta .actions {
/*    clear: both; */
    border-top: 1px solid #bebebe;
/*    display: inline-block;*/
    width: 100%;
    margin: 10px 0 0;
    height: 52px;
    padding: 12px 0 0; }

/* Product icon */
.product-block .product-icons {
  position: absolute;
  top: 5px;
  right: 12px;
  z-index: 9; }
  .product-block .product-icons span {
    display: block;
    font-size: 11px;
    color: #282828;
    text-transform: uppercase;
    font-family: 'robotobold';
    letter-spacing: 2px;
    padding: 4px 0;
    min-width: 50px;
    text-align: right; }
    .product-block .product-icons span.i-new {
      border-bottom: 4px solid #e10505; }
    .product-block .product-icons span.i-sale {
      border-bottom: 4px solid #282828; }

/********** < Product Prices */
.price {
  white-space: nowrap !important;
  font-size: 15px; }

.price-box {
  margin: 5px 0; }
  .price-box:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.price-box .price {
  color: #c77200; }

/* Regular price */
.regular-price .price {
  font-size: 15px;
  color: black; }

.block .regular-price,
.block .regular-price .price {
  color: black; }

/* Old price */
.old-price {
  float: left;
  margin: 0 10px 0 0; }

.old-price .price-label {
  display: none; }

.old-price .price {
  color: #888888;
  text-decoration: line-through;
  font-size: 13px;
  font-style: italic; }

/* Special price */
.special-price {
  float: left;
  margin: 0; }

.special-price .price-label {
  display: none; }

.special-price .price {
  color: black !important; }

/* Minimal price (as low as) */
.minimal-price {
  margin: 0 !important; }

.minimal-price .price-label {
  white-space: nowrap; }

.minimal-price-link {
  clear: both;
  display: block;
  font-size: 14px; }

.minimal-price-link .label {
  color: #212121;
  font-size: 100%;
  font-weight: normal;
  padding: 0; }

.minimal-price-link .price {
  font-weight: normal;
  color: #212121; }

/* Rating */
.no-rating {
  margin: 0 0 10px; }

.ratings {
  font-size: 14px; }

.ratings strong {
  float: left; }

.ratings .rating-links .separator {
  display: none; }

.rating-box {
  width: 90px;
  height: 13px;
  font-size: 0;
  line-height: 0;
  background: url(../images/ratings.png) 0 0 repeat-x;
  text-indent: -999em;
  overflow: hidden; }

.rating-box .rating {
  float: left;
  height: 13px;
  background: url(../images/ratings.png) 0 100% repeat-x; }

.ratings .rating-box {
  float: left;
  margin-right: 3px; }

/* Action */
.product-meta .actions:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }
.product-meta .actions .button-cart button.button {
    padding: 0;
}
.product-meta .actions .button-cart,
.product-meta .actions .add-to-links li,
.product-meta .actions .a-popup {
  width: 10%;
  float: right;
  text-align: center;
  list-style: none;
  min-height: 1px; }
.product-meta .actions .a-popup {
  float: right; }

.product-meta .actions button.button,
.product-meta .actions .add-to-links a,
.product-meta .actions .a-popup a {
  width: 20px;
  height: 22px;
  text-indent: 9999em;
  overflow: hidden;
  background-image: url(../images/product-icons.png);
  background-repeat: no-repeat;
  background-color: transparent;
  float: none; }
.product-meta .actions .add-to-links {
  margin: 0; }
  .product-meta .actions .add-to-links a {
    display: inline-block; }
    .product-meta .actions .add-to-links a.link-wishlist {
      background-position: -94px 2px;
      margin-left: -5%; }
    .product-meta .actions .add-to-links a.link-compare {
      background-position: -172px 2px;
      margin-right: -30%; }
.product-meta .actions .a-popup a {
  background-position: right 2px;
  float: right; }
.product-meta .actions button.button {
  background-position: 0 0;
  float: right; }

/* View Type: Grid */
.products-grid .product-meta .desc {
  padding: 5px 0; }

/* View Type: List */
.products-list div.product-image {
  float: left;
  margin: 0 20px 0 0; }

.products-list .product-shop {
  overflow: hidden; }

.products-list .product-name {
  margin: 0 0 10px; }

.products-list .product-name a {
  color: black;
  font-size: 18px; }

.products-list .price-box {
  float: left;
  margin: 3px 13px 20px 0; }

.products-list .availability {
  float: left;
  margin: 3px 0 0; }

.products-list .desc {
  line-height: 1.35;
  clear: both; }

.products-list button.btn-cart {
  float: left; }

.products-list .rating-box {
  margin-top: 4px; }

.products-list .desc .link-learn {
  font-size: 11px; }

.products-list .add-to-links {
  padding: 9px 0 0 15px; }

.products-list .add-to-links li {
  float: left; }

.products-list .add-to-links .separator {
  display: none; }

.products-list .p-item {
  padding: 25px 0;
  border-bottom: 1px solid #E9E9E9; }

.products-list .product-icons span.i-new {
  border-bottom: 4px solid #e10505;
  min-width: 50px;
  float: right;
  text-align: right; }
.products-list .product-icons span.i-sale {
  border-bottom: 4px solid #282828;
  min-width: 50px;
  float: right;
  text-align: right; }

#track_hint {
  display: none; }

/* End Product Block ========================================================================= */
/* Pager */
.pager .amount {
  float: left;
  margin: 0; }

.pager .limiter {
  float: right; }

.pager .limiter label {
  vertical-align: middle; }

.pager .limiter select {
  margin: 0 0 1px;
  vertical-align: middle; }

.pager .pages ol {
  display: inline; }

.pager .pages li {
  display: inline;
  margin: 0 1px; }

.pager .pages li a,
.pager .pages .current {
  height: 25px;
  line-height: 26px;
  width: 25px;
  background: #EBEBEB;
  border: none;
  padding: 0;
  display: inline-block;
  font-size: 12px;
  color: #262626; }

.pager .pages .current {
  background: #cacaca; }

/* toolbar-bottom */
.toolbar-bottom {
  margin: 55px 0 0; }

/* Fix bt */
.toolbar .pager li > a, .toolbar .pager li > span {
  -webkit-border-radius: 0px 0px 0px 0px;
  border-radius: 0px 0px 0px 0px; }

.toolbar label {
  color: #212121;
  font-size: 14px;
  font-weight: normal;
  padding: 0 8px 0 0;
  vertical-align: middle; }

.toolbar .view-mode {
  float: left;
  margin: 0 35px 0 0;
  line-height: 30px; }
  .toolbar .view-mode label {
    float: left; }
  .toolbar .view-mode a, .toolbar .view-mode strong {
    display: block;
    width: 26px;
    height: 30px;
    overflow: hidden;
    text-indent: 9999em;
    float: left;
    background-image: url(../images/toolbar-icons.png);
    background-repeat: no-repeat;
    background-position: 0;
    margin: 0 4px; }
  .toolbar .view-mode strong.grid {
    background-position: 0 -40px; }
  .toolbar .view-mode a.grid {
    background-position: 0px 7px; }
  .toolbar .view-mode strong.list {
    background-position: -35px -41px; }
  .toolbar .view-mode a.list {
    background-position: -35px 7px; }
.toolbar .limiter {
  float: left; }
.toolbar .i-next, .toolbar .i-previous {
  font-size: 16px !important; }

.sorter .sort-by {
  float: right; }

.sorter .sort-by label {
  vertical-align: middle; }

.sorter .sort-by select {
  margin: 0 0 1px;
  vertical-align: middle; }

/* Toolbar */
.toolbar {
  border-top: 1px solid #bebebe; }
  .toolbar .sorter {
    border-bottom: 1px solid #bebebe;
    padding: 12px 0;
    margin: 0; }
    .toolbar .sorter select {
      height: 30px;
      min-width: 100px;
      font-size: 14px;
      color: #212121; }
  .toolbar .pager {
    margin: 20px 0 0; }
    .toolbar .pager .pages {
      float: right; }
      .toolbar .pager .pages strong {
        display: none; }
  .toolbar strong {
    font-weight: normal; }

.toolbar-bottom .hd-b, .toolbar-top .hd-t {
  display: none !important; }

.toolbar-bottom .pager {
  margin: 20px 0; }

.toolbar:after,
.sorter:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

/* Product View ========================================================================== */
.ratings-table th {
  font-size: 14px;
  padding-right: 10px;
  padding-bottom: 3px; }

/* Reviews */
.product-view .ratings {
  margin-bottom: 20px; }

.product-view .ratings .rating-links a {
  padding: 0 5px; }

.product-view .product-shop .nobr {
  font-size: 14px;
  padding: 10px 0 5px;
  display: inline-block; }

/* Availability */
.availability {
  margin: 0; }

.availability span {
  font-weight: bold; }

.availability.out-of-stock span {
  color: #d83820; }

.availability-only {
  margin: 10px 0 7px;
  line-height: 16px;
  background: url(../images/i_availability_only.gif) 0 50% no-repeat;
  padding-left: 15px; }

.availability-only span,
.availability-only a {
  border-bottom: 1px dashed #751d02;
  color: #000; }

.availability-only a {
  background: url(../images/i_availability_only_arrow.gif) 100% 0 no-repeat;
  cursor: pointer;
  padding-right: 15px;
  text-decoration: none; }

.availability-only .expanded {
  background-position: 100% -15px; }

.availability-only strong {
  color: #be2c00; }

.availability-only-details {
  margin: 0 0 7px; }

.availability-only-details th {
  background: #d2d6d9;
  font-size: 10px;
  padding: 0 8px; }

.availability-only-details td {
  background: #ebf0f3;
  border-bottom: 1px solid #fff;
  font-size: 11px;
  padding: 2px 8px 1px; }

.availability-only-details tr.odd td.last {
  color: #d95e00;
  font-weight: bold; }

.product-view .product-shop .availability {
  font-size: 12px;
  line-height: 34px;
  color: #959595; }

.product-view .product-shop .availability span {
  font-weight: normal;
  color: #e10505; }

/* Email to a Friend */
.email-friend {
  margin: 0; }

/* Alerts */
.alert-price {
  margin: 0;
  font-size: 11px; }

.alert-stock {
  margin: 0;
  font-size: 11px; }

/* Excluding tax */
.price-excluding-tax {
  display: block;
  color: #999; }

.price-excluding-tax .label {
  white-space: nowrap;
  color: #999; }

.price-excluding-tax .price {
  font-size: 13px;
  font-weight: normal;
  color: #c76200; }

/* Including tax */
.price-including-tax {
  display: block;
  color: #999; }

.price-including-tax .label {
  white-space: nowrap;
  color: #999; }

.price-including-tax .price {
  font-size: 13px;
  font-weight: bold;
  color: #c76200; }

/* Configured price */
.configured-price {
  margin: 0; }

.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 {
  margin: 0; }

.price-from .price-label {
  font-weight: bold;
  white-space: nowrap; }

.price-to {
  margin: 0; }

.price-to .price-label {
  font-weight: bold;
  white-space: nowrap; }

/* Price notice next to the options */
.price-notice {
  padding-left: 10px;
  color: #999; }

.price-notice .price {
  font-weight: bold;
  color: #2f2f2f; }

/* Price as configured */
.price-as-configured {
  margin: 0; }

.price-as-configured .price-label {
  font-weight: bold;
  white-space: nowrap; }

.price-box-bundle {
  padding: 0 0 10px 0; }

.price-box-bundle .price-box {
  margin: 0 !important;
  padding: 0 !important; }

.price-box-bundle .price {
  color: #555; }

/********** Product Prices > */
/* Tier Prices */
.product-pricing,
.tier-prices {
  margin: 10px 0;
  padding: 10px 0; }

.tier-prices li {
  padding: 4px 0; }

.tier-prices .benefit {
  font-style: italic;
  font-weight: bold;
  color: #2f2f2f; }

.tier-prices .price {
  font-weight: bold;
  color: #2f2f2f; }

.tier-prices-grouped li {
  padding: 2px 0;
  color: #e26703; }

.tier-prices-grouped li .price {
  font-weight: bold; }

/* Add to Links */
.add-to-links {
  font-size: 11px;
  margin: 5px 0 0; }

.add-to-links .separator {
  display: none; }

/* Add to Cart */
.add-to-cart label {
  display: none; }

.add-to-cart .qty {
  float: right;
  margin-left: 5px;
  height: 40px;
  width: 40px !important; }

.add-to-cart button.button {
  float: left; }

.add-to-cart .paypal-logo {
  display:none;
  clear: left;
  margin: 0;
  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;
  margin: 30px 0; }

.product-options-bottom .add-to-cart {
  float: left;
  margin: 20px 0 30px; }

.add-to-box .or {
  float: left;
  font-weight: bold;
  margin: 0 7px;
  color: #666; }

.add-to-box .add-to-links {
  float: left;
  margin: 0;
  font-size: 12px !important;
  line-height: 1.25 !important;
  text-align: left !important; }

.add-to-box .add-to-links li {
  display: block !important; }

.add-to-box .add-to-links li .separator {
  display: none !important; }

.add-to-box .p-addto {
  clear: both;
  border-top: 1px solid #BEBEBE;
  padding: 20px 0; }
  .add-to-box .p-addto:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.product-collateral {
  padding: 40px 0; }

.product-collateral h2 {
  font-size: 15px;
  border-bottom: 1px solid #BEBEBE;
  padding: 0 0 6px;
  margin: 0 0 15px; }

.product-collateral .box-collateral {
  margin: 0 0 35px; }

/* Product Images */
.product-view .product-img-box {
  width: 100%;
  overflow: hidden; }

.product-view .product-img-box img {
  max-width: 100%;
  height: auto; }

.col3-layout .product-view .product-img-box {
  float: none;
  margin: 0 auto; }

/*
.product-view .product-img-box .product-image { margin:0 0 13px; }
.product-view .product-img-box .product-image-zoom { position:relative; width:100%; height:600px; 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 { font-size:11px; margin:0 0 5px; 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)"; 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 h2 { font-size:11px; border-bottom:1px solid $border-color; margin:0 0 8px; text-transform:uppercase; }
.product-view .product-img-box .more-views ul { margin-left:-9px }
.product-view .product-img-box .more-views li { float:left; margin:0 0 8px 9px; }
.product-view .product-img-box .more-views li a { float:left; width:56px; height:56px; border:2px solid $border-color; overflow:hidden; }
*/
.product-view .more-views {
  margin: 0 auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  height: 164px; }
  .product-view .more-views.ps-container .ps-scrollbar-y-rail {
    right: 10px !important; }

.ps-container .ps-scrollbar-x-rail {
  z-index: 9999; }

.product-view .more-views ul:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

.product-view .product-img-box .more-views {
  margin-left: -5px;
  margin-right: -5px; }
  .product-view .product-img-box .more-views:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .product-view .product-img-box .more-views h2, .product-view .product-img-box .more-views h4 {
    display: none; }
  .product-view .product-img-box .more-views li {
    float: left;
    padding: 0 5px; }

.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 {
  font-weight: bold;
  margin: 0 100px;
  text-align: center; }

.product-image-popup .image {
  display: block;
  margin: 10px 0; }

.product-image-popup .image-label {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #2f2f2f; }

/* Product Shop */
.product-view .product-shop .product-name {
  margin: -8px 0 13px; }

.product-view .product-shop .product-name h1 {
  font-size: 24px; }

.product-view .product-shop .availability {
  float: right;
  margin: 5px 0; }

.product-view .product-shop .short-description {
  margin: 10px 0 0;
  border-bottom: 1px solid #bebebe;
  padding: 10px 0 30px;
  font-size: 14px;
  color: #7f7f7f;
  line-height: 22px; }

.product-view .product-shop .p-info {
  border: 1px solid #bebebe;
  border-width: 1px 0;
  padding: 10px 0 12px; }

.product-view .product-shop .price-box .old-price .price {
  font-size: 22px; }

.product-view .product-shop .special-price {
  float: none;
  clear: both; }

.product-view .product-shop .p-info .price,
.product-view .product-options-bottom .price-box .price {
  font-size: 30px;
  color: #e10505;
  font-family: 'robotolight';
  line-height: 34px; }

.product-view .product-shop .add-to-links,
.product-view .product-shop .email-friend,
.products-list .add-to-links {
  font-size: 12px;
  text-align: left;
  margin: 0;
  float: left; }
  .product-view .product-shop .add-to-links a,
  .product-view .product-shop .email-friend a,
  .products-list .add-to-links a {
    padding-left: 24px;
    position: relative;
    margin: 0 20px 0 0;
    display: block; }
    .product-view .product-shop .add-to-links a:before,
    .product-view .product-shop .email-friend a:before,
    .products-list .add-to-links a:before {
      content: "";
      position: absolute;
      width: 20px;
      height: 100%;
      left: 0;
      top: 0;
      background-image: url(../images/product-icons.png);
      background-repeat: no-repeat; }
    .product-view .product-shop .add-to-links a.link-wishlist:before,
    .product-view .product-shop .email-friend a.link-wishlist:before,
    .products-list .add-to-links a.link-wishlist:before {
      background-position: -95px 0px; }
    .product-view .product-shop .add-to-links a.link-compare:before,
    .product-view .product-shop .email-friend a.link-compare:before,
    .products-list .add-to-links a.link-compare:before {
      background-position: -174px 0; }

.product-view .product-shop .email-friend a:before {
  background-image: url(../images/email.png);
  background-position: 0px 7px; }

.product-view .product-shop .add-to-links li,
.product-view .product-shop .add-to-links li .separator {
  float: left; }

.product-view .product-shop .add-to-links a,
.product-view .product-shop .email-friend a {
  font-size: 12px;
  color: #414141;
  margin: 0 20px 0 0;
  line-height: 24px;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .product-view .product-shop .add-to-links a:hover,
  .product-view .product-shop .email-friend a:hover {
    filter: alpha(opacity=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7; }

#track_outer {
  display: none; }

/* Product Options */
.product-options {
  position: relative;
  margin: 18px 0 0; }

.product-options dt {
  padding: 5px 0 0;
  font-weight: normal; }

.product-options dt label {
  color: #282828;
  font-size: 14px;
  font-weight: normal;
  margin: 0 0 7px; }

.product-options dt label.required em {
  color: #eb340a;
  float: right;
  margin-left: 3px; }

.product-options dd .qty-holder {
  display: block;
  padding: 10px 0 0; }

.product-options dd .qty-holder label {
  vertical-align: middle; }

.product-options dt .qty-disabled {
  background: none;
  border: 0;
  padding: 3px;
  color: #2f2f2f; }

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

.product-options dd select {
  width: 100%;
  padding: 5px 2px; }

.product-options dd .multiselect option {
  border-bottom: 1px dotted #d9e5ee;
  padding: 2px 4px; }

.product-options ul.options-list {
  margin-right: 5px; }

.product-options ul.options-list li {
  line-height: 1.5;
  padding: 2px 0 0;
  clear: both; }

.product-options ul.options-list input.radio {
  float: left;
  margin-top: 4px; }

.product-options ul.options-list input.checkbox {
  float: left;
  margin-top: 3px; }

.product-options ul.options-list .label {
  display: block;
  margin-left: 18px;
  line-height: 1.6; }

.product-options ul.options-list label {
  font-weight: normal;
  vertical-align: middle; }

.product-options ul.validation-failed {
  padding: 0 7px; }

.product-options p.note {
  margin: 0;
  font-size: 11px; }

.product-options p.required {
  position: absolute;
  right: 0;
  top: 10px; }
.product-options .required {color:#EB340A; }
.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
  color: #e26703; }

.product-options-bottom .tier-prices li {
  background: 0;
  padding: 2px 0; }

.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
  color: #e26703; }

.product-options-bottom .price-box {
  margin: 0;
  padding: 0; }

.product-options-bottom .add-to-links {
  clear: both;
  float: none !important;
  border-top: 1px solid #BEBEBE;
  padding: 20px 0; }
  .product-options-bottom .add-to-links:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.col3-layout .product-options-bottom .price-box {
  float: none;
  padding: 0 0 5px; }

.product-options-bottom .price-label {
  float: left;
  padding-right: 5px; }

.product-options-bottom .price-tax {
  float: left; }

.product-options-bottom .add-to-cart {
  float: left; }

.product-shop .product-options-bottom {
  margin: 0 0 10px; }

.product-shop .product-options-bottom .price-box {
  float: right;
  margin: 20px 0 30px;
  line-height: 38px; }

.product-shop .product-options-bottom .price-label {
  float: none;
  padding-right: 0; }

.product-shop .product-options-bottom .price-tax {
  float: none; }

.product-shop .product-options-bottom .add-to-cart-box {
  clear: both;
  float: left;
  padding-top: 12px; }

.product-shop .product-options-bottom .add-to-links:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

#product-options-wrapper dd {
  padding: 0 0 20px; }

#product-options-wrapper dd.last {
  border-bottom: 1px solid #BEBEBE; }

/* Grouped Product */
.product-view .grouped-items-table .price-box {
  margin: 0;
  padding: 0; }

/* Block: Description */
/* Block: Additional */
.product-view .box-additional .data-table th,
.product-view .box-additional .data-table td {
  line-height: 1.25; }

/* Block: Upsell */
/*
.product-view .box-up-sell .products-grid {}
.product-view .box-up-sell .products-grid td { width:25%; background:#f6f2e7; border-right:1px solid $border-color; border-bottom:1px solid $border-color; padding:15px 10px 12px; line-height:1.6em; }
.product-view .box-up-sell .products-grid tr.last td { border-bottom:0; }
.product-view .box-up-sell .products-grid td.last { border-right:0; }
.product-view .box-up-sell .products-grid td img { border:1px solid $border-color; }
.product-view .box-up-sell .products-grid .product-image { text-align:center; }
.product-view .box-up-sell .products-grid td.empty { border-right:0; background:#f1ecdb; }
.product-view .box-up-sell .products-grid .ratings .rating-box { float:none; display:block; margin:0 0 3px; }
*/
/* Block: Tags */
.product-view .box-tags h3 {
  font-size: 13px; }

.product-view .box-tags .product-tags {
  display: block;
  margin: 0 0 15px; }

.product-view .box-tags .product-tags li {
  display: inline;
  padding: 0 7px 0 4px; }

.product-view .box-tags .product-tags li.first {
  padding-left: 0; }

.product-view .box-tags .product-tags li.last {
  background: none;
  padding-right: 0; }

.product-view .box-tags .form-add label {
  display: block;
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 5px;
  color: #0a263c; }

.product-view .box-tags .form-add .input-box {
  float: left; }

.product-view .box-tags .form-add input.input-text {
  width: 100%;
  height: 40px; }

.product-view .box-tags .note {
  margin: 8px 0 0;
  font-size: 11px;
  clear: both; }

/* Block: Reviews */
.product-view .box-reviews dl {
  margin: 15px 0; }

.product-view .box-reviews .ratings-table {
  margin: 10px 0; }

.product-view .box-reviews dt a,
.product-view .box-reviews dt span {
  font-weight: bold; }

.product-view .box-reviews dd {
  margin: 0 0 15px;
  border-bottom: 1px solid #D7D7D7;
  padding: 0 0 15px; }

.product-view .box-reviews dd small {
  font-style: italic; }

.product-view .box-reviews .form-add {
  margin: 15px 0 0; }

.product-view .box-reviews .form-add h3 {
  font-size: 13px;
  font-weight: normal; }

.product-view .box-reviews .form-add h3 span {
  font-weight: bold; }

.product-view .box-reviews .form-add h4 {
  font-size: 12px; }

.product-view .box-reviews .form-add .data-table td {
  text-align: center; }

.product-view .box-reviews .form-add .form-list {
  margin: 15px 0 0; }

.product-view .box-reviews .form-add .form-list .input-box {
  width: 360px; }

.product-view .box-reviews .form-add .form-list input.input-text,
.product-view .box-reviews .form-add .form-list textarea {
  width: 100%; }

/* Send a Friend */
.send-friend .form-list {
  width: 615px;
  overflow: hidden; }

.send-friend .form-list li {
  margin-right: -15px; }

.send-friend .form-list li p {
  margin: 0 15px 0 0; }

.send-friend .form-list .field {
  width: 315px; }

.send-friend .form-list .input-box {
  width: 300px; }

.send-friend .form-list input.input-text,
.send-friend .form-list textarea {
  width: 100%; }

.send-friend .form-list li.wide .input-box {
  width: 612px; }

.send-friend .form-list li.wide textarea {
  width: 609px; }

.send-friend .buttons-set .limit {
  float: right;
  margin: 0 7px 0 0;
  font-size: 11px;
  line-height: 21px; }

/* Rating list */
table.ratings-list tr td {
  line-height: 26px;
  vertical-align: middle;
  padding: 0 10px 0 0 !important; }

/* product-review-table */
#product-review-table th {
  font-size: 14px;
  padding: 8px 10px; }
#product-review-table td {
  text-align: center; }
  #product-review-table td .radio {
    margin-top: 6px; }
#product-review-table tbody tr {
  border-top: 1px solid #E9E9E9; }

.product-options ul.options-list li:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

/* ======================================================================================= */
/* Checkout ============================================================================== */
/********** < Common Checkout Styles */
/* Shipping and Payment methods */
.sp-methods {
  margin: 0 0 15px; }

.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold; }

.sp-methods dd li {
  margin: 5px 0; }

.sp-methods label {
  color: #666;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal; }

.sp-methods .price {
  font-weight: bold; }

.sp-methods .form-list {
  padding-left: 20px;
  width: 300px; }

.sp-methods .form-list li {
  margin: 0 0 8px; }

.sp-methods select.month {
  width: 154px;
  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; }

.sp-methods .release-amounts button {
  float: left;
  margin: 5px 10px 0 0; }

.please-wait {
  float: right; }

.please-wait img {
  vertical-align: middle; }

.cvv-what-is-this {
  font-size: 11px;
  cursor: help;
  margin-left: 10px; }

/* Tooltip */
.tool-tip {
  border: 1px solid #7BA7C9;
  background: #EAF6FF;
  padding: 15px 20px;
  position: absolute;
  z-index: 9999; }

.tool-tip .btn-close {
  margin: -9px -14px 0;
  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 h3 {
  font-size: 12px;
  font-weight: bold;
  color: #e87403; }

.gift-messages p.control {
  color: #8e8d8b; }

.gift-messages-form {
  position: relative; }

.gift-messages-form label {
  float: none !important;
  position: static !important; }

.gift-messages-form h4 {
  font-size: 12px;
  font-weight: bold;
  color: #e87403; }

.gift-messages-form .whole-order {
  margin: 0 0 25px; }

.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;
  color: #8a8987; }

.gift-messages-form .item .details {
  margin-left: 90px; }

.gift-messages-form .item .details .product-name {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 10px; }

.gift-messages-form .item .details .form-list .field {
  width: 255px; }

.gift-messages-form .item .details .form-list .input-box {
  width: 240px; }

.gift-messages-form .item .details .form-list input.input-text {
  width: 234px; }

.gift-messages-form .item .details .form-list li.wide .input-box {
  width: 500px; }

.gift-messages-form .item .details .form-list li.wide textarea {
  width: 494px; }

.gift-message-link {
  font-size: 11px;
  background: url(../images/bkg_collapse-gm.gif) 100% 6px no-repeat;
  padding-right: 7px; }

.gift-message-link.expanded {
  background-position: 100% -40px; }

.gift-message-row {
  background: #f2efe9; }

.gift-message-row .btn-close {
  float: right;
  width: 16px;
  height: 16px;
  background: url(../images/btn_gm-close.gif) 0 0 no-repeat;
  font-size: 0;
  line-height: 0;
  text-indent: -999em;
  overflow: hidden; }

/* Checkout Agreements */
.checkout-agreements li {
  margin: 30px 0; }

.checkout-agreements .agreement-content {
  overflow: auto;
  height: 12em;
  padding: 10px;
  background-color: #fbfaf6;
  border: 1px solid #bbb6a5; }

.checkout-agreements .agree {
  margin: 0;
  padding: 10px 0 10px 11px; }

.checkout-agreements .agree input.checkbox {
  margin-right: 6px; }

.checkout-agreements .agree label {
  font-weight: bold;
  color: #666; }

.opc .checkout-agreements {
  border: 1px solid #d9dde3;
  border-width: 0 1px;
  padding: 5px 30px; }

.opc .checkout-agreements li {
  margin: 20px 0 0; }

.opc .checkout-agreements .agreement-content {
  background-color: #fff;
  border-color: #e4e4e4;
  padding: 5px; }

.opc .checkout-agreements .agree {
  padding-left: 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; }

.opc .centinel {
  border: 1px solid #bbb6a5;
  border-width: 0 1px 1px;
  padding: 10px 30px; }

/* Generic Info Set */
.info-set {
  background: #fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x;
  border: 1px solid #bbb6a5;
  margin: 0 0 25px;
  padding: 20px; }

.info-set h2 {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 10px; }

.info-set h3,
.info-set h4 {
  font-size: 13px;
  font-weight: bold;
  color: #E26703; }

.info-set h2 a,
.info-set h3 a,
.info-set h4 a {
  font-weight: normal; }

.info-set h2.legend {
  margin: -20px -20px 15px;
  padding: 5px 10px;
  background: #f9f3e3;
  border-bottom: 1px solid #bbafa0;
  position: relative; }

.info-set h3.legend {
  margin: 0 0 10px;
  color: #0a263c; }

.info-set .divider {
  margin: 0 -20px;
  padding: 25px 0;
  position: relative; }

.info-set .box {
  margin: 0 0 15px; }

.info-set .box h2 {
  color: #e26703; }

.info-set .data-table .product-name {
  font-size: 1em !important;
  font-weight: bold !important;
  color: #1e7ec8 !important; }

.info-set .data-table .product-name a {
  font-weight: bold !important; }

.info-set .data-table .item-options {
  margin: 5px 0 0; }

/********** Common Checkout Styles > */
/* One Page Checkout */
.block-progress {
  border: 0;
  margin: 110px 0 0; }

.block-progress .block-title {
  display: none; }

.block-progress .block-content {
  background: none;
  padding: 0 5px; }

.block-progress .block-content dl {
  margin: 0 0 5px; }

.block-progress dt {
  border: 1px solid #ddd;
  font-size: 16px;
  text-transform: uppercase;
  color: #282828;
  font-weight: normal;
  padding: 10px 0 10px 16px;
  margin-bottom: 15px;
  position: relative; }

.block-progress dt:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: #242424;
  left: -1px;
  top: -1px;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: 1px solid #242424; }

.block-progress dd {
  padding: 10px 10px 20px; }

.block-progress dt.complete {
  margin: 0; }

.block-progress p {
  margin: 0; }

.block-progress .cards-list dt {
  background: none;
  border: 0 none;
  color: inherit;
  font-size: 12px;
  margin: 5px 0;
  padding: 0; }

.block-progress .cards-list dd {
  border: 0 none;
  margin: 0;
  padding: 0; }

.block-progress .cards-list .info-table th {
  font-weight: normal; }

/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
  display: inline; }

.opc-block-progress dt a,
.opc-block-progress dt .separator {
  display: none; }

.opc .buttons-set {
  margin-top: 0;
  padding-top: 2em; }

.opc .buttons-set p.required {
  margin: 0;
  padding: 0 0 10px; }

.opc .buttons-set .back-link small {
  display: none; }

.opc .buttons-set .back-link a {
  background: url(../images/i_arrow-top.gif) 0 50% no-repeat;
  padding-left: 16px; }

.opc .buttons-set.disabled button.button {
  display: none; }

.opc .buttons-set .please-wait {
  height: 21px;
  line-height: 21px; }

.opc .ul {
  list-style: disc outside;
  padding-left: 18px; }

.opc {
  position: relative;
  margin: 0 0 50px; }

.opc li.section {
  margin: 0 0 1px; }

.opc .step-title {
  text-align: left;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  padding: 10px 0 10px 60px;
  position: relative; }

.opc .step-title .number {
  position: absolute;
  content: "";
  top: -1px;
  left: -1px;
  width: 44px;
  height: 100%;
  background: #252525;
  color: #fffdfd;
  font-size: 18px;
  text-align: center;
  border: 1px solid #252525;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  line-height: 38px; }

.opc .step-title h2 {
  color: #282828;
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
  margin: 0; }

.opc .step-title a {
  display: none;
  float: right;
  font-size: 11px;
  line-height: 16px; }

.opc .allow .step-title h2 {
  color: #a4b3b9; }

/*.opc .allow .step-title a { display:block; }*/
.opc .active .step-title {
  cursor: default; }

.opc .active .step-title .number {
  background: #303030;
  border-color: #303030;
  color: #fff; }

.opc .active .step-title h2 {
  color: #303030; }

/*.opc .active .step-title a { display:none; }*/
.opc .step {
  padding: 5px 0 30px;
  position: relative; }

.opc .step .tool-tip {
  right: 30px; }

#opc-login .buttons-set {
  border-top: 0; }

#opc-login h3 {
  font-size: 15px;
  border-bottom: 1px solid;
  padding-bottom: 5px;
  text-transform: uppercase; }

#opc-login h4 {
  border-bottom: 1px solid #666;
  color: #2F2F2F;
  display: inline-block;
  font-size: 14px;
  margin: 0 0 7px;
  padding: 6px 0 3px;
  text-transform: uppercase; }

#opc-shipping_method .buttons-set {
  border-top: 0; }

.opc .gift-messages-form {
  margin: 0 -30px;
  background: #f6f1eb;
  border: 1px solid #e9e4de;
  border-width: 1px 0;
  padding: 22px 24px 22px 30px; }

.opc .gift-messages-form .inner-box {
  padding: 5px;
  height: 260px;
  overflow: auto; }

#opc-review .step {
  border: 0;
  padding: 0; }

#opc-review .product-name {
  font-weight: bold;
  color: #0a263c; }

#opc-review .item-options {
  margin: 5px 0 0; }

#opc-review .buttons-set {
  padding: 5px 0; }

#opc-review .buttons-set p {
  margin: 0;
  line-height: 40px; }

#opc-review .buttons-set .please-wait {
  height: 40px;
  line-height: 40px; }

#opc-review .authentication {
  margin: 0 auto;
  width: 570px; }

#opc-review .warning-message {
  color: #222;
  font-weight: bold;
  text-align: center;
  padding: 10px 10px 0; }

#checkout-review-table-wrapper {
  margin: 5px 0 0 0; }

#checkout-review-table {
  margin-bottom: 10px; }

/* Multiple Addresses Checkout */
.checkout-progress {
  padding: 0 90px;
  margin: 0 0 20px; }

.checkout-progress li {
  float: left;
  width: 19%;
  margin: 0 3px 0 0;
  border-top: 10px solid #999;
  padding: 2px 0 0;
  font-weight: bold;
  text-align: center;
  color: #abb5ba; }

.checkout-progress li.active {
  border-top-color: #e96200;
  color: #e96200; }

.multiple-checkout h2 {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 10px; }

.multiple-checkout h3,
.multiple-checkout h4 {
  font-size: 13px;
  font-weight: bold;
  color: #E26703; }

.multiple-checkout h2 a,
.multiple-checkout h3 a,
.multiple-checkout h4 a {
  font-weight: normal; }

.multiple-checkout .data-table .product-name {
  font-size: 1em !important;
  font-weight: bold !important;
  color: #1e7ec8 !important; }

.multiple-checkout .data-table .product-name a {
  font-weight: bold !important; }

.multiple-checkout .data-table .item-options {
  margin: 5px 0 0; }

.multiple-checkout .gift-messages {
  margin: 15px 0 0; }

.multiple-checkout .tool-tip {
  top: 50%;
  margin-top: -120px;
  right: 20px; }

.multiple-checkout .col2-set,
.multiple-checkout .col3-set {
  background: #fbfaf6 url(../images/bkg_checkout.gif) 0 0 repeat-x;
  border: 1px solid #bbb6a5;
  margin: 0 0 25px;
  padding: 20px; }

.multiple-checkout .col2-set h2.legend {
  margin: -20px -20px 15px;
  padding: 5px 10px;
  background: #f9f3e3;
  border-bottom: 1px solid #bbafa0;
  position: relative; }

.multiple-checkout .col2-set h3.legend {
  margin: 0 0 10px;
  color: #0a263c; }

.multiple-checkout .col2-set .divider {
  margin: 0 -20px;
  padding: 25px 0;
  position: relative; }

.multiple-checkout .box {
  margin: 0 0 15px; }

.multiple-checkout .box h2 {
  color: #e26703; }

.multiple-checkout .place-order .please-wait {
  float: right;
  padding: 27px 7px 0 0; }

.multiple-checkout .place-order .grand-total {
  float: right;
  height: 71px;
  font-size: 1.5em;
  padding: 0 0 0 21px;
  background: url(../images/bkg_grand-total.gif) 0 0 no-repeat;
  overflow: hidden; }

.multiple-checkout .place-order .grand-total .inner {
  float: left;
  height: 57px;
  padding: 14px 21px 0 0;
  background: url(../images/bkg_grand-total.gif) 100% 0 no-repeat; }

.multiple-checkout .place-order .grand-total .inner div {
  display: inline; }

.multiple-checkout .place-order .grand-total big {
  display: inline;
  margin-right: 12px; }

.multiple-checkout .place-order .grand-total .price {
  color: #E26703; }

.multiple-checkout .place-order .grand-total button.button span {
  font-size: 16px; }

.multiple-checkout .place-order .grand-total button.button span span {
  padding: 0 45px 0 36px; }

/* Step 1 */
.multiple-checkout .title-buttons button.button span {
  border-color: #406a83;
  background: #618499; }

#multiship-addresses-table td {
  padding: 10px; }

#multiship-addresses-table tfoot td {
  padding: 5px 10px; }

#multiship-addresses-table tfoot button.button span {
  border-color: #406a83;
  background: #618499; }

/* Step 2 */
.multiple-checkout .gift-messages-form .item .details .form-list {
  width: 100%;
  overflow: hidden; }

.multiple-checkout .gift-messages-form .item .details .form-list li {
  margin-right: -15px; }

.multiple-checkout .gift-messages-form .item .details .form-list .field {
  width: 230px; }

.multiple-checkout .gift-messages-form .item .details .form-list .input-box {
  width: 215px; }

.multiple-checkout .gift-messages-form .item .details .form-list input.input-text {
  width: 209px; }

.multiple-checkout .gift-messages-form .item .details .form-list li.wide .input-box {
  width: 445px; }

.multiple-checkout .gift-messages-form .item .details .form-list li.wide textarea {
  width: 439px; }

.checkout-multishipping-shipping .box-sp-methods {
  border: 1px solid #d9d2be;
  background: #f9f3e3;
  padding: 13px;
  position: relative; }

.checkout-multishipping-shipping .box-sp-methods .pointer {
  position: absolute;
  top: -20px;
  right: -40px;
  width: 178px;
  height: 41px;
  background: url(../images/bkg_sp-methods.gif) 0 0 no-repeat;
  overflow: hidden; }

/* Step 3 */
.checkout-multishipping-billing .multiple-checkout {
  position: relative; }

/* ======================================================================================= */
/* Update Venustheme */
.opc .form-list .input-box {
  width: 100%; }

.opc .form-list input.input-text {
  width: 100%; }

.opc .step-title:after,
#payment_form_ccsave:after,
.opc .step:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

/* BreadCrumbs */
.breadcrumbs {
  padding: 40px 0 20px;
  border-bottom: 3px solid #282828;
  margin: 0 0 50px; }
  .breadcrumbs:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .breadcrumbs strong, .breadcrumbs a {
    font-weight: normal;
    font-size: 12px;
    color: #2e2e2e;
    display: inline-block;
    line-height: 46px; }
  .breadcrumbs strong {
    color: #a8a8a8; }

.breadcrumbs ul {
  float: left; }

.breadcrumbs h1,
.breadcrumbs h1 strong {
   display: none;
  font-size: 28px;
  color: #282828;
  text-transform: uppercase;
  float: left;
  font-family: 'robotoregular'; }

.breadcrumbs li {
  display: inline; }
  .breadcrumbs li span {
    padding: 0 3px; }

/* Shopping Cart ========================================================================= */
.page-title {
  border-bottom: 3px solid #282828;
  margin-bottom: 30px; }

.page-title h1 {
  font-size: 28px;
  color: #282828;
  text-transform: uppercase;
  padding: 40px 0 30px; }

.cart .data-table tr th,
.cart .data-table tr td {
  padding: 10px 20px; }

.cart .data-table tbody th,
.cart .data-table tbody td {
  padding: 30px 20px; }

.cart .data-table tbody .product-name a {
  font-size: 16px;
  color: #282828; }

.cart .data-table tr td:first-child {
  padding-left: 0; }

.cart .data-table tr td:last-child {
  padding-right: 0; }

/* Checkout Types */
.cart .page-title .checkout-types {
  display: none; }

.cart .title-buttons .checkout-types {
  float: right;
  margin: 0; }

.cart .checkout-types .paypal-or {
  margin: 0 8px;
  line-height: 2.3; }

.cart .totals .checkout-types .paypal-or {
  clear: both;
  display: block;
  padding: 10px 0 0; }

/* Shopping Cart Table */
.cart-table th {
  padding: 2px 10px; }

.cart-table td {
  padding: 10px; }

.cart-table .item-msg {
  margin: 5px 0;
  font-size: 11px;
  font-weight: bold;
  color: #df280a; }

.cart-table tfoot td {
  padding: 5px 10px; }

.cart-table .btn-continue {
  float: left; }

.cart-table .btn-update,
.cart-table .btn-empty {
  float: right; }

.cart-table .btn-update {
  margin-left: 10px; }

/* Shopping Cart Collateral boxes */
.cart .crosssell h2 {
  font-size: 20px;
  text-transform: uppercase; }

.cart .crosssell .product-image {
  float: left; }

.cart .crosssell li.item {
  margin: 12px 0; }

.cart .crosssell .link-compare {
  font-weight: normal; }

/* Discount Codes & Estimate Shipping and Tax Boxes */
.cart .shipping .form-list .input-box,
.cart .shipping .form-list select {
  width: 100%; }

.cart .form-list input.input-text {
  width: 50%; }

.cart .discount,
.cart .shipping {
  margin: 0 0 30px; }

.cart .discount h2,
.cart .shipping h2 {
  text-transform: uppercase;
  font-size: 20px;
  border-bottom: 3px solid #282828;
  padding: 0 0 8px; }

.cart .discount .buttons-set,
.cart .shipping .buttons-set {
  margin: 10px 0 0;
  border: 0;
  padding: 0;
  text-align: left; }

.cart .discount .buttons-set button.button,
.cart .shipping .buttons-set button.button {
  float: none;
  margin-left: 0; }

.cart .discount .input-box {
  margin: 5px 0 0;
  width: 100%; }

.cart .discount input.input-text {
  width: 100%; }

.cart .shipping .sp-methods {
  margin: 10px 0 0;
  padding: 5px 0 0; }

/* Shopping Cart Totals */
.cart .totals {
  background: #efefef;
  padding: 5px 10px 0; }

.cart .totals table {
  width: 100%;
  margin: 10px 0; }

.cart .totals td {
  padding: 5px 15px 0 5px;
  font-size: 16px; }

.cart .totals tfoot th {
  padding: 5px 15px 5px 7px; }

.cart .totals tfoot th strong,
.cart .totals tfoot td strong {
  font-size: 15px; }

.cart .totals .checkout-types {
  font-size: 13px;
  padding: 8px 15px 15px;
  text-align: right; }

.cart .totals .checkout-types li {
  clear: both;
  margin: 10px 0; }

/* Options Tool Tip */
.item-options dt {
  font-weight: bold;
  font-style: italic; }

.item-options dd {
  margin: 0 0 6px; }

.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 #2e2e2e;
  background-color: #f6f6f6; }

.truncated .truncated_full_value .item-options > p {
  font-weight: bold;
  text-transform: uppercase; }

.truncated .show .item-options {
  top: -20px;
  left: 50%; }

.col-left .truncated .show .item-options {
  left: 15px;
  top: 7px; }

.col-right .truncated .show .item-options {
  left: -240px;
  top: 7px; }

/* Generic Info Box */
.info-box {
  background: white url(../images/bkg_block-title.gif) 0 0 repeat-x;
  border: 1px solid #d0cbc1;
  padding: 12px 15px;
  margin: 0 0 15px; }

.info-box h2 {
  font-weight: bold;
  font-size: 13px; }

.info-table th {
  font-weight: bold;
  padding: 2px 15px 2px 0; }

.info-table td {
  padding: 2px 0; }

/* 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 5px no-repeat;
  cursor: pointer; }

tr.show-details .summary-collapse {
  background-position: 0 -52px; }

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% 5px 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% -52px; }

/* ======================================================================================= */
/* My Account ============================================================================= */
.my-account .title-buttons .link-rss {
  float: none;
  margin: 0; }

/********** < Dashboard */
.dashboard .welcome-msg {
  margin: 0 8em 1.5em 0; }

.dashboard .welcome-msg p {
  margin: 0; }

.dashboard .col2-set {
  margin: 0 0 15px; }

/* General Box */
.box-account {
  background: #fff;
  border: 1px solid #2e2e2e;
  border-color: #2e2e2e;
  padding: 15px;
  margin: 0 0 20px; }

.box-account .box-head {
  border-bottom: 1px solid #d9dde3;
  margin: 0 0 10px;
  text-align: right; }

.box-account .box-head h2 {
  float: left;
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: #e65505;
  padding: 5px 0; }

.dashboard .box .box-title {
  padding: 0 0 10px;
  margin: 0 0 8px;
  text-align: right;
  border-bottom: 1px solid #e0e0e0; }

.dashboard .box .box-title h3,
.dashboard .box .box-title h4 {
  float: left;
  font-size: 14px;
  margin: 0;
  padding: 5px 0; }

/* Block: Recent Orders */
/* Block: Account Information */
.dashboard .box-info h4 {
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase; }

/* 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: #0a263c; }

.dashboard .box-reviews .details {
  margin-left: 20px; }

.dashboard .box-reviews li.item {
  margin: 0 0 7px; }

.dashboard .box-reviews li.item.last {
  margin: 0; }

.dashboard .box-reviews .ratings {
  margin: 7px 0 0; }

/* 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: #0a263c; }

.dashboard .box-tags .details {
  margin-left: 20px; }

.dashboard .box-tags li.item {
  margin: 0 0 7px; }

.dashboard .box-tags li.item.last {
  margin: 0; }

.dashboard .box-tags .tags strong,
.dashboard .box-tags .tags ul,
.dashboard .box-tags .tags ul li {
  display: inline; }

/********** Dashboard > */
/* Address Book */
.addresses-list h2 {
  font-weight: bold;
  font-size: 13px;
  color: #e26703;
  text-transform: uppercase; }

.addresses-list h3 {
  font-weight: bold;
  font-size: 13px; }

.addresses-list address {
  margin: 0 0 3px; }

.addresses-list p {
  margin: 0; }

.addresses-list a {
  font-weight: bold; }

.addresses-list .link-remove {
  color: #646464; }

.addresses-list .separator {
  margin: 0 3px; }

.addresses-list li.item {
  background: #fff;
  border: 1px solid #2e2e2e;
  padding: 10px 13px;
  margin: 0 0 10px; }

.addresses-list li.empty {
  background: none;
  border: 0;
  padding: 0; }

.addresses-list li.empty p {
  font-weight: bold; }

.addresses-list .addresses-additional li.item {
  background: none;
  border: 0;
  padding: 0; }

/* Order View */
.order-info {
  background: #dee5e8;
  border: 1px solid #d0cbc1;
  padding: 4px 8px;
  margin: 0 0 8px; }

.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
  display: inline; }

.order-info .current {
  font-weight: bold; }

.order-info li {
  margin: 0 3px; }

.order-date {
  margin: 10px 0; }

.order-info-box {
  background: #fff;
  border: 1px solid #d0cbc1;
  padding: 12px 15px;
  margin: 0 0 15px; }

.order-info-box h2 {
  font-weight: bold;
  font-size: 13px; }

.order-info-box .box-payment p {
  margin: 0 0 3px; }

.order-info-box .box-payment th {
  font-weight: bold;
  padding-right: 7px; }

.order-items {
  width: 100%;
  overflow-x: auto; }

.order-items h2,
.order-items h3 {
  clear: none;
  font-weight: bold;
  font-size: 13px;
  padding: 0;
  margin: 0 0 5px;
  color: #0a263c; }

.order-items .product-name {
  font-size: 1em !important;
  font-weight: bold !important; }

.order-items .link-print {
  color: #1e7ec8;
  font-weight: normal; }

.order-items .order-links {
  text-align: right; }

.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 {
  margin: 0 0 15px; }

.page-print .print-head .logo {
  float: left; }

.page-print .print-head address {
  float: left;
  margin-left: 15px; }

.page-print h1 {
  font-size: 16px;
  font-weight: bold; }

.page-print h2,
.page-print h3 {
  font-size: 13px;
  font-weight: bold; }

.page-print h2.h2 {
  font-size: 16px;
  font-weight: bold; }

.page-print .order-date {
  padding: 0 0 10px;
  margin: 0 0 10px; }

.page-print .col2-set {
  margin: 0 0 10px; }

/* 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 Wishlist */
.my-wishlist .data-table td {
  padding: 10px; }

.my-wishlist .product-image {
  display: block;
  width: 113px;
  height: 113px;
  margin: 0 0 5px; }

.my-wishlist textarea {
  display: block;
  width: 97%;
  height: 109px; }

.my-wishlist .buttons-set {
  margin-top: 2em; }

.my-wishlist .buttons-set button.button {
  float: none; }

.my-wishlist .buttons-set .btn-add span,
.my-wishlist .buttons-set .btn-share span {
  border-color: #406a83;
  background: #618499; }

#wishlist-table .add-to-links {
  white-space: nowrap; }

/* My Tags */
.my-tag-edit {
  float: left;
  margin: 0 0 10px; }

.my-tag-edit .btn-remove {
  float: right;
  margin: 4px 0 0 5px; }

#my-tags-table {
  clear: both; }

#my-tags-table td {
  padding: 10px; }

#my-tags-table .add-to-links {
  white-space: nowrap; }

/* My Reviews */
#my-reviews-table td {
  padding: 10px; }

.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-img-box .ratings .rating-box {
  float: none;
  display: block;
  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 h3 {
  font-size: 12px;
  margin: 0 0 3px;
  color: #2f2f2f; }

.product-review .ratings-table {
  margin: 0 0 10px; }

.product-review dt {
  font-weight: bold; }

.product-review dd {
  font-size: 13px;
  margin: 5px 0 0; }

/* Billing Agreements */
.billing-agreements .info-box {
  margin: 15px 0; }

.billing-agreements .form-list li select {
  float: left; }

.billing-agreements .form-list li button.button {
  float: left;
  margin-left: 10px; }

.billing-agreements .table-caption {
  font-weight: bold;
  font-size: 13px; }

/* ======================================================================================= */
/* Block: Account */
.block-account .block-title strong {
  color: #282828;
  font-size: 30px;
  padding: 40px 0 26px;
  text-transform: uppercase;
  display: block; }

.block-account .block-content li a,
.block-account .block-content li.current {
  display: block;
  border-bottom: 1px solid #e0e0e0;
  padding: 10px 0;
  color: #5f5d5c;
  text-decoration: none !important;
  font-size: 16px;
  text-transform: uppercase; }

.block-account .block-content li a:hover {
  color: #ea7900; }

.block-account .block-content li.last a {
  border-bottom: 0; }

.block-account .block-content li.current strong {
  font-weight: normal;
  color: #e10505; }

.block-account .block-content li.current.last {
  border-bottom: 0; }

.box-account:after,
.box-account .box-head:after,
.col2-set:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

/* Bottom info */
.bottom-info {
  background-image: url(../images/bg-dot.png);
  background-position: left top;
  background-repeat: repeat;
  background-color: #e8e8e8;
  padding: 20px 0; }
  .bottom-info h3 {
    display: inline-block;
    color: #282828; }
  .bottom-info .fa {
    background-color: #282828;
    color: #FFFFFF;
    font-size: 28px;
    padding: 20px 14px 20px 20px;
    text-align: center;
    margin: 0 18px 0 0; }

/* Custom footer links */

.custom-footer-links p.h4 {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.35;
  display: block;
  -webkit-margin-before: 1.33em;
  -webkit-margin-after: 1.33em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}


.bottom-info p.h3,
.box-custom p.h3 {
  font-size: 20px;
  font-weight: normal;
  color: #e10505;
  margin: 0 0 5px;
  line-height: 1.35;
}
.bottom-info p.h3 {
  display: inline-block;
  color: #282828;
}
.custom-footer-links h1, .custom-footer-links h4,
.custom-footer-links p.h1, .custom-footer-links p.h4 {
  font-family: robotoregular, Arial, Helvetica, sans-serif;
  color: #fff;
}
.custom-footer-links h1, .custom-footer-links p.h1 {
  font-weight: bold;
  margin: 0;
}

.custom-footer-links .fa {
  font-size: 18px;
  vertical-align: top;
  line-height: 22px; }
  .custom-footer-links .fa.fa-envelope {
    font-size: 15px; }
.custom-footer-links p span {
  display: inline-block;
  padding-left: 12px; }

/* box-ad */
.box-ad {
  position: relative; }
  .box-ad img {
    max-width: 100%;
    line-height: auto; }
  .box-ad .box-des {
    position: absolute;
    top: 20px;
    right: 25px;
    text-align: right;
    color: #eee; }
  .box-ad h3 {
    font-size: 22px;
    line-height: 26px;
    font-family: 'robotolight';
    letter-spacing: 2px;
    color: #eee;
    margin: 0 0 8px; }
  .box-ad p {
    line-height: 18px;
    margin: 0 0 25px; }
  .box-ad a {
    background-color: #282828;
    color: #eee;
    font-size: 15px;
    padding: 9px 38px;
    cursor: pointer; }

/* logo-bank */
.logo-bank {
  height: 74px;
  text-align: right;
  line-height: 74px; }
  .logo-bank img {
    vertical-align: middle; }

/* box-custom */
.box-custom h3 {
  color: #e10505; }

/* Advanced Search ============================================================================== */
.advanced-search .form-list label {
  width: 160px;
  padding-right: 10px; }

.advanced-search .form-list .input-box,
.advanced-search .form-list .input-range {
  float: left;
  clear: none; }

.advanced-search-amount {
  margin: 0 0 10px; }

.advanced-search-summary {
  margin: 10px 0;
  border: 1px solid #2e2e2e;
  background: #fff6f1;
  padding: 10px; }

.advanced-search-summary ul {
  float: left;
  width: 49%; }

.advanced-search-summary strong {
  color: #E17C24;
  padding-left: 15px; }

.advanced-search-summary p {
  clear: both;
  font-weight: bold;
  margin: 0; }

/* End Advanced Search ============================================================================== */
/* Account Login/Create Pages ============================================================ */
.account-login .content {
  min-height: 250px;
  padding: 15px 0; }

.account-login .content h2 {
  border-bottom: 1px solid #2E2E2E;
  line-height: 1.25;
  margin-bottom: 20px;
  padding: 0 0 8px;
  color: #282828;
  font-family: 'robotoregular';
  font-size: 20px;
  font-weight: normal;
  text-transform: uppercase; }

.account-login .buttons-set {
  border: none; }

.account-login .form-list input.input-text {
  width: 100%; }

/* End Account Login/Create Pages ============================================================ */
/* MAP Popup============================================================================== */
.cart-msrp-totals {
  color: red;
  font-size: 12px !important;
  font-weight: bold;
  margin: 10px 10px 0;
  padding: 10px;
  text-align: right;
  text-transform: uppercase; }

.map-cart-sidebar-total {
  color: red;
  display: block;
  font-size: 10px;
  font-weight: bold;
  text-align: left;
  padding: 2px 5px;
  text-shadow: 0 1px 0 #fff; }

.map-popup {
  background: #fff;
  border: 1px solid #aaa;
  margin: 12px 0 0;
  position: absolute;
  -moz-box-shadow: 0 0 6px #2e2e2e;
  -webkit-box-shadow: 0 0 6px #2e2e2e;
  box-shadow: 0 0 6px #2e2e2e;
  text-align: left;
  width: 300px;
  z-index: 100; }

.map-popup-heading {
  background: #d9e5ee;
  border-bottom: 1px solid #2e2e2e;
  padding: 5px 30px 5px 10px;
  width: 260px; }

.map-popup-heading h2 {
  font-size: 16px;
  margin: 0;
  text-shadow: 0 1px 0 #f6f6f6;
  overflow: hidden;
  white-space: nowrap;
  word-wrap: break-word;
  text-align: left;
  text-overflow: ellipsis; }

.map-popup-arrow {
  background: url(../images/map_popup_arrow.gif) no-repeat;
  position: absolute;
  left: 50%;
  top: -10px;
  height: 10px;
  width: 19px; }

.map-popup-close {
  background: url(../images/btn_window_close.gif) no-repeat;
  display: block;
  position: absolute;
  top: 8px;
  right: 10px;
  height: 15px;
  width: 15px;
  text-indent: -9999em;
  -moz-box-shadow: 0 0 3px #999;
  -webkit-box-shadow: 0 0 3px #999;
  box-shadow: 0 0 3px #999;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px; }

.map-popup-content {
  border-top: 1px solid #eee;
  padding: 10px;
  overflow: hidden;
  text-align: left;
  width: 280px; }

.map-popup-checkout {
  display: inline;
  float: right;
  text-align: right; }

.map-popup-checkout span {
  display: block;
  padding-right: 30px; }

.map-popup-checkout .paypal-logo {
  margin: 0 0 5px; }

.map-popup-price .price-box,
.map-popup-price .price-box .special-price {
  margin: 0;
  padding: 0; }

.map-popup-price {
  margin: 5px 0 0; }

.map-popup-text {
  clear: right;
  margin: 0 10px;
  padding: 10px 0;
  text-align: left;
  word-wrap: break-word; }

.map-popup-only-text {
  border-top: 1px solid #2e2e2e; }

/* ======================================================================================= */
/* Remember Me Popup ===================================================================== */
.window-overlay {
  background: url(../images/window_overlay.png) repeat;
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 990; }

.remember-me label {
  float: none;
  margin: 0 6px; }

.remember-me-popup {
  background: #fff;
  border: 1px solid #2e2e2e;
  left: 50%;
  top: 50%;
  position: absolute;
  margin: -85px 0 0 -200px;
  width: 400px;
  text-align: left;
  -moz-box-shadow: 0 0 6px #2e2e2e;
  -webkit-box-shadow: 0 0 6px #2e2e2e;
  -box-shadow: 0 0 6px #2e2e2e;
  z-index: 1000; }

.remember-me-popup h3 {
  background: #d9e5ee;
  border-bottom: 1px solid #2e2e2e;
  font-size: 14px;
  padding: 5px 10px; }

.remember-me-popup .remember-me-popup-head {
  position: relative; }

.remember-me-popup .remember-me-popup-head .remember-me-popup-close {
  background: url(../images/btn_window_close.gif) no-repeat;
  display: block;
  position: absolute;
  top: 7px;
  right: 7px;
  height: 15px;
  width: 15px;
  text-indent: -9999em; }

.remember-me-popup .remember-me-popup-body {
  padding: 10px; }

.remember-me-popup .remember-me-popup-body a {
  display: inline-block;
  height: 19px;
  border: 1px solid #de5400;
  background: #f18200;
  padding: 0 8px;
  font: bold 12px/19px Arial, Helvetica, sans-serif;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  color: #fff; }

/* Remember Me Popup ===================================================================== */
/* 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 a {
  color: #1b2d3b; }

.page-sitemap .sitemap li {
  margin: 3px 0; }

.page-sitemap .sitemap li.level-0 {
  margin: 10px 0 0;
  font-weight: bold; }

.page-sitemap .sitemap li.level-0 a {
  color: #1e7ec8; }

/* End Sitemap ===================================================================== */
/* Captcha ================================================================================ */
.captcha-note {
  clear: left;
  padding-top: 5px; }

.captcha-image {
  float: left;
  display: inline;
  margin: 0;
  position: relative;
  width: 258px; }

.captcha-image .captcha-img {
  border: 1px solid #b6b6b6;
  vertical-align: bottom;
  width: 100%; }

.registered-users .captcha-image {
  margin: 0; }

.captcha-reload {
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px; }

.captcha-reload.refreshing {
  animation: rotate 1.5s infinite linear;
  -webkit-animation: rotate 1.5s infinite linear;
  -moz-animation: rotate 1.5s infinite linear; }

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0); }

  0% {
    -webkit-transform: rotate(-360deg); } }

@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0); }

  0% {
    -moz-transform: rotate(-360deg); } }

@keyframes rotate {
  0% {
    transform: rotate(0); }

  0% {
    transform: rotate(-360deg); } }

/* Remember Me Popup ===================================================================== */
.window-overlay {
  background: url(../images/window_overlay.png) repeat;
  background: rgba(0, 0, 0, 0.35);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 990; }

.remember-me label {
  float: none;
  margin: 0 6px; }

.remember-me-popup {
  background: #fff;
  border: 1px solid #ccc;
  left: 50%;
  top: 50%;
  position: absolute;
  margin: -85px 0 0 -200px;
  width: 400px;
  text-align: left;
  -moz-box-shadow: 0 0 6px #ccc;
  -webkit-box-shadow: 0 0 6px #ccc;
  -box-shadow: 0 0 6px #ccc;
  z-index: 1000; }

.remember-me-popup h3 {
  background: #d9e5ee;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  padding: 5px 10px; }

.remember-me-popup .remember-me-popup-head {
  position: relative; }

.remember-me-popup .remember-me-popup-head .remember-me-popup-close {
  background: url(../images/btn_window_close.gif) no-repeat;
  display: block;
  position: absolute;
  top: 7px;
  right: 7px;
  height: 15px;
  width: 15px;
  text-indent: -9999em; }

.remember-me-popup .remember-me-popup-body {
  padding: 10px; }

.remember-me-popup .remember-me-popup-body a {
  display: inline-block;
  height: 19px;
  border: 1px solid #de5400;
  background: #f18200;
  padding: 0 8px;
  font: bold 12px/19px Arial, Helvetica, sans-serif;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  color: #fff; }

/* Remember Me Popup ===================================================================== */
/* Product Tags */
.tags-list {
  display: block;
  font-size: 13px;
  border: 1px solid #c1c4bc;
  background: #f8f7f5;
  padding: 10px; }

.tags-list li {
  display: inline !important;
  margin: 0 4px 0 0; }

.tags-list li a {
  color: #1b2d3b; }

/* 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.55;
  background-position: 0 4px; }

.block-shipping-estimate .radio input[type="radio"] {
    float: none;
    margin-left: 0;
}
#product_tabs_additional_tabbed {display:none;}
#subscribe_newsletter { float:left;}
.productquestions-container .actions .productquestions-summary { height: 30px; margin-top: -10px; }
.productquestions-container .actions .productquestions-summary a {
    border: 1px solid transparent;
    background: #282828;
    color: white;
    padding: 0 30px;
    line-height: 38px;
    border-radius: 0;
    -moz-border-radius: 0;
    font-size: 15px;
    font-family: 'robotolight';
    text-transform: uppercase;
}
.product-view .product-shop .add-to-links a {padding-left: 0!important;}
.product-view .product-shop .add-to-links a:before { position: absolute; left: 105%!important;content: "\f004"; font-family: FontAwesome; background: none;}
.add-to-links .counter {
    padding-left: 71px;
    font-weight: bold;
    position: absolute;
    left: 26px;
    top: -8px;
    font-size: 10px;
    color: #e10505;
}
.product-shop #product-options-wrapper {
    position: relative !important;
}

#ei-slider ul.ei-slider-large li a img {
    width: 100% !important;
    margin-left: auto !important;
    height: 300px !important;
    margin-top: auto !important;
}
.ei-slider {
    height: 300px !important;
}
.featured-post {
    position: absolute;
    z-index: 9999999;
    padding-left: 10px;
    padding-right: 10px;
    color: #eee;
    background: rgba(0,0,0, .5);
    width: 98.5%;
    bottom: 4px;
    left: 2px;
}
/*.wordpress-index-index .post-entry, .wordpress-search-index .post-entry {*/
.post-entry {
    position: relative;
}
.featured-post h2 a {
    color: #fff !important;
    padding: 5px 0;
    text-decoration: none !important;
}
.featured-post a {
  color: #fff !important;
}

.featured-post h2 {
    line-height: 2em !important;
    margin-bottom: 0.3em !important;
}
.post-excerpt-list {
    margin-bottom: 0.3em !important;
}
.blogHome {
    margin-bottom: 50px !important;
    border-bottom: 0px !important;
}
.pager li>a, .pager li>span {
    border-radius: 0px !important;
}
.pager {
    text-align: right !important;
}
.pager li {
    text-align: center !important;
}
.cms-inspiration .bottom-info {
    display: none !important;
}