/* stylelint-disable no-duplicate-selectors */

/*
 * ############################################################################
 * Stylesheets combined
 * ############################################################################
 */

/* -----------------------------------------
   FOUNDATION PAGINATION OVERRIDES
----------------------------------------- */

ul.pagination li.current a,
ul.pagination li.current button {
    background-color: #999;
}

ul.pagination li.current a:hover,
ul.pagination li.current button:hover {
    background-color: #aaa;
}

/* -----------------------------------------
hide dotted line on Firefox
----------------------------------------- */
input::-moz-focus-inner {
    border: 0;
}

/* -----------------------------------------
   Responsive Table (Transpose Data)
----------------------------------------- */

/* medium down */
@media screen and (max-width: 64em) {
    .transpose_table thead {
        display: none;
    }

    .transpose_table tbody tr {
        display: block;
        width: 100%;
        border-width: 1px 0 0 0;
        margin-bottom: 10px;
        background: #f7f7f7;
    }

    .transpose_table tbody tr:first-child {
        border-top-width: 1px;
    }

    .transpose_table tr td {
        display: block;
        width: 100%;
        border-left-width: 1px;
        text-align: right;
        font-size: 0.75rem;
        font-weight: bold;
    }

    .transpose_table tr td::before {
        content: attr(data-title) ":";
        font-weight: bold;
        width: 100%;
        position: relative;
        float: left;
        margin: -3px 10px 0 0;
        text-align: left;
        font-size: 0.6875rem;
        line-height: 12px;
        color: #999;
    }

    html[dir="rtl"] .transpose_table tr td::before {
        float: right;
        text-align: right;
        margin: -3px 0 0 10px;
        line-height: 18px;
    }

    html[lang="ar"] .transpose_table tr td::before {
        font-size: 1rem;
    }

    /* /////// shop details fix page edges in mobile view - END /////////// */
    div.row.shop_details_catalog_item {
        margin: 10px;
    }

    /* /////// shop details fix page edges in mobile view - END /////////// */
}

/* -----------------------------------------
   DataTables (pagination, etc.)
----------------------------------------- */

div.dataTables_wrapper {
    margin-bottom: 1.25em;
}

div.dataTables_length label,
div.dataTables_filter label,
div.dataTables_info {
    color: #999;
    font-weight: normal;
}

div.dataTables_length label {
    float: left;
    text-align: left;
    margin-bottom: 0;
}

div.dataTables_length select {
    width: 75px;
    margin-bottom: 0;
}

div.dataTables_filter label {
    float: right;
    margin-bottom: 0;
}

div.dataTables_filter input {
    display: inline-block !important;
    width: auto !important;
    margin-bottom: 0;
}

div.dataTables_info {
    padding-top: 2px;
    font-size: 0.875em;
}

div.dataTables_paginate {
    float: right;
    margin: 0;
}

table.dataTable {
    clear: both;
    margin: 0.5em 0 !important;
    max-width: none !important;
    width: 100%;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    *cursor: hand;
}

table.dataTable thead .sorting {
    background: url("../images/datatables/sort_both.png") no-repeat center right;
}

html[dir="rtl"] table.dataTable thead .sorting {
    background: url("../images/datatables/sort_both.png") no-repeat center left;
}

table.dataTable thead .sorting_asc {
    background: url("../images/datatables/sort_asc.png") no-repeat center right;
}

html[dir="rtl"] table.dataTable thead .sorting_asc {
    background: url("../images/datatables/sort_asc.png") no-repeat center left;
}

table.dataTable thead .sorting_desc {
    background: url("../images/datatables/sort_desc.png") no-repeat center right;
}

html[dir="rtl"] table.dataTable thead .sorting_desc {
    background: url("../images/datatables/sort_desc.png") no-repeat center left;
}

table.dataTable thead .sorting_asc_disabled {
    background:
            url("../images/datatables/sort_asc_disabled.png") no-repeat center
            right;
}

html[dir="rtl"] table.dataTable thead .sorting_asc_disabled {
    background:
            url("../images/datatables/sort_asc_disabled.png") no-repeat center
            left;
}

table.dataTable thead .sorting_desc_disabled {
    background:
            url("../images/datatables/sort_desc_disabled.png") no-repeat
            center right;
}

html[dir="rtl"] table.dataTable thead .sorting_desc_disabled {
    background:
            url("../images/datatables/sort_desc_disabled.png") no-repeat
            center left;
}

table.dataTable th:active {
    outline: none;
}

/* Scrolling */
div.dataTables_scrollHead table {
    margin-bottom: 0 !important;
}

div.dataTables_scrollBody table {
    border-top: none;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

div.dataTables_scrollBody tbody tr:first-child th,
div.dataTables_scrollBody tbody tr:first-child td {
    border-top: none;
}

div.dataTables_scrollFoot table {
    margin-top: 0 !important;
    border-top: none;
}

/* -----------------------------------------
   DataTables Responsive Mode
----------------------------------------- */

table.dataTable.dtr-inline.collapsed tbody td:first-child,
table.dataTable.dtr-inline.collapsed tbody th:first-child {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

html[dir="rtl"] table.dataTable.dtr-inline.collapsed tbody td:first-child,
html[dir="rtl"] table.dataTable.dtr-inline.collapsed tbody th:first-child {
    padding-left: 12px;
    padding-right: 30px;
}

table.dataTable.dtr-inline.collapsed tbody td:first-child::before,
table.dataTable.dtr-inline.collapsed tbody th:first-child::before {
    top: 5px;
    left: 4px;
    height: 14px;

    /* width: 16px; */
    display: block;
    position: absolute;
    color: white;
    border: 2px solid white;
    border-radius: 16px;
    text-align: center;
    line-height: 12px;
    box-shadow: 0 0 3px #444;
    box-sizing: content-box;
    content: "+";
    background-color: #888;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 1px 4px 0;
}

html[dir="rtl"] table.dataTable.dtr-inline.collapsed tbody td:first-child::before,
html[dir="rtl"] table.dataTable.dtr-inline.collapsed tbody th:first-child::before {
    left: auto;
    right: 4px;
}

table.dataTable.dtr-inline.collapsed tbody td:first-child.dataTables_empty::before,
table.dataTable.dtr-inline.collapsed tbody th:first-child.dataTables_empty::before {
    display: none;
}

table.dataTable.dtr-inline.collapsed tbody tr.parent td:first-child::before,
table.dataTable.dtr-inline.collapsed tbody tr.parent th:first-child::before {
    content: "-";
    background-color: #ccc;
}

table.dataTable.dtr-inline.collapsed tbody tr.child td::before {
    display: none;
}

table.dataTable.dtr-column tbody td.control,
table.dataTable.dtr-column tbody th.control {
    position: relative;
    cursor: pointer;
}

table.dataTable.dtr-column tbody td.control::before,
table.dataTable.dtr-column tbody th.control::before {
    top: 50%;
    left: 50%;
    height: 16px;
    width: 16px;
    margin-top: -10px;
    margin-left: -10px;
    display: block;
    position: absolute;
    color: white;
    border: 2px solid white;
    border-radius: 16px;
    text-align: center;
    line-height: 14px;
    box-shadow: 0 0 3px #444;
    box-sizing: content-box;
    content: "+";
    background-color: #31b131;
}

table.dataTable.dtr-column tbody tr.parent td.control::before,
table.dataTable.dtr-column tbody tr.parent th.control::before {
    content: "-";
    background-color: #d33333;
}

table.dataTable tr.child {
    padding: 0.5em 1em;
}

table.dataTable tr.child:hover {
    background: transparent !important;
}

table.dataTable tr.child ul {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

table.dataTable tr.child ul li {
    border-bottom: 1px solid #efefef;
    padding: 5px;

    /* white-space: nowrap; */

    /* background: cyan; */
}

/*
 {
  padding-top: 0;
}

 {
  border-bottom: none;
}

 {
  font-weight: bold;
}
*/

/* -----------------------------------------
   DataTables Responsive Mode - SUPLIMENTAL
----------------------------------------- */

table.paginate_table {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
}

table.dataTable tr.child td.child {
    padding: 0 !important;
}

table.dataTable tr.child span {
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 0.75rem;
    box-sizing: border-box;
    display: block;
    line-height: 16px;

    /* white-space: nowrap; */
    text-align: right;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    font-weight: bold;
    padding: 0 6px;
}

table.dataTable tr.child span.dtr-title {
    font-weight: bold;
    text-align: left;
    font-size: 0.6875rem;
    color: #999;
}

html[dir="rtl"] table.dataTable tr.child span.dtr-title {
    text-align: right;
}

/* Hide pagination controls on Large screens (desktop) */
@media screen and (min-width: 64em) {
    .dataTables_length {
        display: none;
    }

    .dataTables_paginate {
        display: none;
    }
}

/*
 * TableTools styles
 */
.table tbody tr.active td,
.table tbody tr.active th {
    background-color: #08c;
    color: white;
}

.table tbody tr.active:hover td,
.table tbody tr.active:hover th {
    background-color: #0075b0 !important;
}

.table-striped tbody tr.active:nth-child(odd) td,
.table-striped tbody tr.active:nth-child(odd) th {
    background-color: #017ebc;
}

table.DTTT_selectable tbody tr {
    cursor: pointer;
    *cursor: hand;
}

div.DTTT {
    float: left;
    margin-bottom: 0;
}

div.DTTT .button:hover {
    text-decoration: none !important;
}

ul.DTTT_dropdown.dropdown-menu li {
    position: relative;
}

ul.DTTT_dropdown.dropdown-menu li:hover a {
    background-color: #08c;
    color: white !important;
}

/* TableTools information display */
.DTTT_print_info {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 150px;
    margin-left: -200px;
    margin-top: -75px;
    text-align: center;
    color: #333;
    padding: 10px 30px;
    background: #fff; /* Old browsers */
    background:
            -webkit-linear-gradient(
                    top,
                    #fff 0%,
                    #f3f3f3 89%,
                    #f9f9f9 100%
            ); /* Chrome10+,Safari5.1+ */
    background:
            -moz-linear-gradient(
                    0deg,
                    #fff 0%,
                    #f3f3f3 89%,
                    #f9f9f9 100%
            ); /* FF3.6+ */
    background:
            -ms-linear-gradient(
                    0deg,
                    #fff 0%,
                    #f3f3f3 89%,
                    #f9f9f9 100%
            ); /* IE10+ */
    background:
            -o-linear-gradient(
                    0deg,
                    #fff 0%,
                    #f3f3f3 89%,
                    #f9f9f9 100%
            ); /* Opera 11.10+ */
    background:
            linear-gradient(
                    0deg,
                    #fff 0%,
                    #f3f3f3 89%,
                    #f9f9f9 100%
            ); /* W3C */
    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#ffffff", endColorstr="#f9f9f9", GradientType=0); /* IE6-9 */
    opacity: 0.95;
    border: 1px solid black;
    border: 1px solid rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
}

div.DTTT_print_info h6 {
    font-weight: normal;
    font-size: 1.75rem;
    line-height: 28px;
    margin: 1em;
}

div.DTTT_print_info p {
    font-size: 0.875rem;
    line-height: 20px;
}

/*
 * FixedColumns styles
 */
div.DTFC_LeftHeadWrapper table,
div.DTFC_LeftFootWrapper table,
table.DTFC_Cloned tr.even {
    background-color: white;
}

div.DTFC_LeftHeadWrapper table {
    margin-bottom: 0 !important;
}

div.DTFC_LeftBodyWrapper table {
    border-top: none;
    margin-bottom: 0 !important;
}

div.DTFC_LeftBodyWrapper tbody tr:first-child th,
div.DTFC_LeftBodyWrapper tbody tr:first-child td {
    border-top: none;
}

div.DTFC_LeftFootWrapper table {
    border-top: none;
}

/* -----------------------------------------
   CS-SELECT BOX
----------------------------------------- */

/* Default custom select styles */
div.cs-select {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    text-align: left;
    background: #fff;
    z-index: 100;
    width: 100%;
    max-width: 500px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html[dir="rtl"] div.cs-select {
    text-align: right;
}

div.cs-select:focus {
    outline: none; /* For better accessibility add a style for this in your skin */
}

.cs-select select {
    display: none;
}

.cs-select span {
    display: block;
    position: relative;
    cursor: pointer;
    padding: 1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Placeholder and selected option */
.cs-select > span {
    padding-right: 3em;
}

html[dir="rtl"] .cs-select > span {
    padding-right: 0;
    padding-left: 3em;
}

.cs-select > span::after,
.cs-select .cs-selected span::after {
    speak: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cs-select > span::after {
    content: "\25BE";
    right: 1em;
}

html[dir="rtl"] .cs-select > span::after {
    right: auto;
    left: 1em;
}

.cs-select .cs-selected span::after {
    content: "\2713";
    margin-left: 1em;
}

html[dir="rtl"] .cs-select .cs-selected span::after {
    margin-left: 0;
    margin-right: 1em;
}

.cs-select.cs-active > span::after {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

div.cs-active {
    z-index: 200;
}

/* Options */
.cs-select .cs-options {
    position: absolute;
    overflow: hidden;
    width: 100%;
    background: #fff;
    visibility: hidden;
}

.cs-select.cs-active .cs-options {
    visibility: visible;
}

.cs-select ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.cs-select ul span {
    padding: 1em;
}

.cs-select ul li.cs-focus span {
    background-color: #ddd;
}

/* Optgroup and optgroup label */
.cs-select li.cs-optgroup ul {
    padding-left: 1em;
}

.cs-select li.cs-optgroup > span {
    cursor: default;
}

/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 *
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 *
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1104;
    display: none;
}

#fancybox-loading div {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 480px;
    background: url("../images/fancybox/fancybox.png");
}

#fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    display: none;
}

#fancybox-tmp {
    padding: 0;
    margin: 0;
    border: 0;
    overflow: auto;
    display: none;
}

#fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    z-index: 1101;
    outline: none;
    display: none;
    box-sizing: content-box;
}

#fancybox-outer {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 40px;
    box-sizing: content-box;
}

#fancybox-content {
    width: 0;
    padding: 0;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1102;
    border: 0 solid #fff;
    height: auto !important;
    text-align: center;
    overflow: hidden;
}

#fancybox-hide-sel-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1101;
}

#fancybox-close {
    position: absolute;
    width: 15px;
    height: 15px;
    background: transparent url("../images/fancybox/close_modal.png") right top;
    cursor: pointer;
    z-index: 1103;
    display: none;
    top: 10px;
    right: 10px;
}

#fancybox-error {
    color: #444;
    font: normal 0.75rem/1.25rem Arial, sans-serif;
    padding: 14px;
    margin: 0;
}

#fancybox-img {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    line-height: 0;
    vertical-align: top;
}

#fancybox-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

#fancybox-left,
#fancybox-right {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 35%;
    cursor: pointer;
    outline: none;
    background: transparent url("../images/fancybox/blank.gif");
    z-index: 1102;
    display: none;
}

#fancybox-left {
    left: 0;
}

#fancybox-right {
    right: 0;
}

#fancybox-left-ico,
#fancybox-right-ico {
    position: absolute;
    top: 50%;
    left: -9999px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    cursor: pointer;
    z-index: 1102;
    display: block;
}

#fancybox-left-ico {
    background-image: url("../images/fancybox/fancybox.png");
    background-position: -40px -30px;
}

#fancybox-right-ico {
    background-image: url("../images/fancybox/fancybox.png");
    background-position: -40px -60px;
}

#fancybox-left:hover,
#fancybox-right:hover {
    visibility: visible;

    /* IE6 */
}

#fancybox-left:hover span {
    left: 20px;
}

#fancybox-right:hover span {
    left: auto;
    right: 20px;
}

.fancybox-bg {
    position: absolute;
    padding: 0;
    margin: 0;
    border: 0;
    width: 20px;
    height: 20px;
    z-index: 1001;
}

#fancybox-bg-n {
    top: -20px;
    left: 0;
    width: 100%;
    background-image: url("../images/fancybox/fancybox-x.png");
}

#fancybox-bg-ne {
    top: -20px;
    right: -20px;
    background-image: url("../images/fancybox/fancybox.png");
    background-position: -40px -162px;
}

#fancybox-bg-e {
    top: 0;
    right: -20px;
    height: 100%;
    background-image: url("../images/fancybox/fancybox-y.png");
    background-position: -20px 0;
}

#fancybox-bg-se {
    bottom: -20px;
    right: -20px;
    background-image: url("../images/fancybox/fancybox.png");
    background-position: -40px -182px;
}

#fancybox-bg-s {
    bottom: -20px;
    left: 0;
    width: 100%;
    background-image: url("../images/fancybox/fancybox-x.png");
    background-position: 0 -20px;
}

#fancybox-bg-sw {
    bottom: -20px;
    left: -20px;
    background-image: url("../images/fancybox/fancybox.png");
    background-position: -40px -142px;
}

#fancybox-bg-w {
    top: 0;
    left: -20px;
    height: 100%;
    background-image: url("../images/fancybox/fancybox-y.png");
}

#fancybox-bg-nw {
    top: -20px;
    left: -20px;
    background-image: url("../images/fancybox/fancybox.png");
    background-position: -40px -122px;
}

#fancybox-title {
    font-family: Helvetica, sans-serif;
    font-size: 0.75rem;
    z-index: 1102;
}

.fancybox-title-inside {
    padding-bottom: 10px;
    text-align: center;
    color: #333;
    background: #fff;
    position: relative;
}

.fancybox-title-outside {
    padding-top: 10px;
    color: #fff;
}

.fancybox-title-over {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    text-align: left;
}

#fancybox-title-over {
    padding: 10px;
    background-image: url("../images/fancybox/fancy_title_over.png");
    display: block;
}

.fancybox-title-float {
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 32px;
}

#fancybox-title-float-wrap {
    border: none;
    border-collapse: collapse;
    width: auto;
}

#fancybox-title-float-wrap td {
    border: none;
    white-space: nowrap;
}

#fancybox-title-float-left {
    padding: 0 0 0 15px;
    background: url("../images/fancybox/fancybox.png") -40px -90px no-repeat;
}

#fancybox-title-float-main {
    color: #fff;
    line-height: 29px;
    font-weight: bold;
    padding: 0 0 3px 0;
    background: url("../images/fancybox/fancybox-x.png") 0 -40px;
}

#fancybox-title-float-right {
    padding: 0 0 0 15px;
    background: url("../images/fancybox/fancybox.png") -55px -90px no-repeat;
}

/* IE6 */
.fancybox-ie6 #fancybox-close {
    background: transparent;
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_close.png", sizingMethod="scale");
}

.fancybox-ie6 #fancybox-left-ico {
    background: transparent;
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_nav_left.png", sizingMethod="scale");
}

.fancybox-ie6 #fancybox-right-ico {
    background: transparent;
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_nav_right.png", sizingMethod="scale");
}

.fancybox-ie6 #fancybox-title-over {
    background: transparent;
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_title_over.png", sizingMethod="scale");
    zoom: 1;
}

.fancybox-ie6 #fancybox-title-float-left {
    background: transparent;
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_title_left.png", sizingMethod="scale");
}

.fancybox-ie6 #fancybox-title-float-main {
    background: transparent;
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_title_main.png", sizingMethod="scale");
}

.fancybox-ie6 #fancybox-title-float-right {
    background: transparent;
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_title_right.png", sizingMethod="scale");
}

.fancybox-ie6 #fancybox-bg-w,
.fancybox-ie6 #fancybox-bg-e,
.fancybox-ie6 #fancybox-left,
.fancybox-ie6 #fancybox-right,
#fancybox-hide-sel-frame {
    height: expression(this.parentNode.clientHeight + "px");
}

#fancybox-loading.fancybox-ie6 {
    position: absolute;
    margin-top: 0;
    top:
            expression(
      (
        -20 + (
          document.documentElement.clientHeight ?
          document.documentElement.clientHeight/2:
          document.body.clientHeight/2
        ) + (ignoreMe = document.documentElement.scrollTop ?
        document.documentElement.scrollTop: document.body.scrollTop)
      ) + "px"
    );
}

#fancybox-loading.fancybox-ie6 div {
    background: transparent;
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_loading.png", sizingMethod="scale");
}

/* IE6, IE7, IE8 */
.fancybox-ie .fancybox-bg {
    background: transparent !important;
}

.fancybox-ie #fancybox-bg-n {
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_shadow_n.png", sizingMethod="scale");
}

.fancybox-ie #fancybox-bg-ne {
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_shadow_ne.png", sizingMethod="scale");
}

.fancybox-ie #fancybox-bg-e {
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_shadow_e.png", sizingMethod="scale");
}

.fancybox-ie #fancybox-bg-se {
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_shadow_se.png", sizingMethod="scale");
}

.fancybox-ie #fancybox-bg-s {
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_shadow_s.png", sizingMethod="scale");
}

.fancybox-ie #fancybox-bg-sw {
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_shadow_sw.png", sizingMethod="scale");
}

.fancybox-ie #fancybox-bg-w {
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_shadow_w.png", sizingMethod="scale");
}

.fancybox-ie #fancybox-bg-nw {
    filter: progid:dximagetransform.microsoft.alphaimageloader(src="/rewards/theme/phoenix/images/fancybox/fancy_shadow_nw.png", sizingMethod="scale");
}

.tipsy {
    padding: 5px;
    font-size: 0.625rem;
    position: absolute;
    margin-top: 5px;
    z-index: 1000;
}

.tipsy-inner {
    z-index: 1;
    padding: 5px 8px 4px 8px;
    background-color: white;
    color: #666;
    font-weight: bold;
    max-width: 300px;
    text-align: left;
    border: 1px solid #d1d1d1;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.tipsy-arrow {
    position: absolute;
    z-index: 2;
    background: url("../images/tooltip_arrow.png") no-repeat top left;
    width: 13px;
    height: 8px;
}

.tipsy-n .tipsy-arrow {
    top: -2px;
    left: 50%;
    margin-left: -4px;
}

.tipsy-nw .tipsy-arrow {
    top: 0;
    left: 10px;
}

.tipsy-ne .tipsy-arrow {
    top: 0;
    right: 10px;
}

.tipsy-s .tipsy-arrow {
    bottom: 1px;
    left: 50%;
    margin-left: -4px;
    background-position: bottom left;
}

.tipsy-sw .tipsy-arrow {
    bottom: 0;
    left: 10px;
    background-position: bottom left;
}

.tipsy-se .tipsy-arrow {
    bottom: 0;
    right: 10px;
    background-position: bottom left;
}

.tipsy-e .tipsy-arrow {
    top: 50%;
    margin-top: -4px;
    right: 0;
    width: 13px;
    height: 8px;
    background-position: top right;
}

.tipsy-w .tipsy-arrow {
    top: 50%;
    margin-top: -4px;
    left: 0;
    width: 13px;
    height: 8px;
}

.theme-default .nivoSlider {
    position: relative;
    background: white url("../images/nivo_slider/loading.gif") no-repeat 50% 50%;
    -webkit-box-shadow: 0 1px 5px 0 #4a4a4a;
    -moz-box-shadow: 0 1px 5px 0 #4a4a4a;
    box-shadow: 0 1px 5px 0 #4a4a4a;
    width: 100%;
    height: auto !important;
    max-height: 491px;
}

.theme-default .nivoSlider img {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: auto !important;
}

.theme-default .nivoSlider a {
    border: 0;
    display: block;
}

.theme-default .nivo-controlNav {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: -42px;
    margin-left: -40px;

    /* Tweak this to center bullets */
}

.theme-default .nivo-controlNav a {
    display: block;
    width: 22px;
    height: 22px;
    background: url("../images/nivo_slider/bullets.png") no-repeat;
    text-indent: -9999px;
    border: 0;
    margin-right: 3px;
    float: left;
}

.theme-default .nivo-controlNav a.active {
    background-position: 0 -22px;
}

.theme-default .nivo-directionNav a {
    display: block;
    width: 50px;
    height: 100%;
    background: url("../images/nivo_slider/arrows.png") no-repeat;
    text-indent: -9999px;
    border: 0;
}

.theme-default a.nivo-nextNav:hover,
.theme-default a.nivo-nextNav:focus {
    outline: none !important;
    background-color: #000;
    top: 0%;
    background-position: center right;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.theme-default a.nivo-prevNav:hover,
.theme-default a.nivo-prevNav:focus {
    outline: none !important;
    background-color: #000;
    top: 0%;
    background-position: center left;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.theme-default a.nivo-nextNav {
    background-position: -50px 0;
}

.theme-default .nivo-caption {
    font-family: Helvetica, Arial, sans-serif;
}

.theme-default .nivo-caption a {
    color: #fff;
    border-bottom: 1px dotted #fff;
}

.theme-default .nivo-caption a:hover {
    color: #fff;
}

/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com

 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

/* The Nivo Slider styles */
.nivoSlider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.nivoSlider img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
}

.nivo-main-image {
    display: block !important;
    position: relative !important;
    width: 100% !important;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    z-index: 6;
    display: none;
    background: white;
    filter: alpha(opacity=0);
    opacity: 0;
}

/* The slices and boxes in the Slider */
.nivo-slice {
    display: block;
    position: absolute;
    z-index: 5;
    height: 100%;
    top: 0;
}

.nivo-box {
    display: block;
    position: absolute;
    z-index: 5;
    overflow: hidden;
}

.nivo-box img {
    display: block;
}

/* Caption styles */
.nivo-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #000;
    color: #fff;
    width: 100%;
    z-index: 8;
    padding: 5px 10px;
    opacity: 0.8;
    overflow: hidden;
    display: none;
    -moz-opacity: 0.8;
    filter: alpha(opacity=8);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box; /* Firefox, other Gecko */
    box-sizing: border-box; /* Opera/IE 8+ */
}

.nivo-caption p {
    padding: 5px;
    margin: 0;
}

.nivo-caption a {
    display: inline !important;
}

.nivo-html-caption {
    display: none;
}

/* Direction nav styles (e.g. Next & Prev) */

.nivo-directionNav a {
    position: absolute;
    top: 45%;
    z-index: 9;
    cursor: pointer;
}

.nivo-prevNav {
    left: 0;
}

.nivo-nextNav {
    right: 0;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
    text-align: center;
    padding: 15px 0;
}

.nivo-controlNav a {
    cursor: pointer;
}

.nivo-controlNav a.active {
    font-weight: bold;
}

/*
 * ============================================================================
 * CORE: Headings
 * ============================================================================
 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Helvetica, Arial, sans-serif;
    color: #3c3c3c;
}

h1 {
    font-size: 1.75rem;
    line-height: 28px;
}

h2 {
    font-size: 1.5rem;
    line-height: 24px;
}

h3 {
    font-size: 1.375rem;
    line-height: 22px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ccc;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
}

h4 {
    font-size: 1.125rem;
    line-height: 18px;
}

h5 {
    font-size: 1rem;
    line-height: 16px;
}

h6 {
    font-size: 0.875rem;
    line-height: 14px;
}

@media screen and (max-width: 40em) {
    h1 {
        font-size: 1.375rem;
    }

    h2 {
        font-size: 1.125rem;
    }

    h3 {
        font-size: 1rem;
    }

    h4 {
        font-size: 0.75rem;
    }

    h5 {
        font-size: 0.75rem;
    }

    h6 {
        font-size: 0.75rem;
    }
}

/*
 * ============================================================================
 * CORE: Helpers
 * ============================================================================
 */

.open_mobile_menu,
.responsive_nav,
.social_links,
.copyright_nav,
.nav_register_header,
.nav_see_all,
.nav_mobile,
.register_cta,
.vouchers_by_sms_responsive,
.tab_container_responsive,
.status_info_responsive,
.see_all_shop_responsive,
.pagination_responsive,
.parceiros_responsive,
.button_icon_voltar_responsive {
    display: none;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #3c3c3c;
    background: rgb(238, 238, 238); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(238, 238, 238, 1) 150px,
                    rgba(221, 221, 221, 1) 300px
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(150px, rgba(238, 238, 238, 1)),
                    color-stop(150px, rgba(221, 221, 221, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(238, 238, 238, 1) 150px,
                    rgba(221, 221, 221, 1) 300px
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(238, 238, 238, 1) 150px,
                    rgba(221, 221, 221, 1) 300px
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(238, 238, 238, 1) 150px,
                    rgba(221, 221, 221, 1) 300px
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(238, 238, 238, 1) 150px,
                    rgba(221, 221, 221, 1) 300px
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#eeeeee", endColorstr="#dddddd", GradientType=0); /* IE6-9 */
}

strong {
    font-weight: bold;
}

a {
    color: #3c3c3c;
    outline: 0;
}

a:hover {
    color: #48a5d8;
}

.page_content a {
    color: #197eb6;
}

figure {
    margin: 0;
}

.container {
    /* width: 960px; */

    /* max-width: 960px; */
    margin: 0 auto;
    overflow: hidden;
    *zoom: 1;
    position: relative;
}

.content_margin {
    width: 960px;
    margin: 0 auto;
}

.align_left {
    float: left;
}

.align_right,
.row .align_right {
    float: right;
}

/*
 * ============================================================================
 * SHARED: Offer Tiles / Offer Cards
 * ============================================================================
 */



.card{
			display: block;
			background: #FFFFFF;
			border-radius: 5px;
			position: relative;
			overflow: hidden;
			box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.3);
			text-align: center;}
			.card img{
				min-width: 100%;
				max-height: 100%;
				text-align: center;
				margin: 0px;}
			.card .caption{
				display: none;
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background: rgba(0,0,0,0.5);
				color: #FFFFFF;
				padding: 10px;
				text-align: left;
				text-shadow: 0 1px 1px #333;
				border-radius: 5px;
				}
				html[dir=rtl] .card .caption{
					text-align: right; }
				.card:hover .caption{
					display: block;}



.card:hover .caption {
    display: block;
}

@media screen and (max-width: 40em) {
    .card .caption {
        display: block;
        background: #eee;
        box-shadow: 0 1px 0 #ccc inset;
        position: relative;
        float: left;
        height: 30px;
        font-size: 0.8125rem;
        color: #888;
        text-shadow: 0 1px 0 #fff;
        border-radius: 0;
        font-weight: bold;
        line-height: 15px;
        padding-bottom: 0;
    }

    .card .caption span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .card .item_price {
        box-shadow: none;
    }
}

/*
 * ============================================================================
 * CORE: Forms

 * ============================================================================
 */

.item_row label > span.hide {
    display: none;
}

label > span:first-child {
    text-transform: uppercase;
    color: #777;
    margin: 0 0 5px 0;
    display: inline-block;
    width: 100%;
    min-height: 10px;
}

label > .value {
    color: #197eb6;
    font-size: 1rem;
    font-weight: bold;
    line-height: 18px;
    padding: 10px 0 5px 0;
    word-wrap: break-word;
    word-break: break-word;
}

label > .value.currency {
    color: #28c028;
}

label > .value.centered {
    text-align: center;
}

label > .value.default {
    color: inherit !important;
}

label .label {
    background: none;
    padding: 0;
}

#shop_offers input[type="text"],
#filter_catalog_heirarchy select {
    width: 100%;
    background-color: #fff;
    margin: 0 0 10px;
    border-radius: 5px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

input[type="checkbox"],
input[type="radio"] {
    float: left;
    display: inline-block;
    width: auto;
}

html[dir="rtl"] input[type="checkbox"],
html[dir="rtl"] input[type="radio"] {
    float: right;
}

input[type="checkbox"] + span,
input[type="radio"] + span,
input[type="checkbox"] + label > span,
input[type="radio"] + label > span {
    float: left;
    display: inline-block;
    padding: 0 0 0 10px;
    box-sizing: border-box;
    width: 89%;
    line-height: 1.3em;
    text-transform: none;
    color: inherit;
    font-size: inherit;
    white-space: normal;
    text-align: left;
}

html[dir="rtl"] input[type="checkbox"] + span,
html[dir="rtl"] input[type="radio"] + span,
html[dir="rtl"] input[type="checkbox"] + label > span,
html[dir="rtl"] input[type="radio"] + label > span {
    float: right;
    padding: 0 10px 0 0;
    text-align: right;
}

.twoUp input[type="checkbox"] + span,
.twoUp input[type="radio"] + span {
    width: 80%;
    box-sizing: border-box;
}

button,
button[type="submit"],
a.button,
.twoLine,
button.disabled,
button[disabled],
.button.disabled,
.button[disabled] {
    cursor: pointer;
    border-radius: 5px;
    color: #333;
    background: #ccc;
    box-shadow: none;
    font-weight: bold;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    width: 100%;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 0 !important;
    font-size: 0.75rem;
    margin: 0 0 10px 0;
    border-color: transparent;
    border-style: solid;
    border-width: 0;
    box-sizing: border-box;
}

button:focus,
button:hover,
button[type="submit"]:focus,
button[type="submit"]:hover,
a.button:focus,
a.button:hover {
    color: #333;
    background-color: #ccc;
}

button.primary,
button.primary[type="submit"],
a.button.primary {
    color: #fff;
    background: #197eb6;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

button > span,
button[type="submit"] > span,
button[disabled]:hover > span,
a.button > span,
.twoLine button {
    padding: 10px 20px;
    margin: 1px;
    display: block;
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 1px 0 rgba(0, 0, 0, 0.2);
    background:
            -moz-linear-gradient(
                    top,
                    rgba(255, 255, 255, 0.5) 0%,
                    rgba(255, 255, 255, 0) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, rgba(255, 255, 255, 0.5)),
                    color-stop(100%, rgba(255, 255, 255, 0))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(255, 255, 255, 0.5) 0%,
                    rgba(255, 255, 255, 0) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(255, 255, 255, 0.5) 0%,
                    rgba(255, 255, 255, 0) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(255, 255, 255, 0.5) 0%,
                    rgba(255, 255, 255, 0) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(255, 255, 255, 0.5) 0%,
                    rgba(255, 255, 255, 0) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#ffffff", endColorstr="#00ffffff", GradientType=0); /* IE6-9 */
    line-height: 13px;
}

html[lang="ar"] button > span,
html[lang="ar"] button[type="submit"] > span,
html[lang="ar"] button[disabled]:hover > span,
html[lang="ar"] a.button > span,
html[lang="ar"] .twoLine button {
    font-size: 1rem;
}

button:hover > span,
button[type="submit"]:hover > span,
a.button:hover > span,
.twoLine button:hover {
    background:
            -moz-linear-gradient(
                    top,
                    rgba(255, 255, 255, 0.7) 0%,
                    rgba(255, 255, 255, 0.2) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, rgba(255, 255, 255, 0.7)),
                    color-stop(100%, rgba(255, 255, 255, 0.2))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(255, 255, 255, 0.7) 0%,
                    rgba(255, 255, 255, 0.2) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(255, 255, 255, 0.7) 0%,
                    rgba(255, 255, 255, 0.2) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(255, 255, 255, 0.7) 0%,
                    rgba(255, 255, 255, 0.2) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(255, 255, 255, 0.7) 0%,
                    rgba(255, 255, 255, 0.2) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#ffffff", endColorstr="#00ffffff", GradientType=0); /* IE6-9 */
}

button.primary:hover > span,
button[type="submit"].primary:hover > span,
a.button.primary:hover > span {
    color: #fff;
}

button.disabled:hover,
button.disabled:focus,
button[disabled]:hover,
button[disabled]:focus,
.button.disabled:hover,
.button.disabled:focus,
.button[disabled]:hover,
.button[disabled]:focus {
    background: #ccc;
    color: #333;
    filter: none;
}

button:disabled > span,
button:disabled:hover > span,
a.button.disabled:hover > span {
    box-shadow: none;
}

.twoLine button {
    height: 54px;
    box-sizing: border-box;
}

.twoLine button span,
.twoLine button span:hover,
.twoLine button:hover span,
.twoLine button:hover span:hover {
    padding: 0;
    background: none;
    box-shadow: none;
    border: 0;
    height: auto;
    filter: none;
}

input[type="checkbox"] {
    margin: 0;
    padding: 0;
}

textarea {
    resize: none;
}

.error_message,
.success_message {
    font-family: "DIN Next W01 Regular", "trebuchet MS", arial, sans-serif;
    background: #f7f7f7;
    padding: 10px 0;
    text-align: center;
    font-size: 1.125rem;
}

.error_message {
    color: #c00;
}

.success_message {
    color: #7bcefc;
}

p.success,
ul.success,
ol.success {
    margin: 0 auto 10px;
    padding: 20px;
    border: 1px dotted #679b52;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    background: #eafce2;
    float: left;
    color: #679b52;
    font-size: 12px;
}

html[lang="ar"] p.success,
html[lang="ar"] ul.success,
html[lang="ar"] ol.success {
    font-size: 1rem;
}

ul.success,
ol.success {
    padding: 20px 20px 20px 40px;
    text-align: left;
}

html[dir="rtl"] ul.success,
html[dir="rtl"] ol.success {
    padding: 20px 40px 20px 20px;
    text-align: right;
}

p.error,
ul.error,
ol.error {
    color: #c00;
    margin: 0 auto 10px;
    padding: 20px;
    border: 1px dotted #f00;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    background: #ffeaea;
    float: left;
    font-size: 12px;
}

html[lang="ar"] p.error,
html[lang="ar"] ul.error,
html[lang="ar"] ol.error {
    font-size: 1rem;
}

ul.error,
ol.error {
    padding: 20px 20px 20px 40px;
    text-align: left;
}

html[dir="rtl"] ul.error,
html[dir="rtl"] ol.error {
    padding: 20px 40px 20px 20px;
    text-align: right;
}

p.message,
ul.message,
ol.message {
    margin: 0 auto 10px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    float: left;
    color: #868620;
    background: #ffffd2;
    border: 1px dotted #868620;
    padding: 20px;
    font-size: 12px;
}

html[lang="ar"] p.message,
html[lang="ar"] ul.message,
html[lang="ar"] ol.message {
    font-size: 1rem;
}

ul.message,
ol.message {
    padding: 20px 20px 20px 40px;
    text-align: left;
}

html[dir="rtl"] ul.message,
html[dir="rtl"] ol.message {
    padding: 20px 40px 20px 20px;
    text-align: right;
}

@media screen and (max-width: 40em) {
    p.success,
    p.error,
    p.message {
        padding: 10px;
    }

    ul.success,
    ol.success,
    ul.error,
    ol.error,
    ul.message,
    ol.message {
        padding: 10px 10px 10px 30px;
    }
}

label.error span {
    color: #c00;
}

label.error input[type="text"],
label.error input[type="password"],
label.error input[type="email"],
label.error select {
    color: #c00;
    border: 1px solid #c00;
    box-shadow: 0 0 10px #f6a8a8 inset;
    background-color: #ffeaea;
}

small.error {
    display: none;
}

label.error + small.error {
    padding: 5px 10px;
    color: #fff;
    background-color: #ee6565;
    display: block;
    margin: -10px 0 10px 0;
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: #c00;
    font-size: 0.6875rem;
}

html[lang="ar"] label.error + small.error {
    font-size: 1rem;
}

q {
    margin-left: 5px;
}

html[lang="ar"] label {
    font-size: 1rem;
}

.button_icon_left,
.button_icon_left[type="submit"] {
    -moz-transition-property: background 0.1 linear;
    -webkit-transition-property: background 0.1 linear;
    -o-transition-property: background 0.1 linear;
    transition-property: background 0.1 linear;
    -moz-transition-duration: 1s;
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    font-family: "DIN Next W01 Regular", "trebuchet MS", arial, sans-serif;
    display: inline-block;
    background: #333;
    cursor: pointer;
    border: 0;
    font-size: 0.8125rem;
    color: #fff;
    height: 25px;
    line-height: 27px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding: 0 6px;
    overflow: visible;

    /* removes extra side padding in IE */
    padding-left: 26px !important;
    background: #ccc url("../images/sprite_arrows_all.png") left -63px no-repeat;
}

html[dir="rtl"] .button_icon_left,
html[dir="rtl"] .button_icon_left[type="submit"] {
    background-position: left -425px;
}

.button_icon_left:hover,
.button_icon_left[type="submit"]:hover {
    background-color: #787878;
}

.button_icon_voltar {
    -moz-transition-property: background 0.1 linear;
    -webkit-transition-property: background 0.1 linear;
    -o-transition-property: background 0.1 linear;
    transition-property: background 0.1 linear;
    -moz-transition-duration: 1s;
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    font-family: "DIN Next W01 Regular", "trebuchet MS", arial, sans-serif;
    display: inline-block;
    background: #333;
    cursor: pointer;
    border: 0;
    font-size: 0.8125rem;
    color: #fff;
    height: 25px;
    line-height: 27px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding: 0 6px;
    overflow: visible;

    /* removes extra side padding in IE */
    padding-left: 26px !important;
    background: #333 url("../images/sprite_arrows_all.png") left -63px no-repeat;
    background-position: left -426px;
}

.button_icon_voltar:hover {
    background-color: #787878;
}

.button_icon_right {
    -moz-transition-property: background 0.1 linear;
    -webkit-transition-property: background 0.1 linear;
    -o-transition-property: background 0.1 linear;
    transition-property: background 0.1 linear;
    -moz-transition-duration: 1s;
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    background: #333;
    cursor: pointer;
    border: 0;
    font-size: 0.8125rem;
    color: #fff;
    height: 25px;
    line-height: 27px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding: 0 6px;
    overflow: visible;

    /* removes extra side padding in IE */
    padding-right: 26px;
    background: #333 url("../images/sprite_arrows_all.png") right -63px no-repeat;
}

.button_icon_right:hover {
    background-color: #787878;
}

.button_light_icon_left {
    -moz-transition-property: background 0.1 linear;
    -webkit-transition-property: background 0.1 linear;
    -o-transition-property: background 0.1 linear;
    transition-property: background 0.1 linear;
    -moz-transition-duration: 1s;
    -webkit-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    display: inline-block;
    background: #333;
    cursor: pointer;
    border: 0;
    font-size: 0.8125rem;
    color: #fff;
    height: 25px;
    line-height: 27px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding: 0 6px;
    overflow: visible;

    /* removes extra side padding in IE */
    padding-left: 26px !important;
    background: #7f7f7f url("../images/sprite_arrows_all.png") left -33px no-repeat;
}

.button_light_icon_left:hover {
    background-color: #bababa;
}

a.button_icon_right,
a.button_icon_left,
a.button_light_icon_left {
    line-height: 29px !important;
}

.custom-select {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U4ZThlOCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YxZjFmMSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
    background:
            -webkit-gradient(
                    linear,
                    50% 0%,
                    50% 100%,
                    color-stop(0%, #e8e8e8),
                    color-stop(100%, #f1f1f1)
            );
    background: -webkit-linear-gradient(0deg, #e8e8e8, #f1f1f1);
    background: -moz-linear-gradient(0deg, #e8e8e8, #f1f1f1);
    background: -o-linear-gradient(0deg, #e8e8e8, #f1f1f1);
    background: -ms-linear-gradient(0deg, #e8e8e8, #f1f1f1);
    background: linear-gradient(0deg, #e8e8e8, #f1f1f1);
    border: 1px solid #d1d1d1;
    color: #3c3c3c;
    position: relative;
}

.custom-select dt {
    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    -o-border-top-right-radius: 4px;
    -ms-border-top-right-radius: 4px;
    -khtml-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-right-radius: 4px;
    -o-border-bottom-right-radius: 4px;
    -ms-border-bottom-right-radius: 4px;
    -khtml-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
    background: transparent url("../images/bg_dropdown.png") right top no-repeat;
    height: 24px;
    line-height: 24px;
    text-indent: 5px;
}

.custom-select.active dt {
    background-position: right bottom;
}

.custom-select dd {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #d1d1d1;
    overflow: hidden;
    height: 24px;
    line-height: 24px;
    text-indent: 5px;
    left: -1px !important;
}

.custom-select dd ul li {
    border-top: 1px solid #d1d1d1;
}

.custom-select dd ul li:first-child {
    border: 0;
}

.custom-select dd ul li a {
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U4ZThlOCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YxZjFmMSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
    background:
            -webkit-gradient(
                    linear,
                    50% 0%,
                    50% 100%,
                    color-stop(0%, #e8e8e8),
                    color-stop(100%, #f1f1f1)
            );
    background: -webkit-linear-gradient(0deg, #e8e8e8, #f1f1f1);
    background: -moz-linear-gradient(0deg, #e8e8e8, #f1f1f1);
    background: -o-linear-gradient(0deg, #e8e8e8, #f1f1f1);
    background: -ms-linear-gradient(0deg, #e8e8e8, #f1f1f1);
    background: linear-gradient(0deg, #e8e8e8, #f1f1f1);
    color: #3c3c3c;
}

.custom-select dd ul li a.selected,
.custom-select dd ul li a.selected:hover {
    color: #707070;
    background: #ddd;
}

.custom-select dd ul li a:hover {
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxZjFmMSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2U4ZThlOCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
    background:
            -webkit-gradient(
                    linear,
                    50% 0%,
                    50% 100%,
                    color-stop(0%, #f1f1f1),
                    color-stop(100%, #e8e8e8)
            );
    background: -webkit-linear-gradient(0deg, #f1f1f1, #e8e8e8);
    background: -moz-linear-gradient(0deg, #f1f1f1, #e8e8e8);
    background: -o-linear-gradient(0deg, #f1f1f1, #e8e8e8);
    background: -ms-linear-gradient(0deg, #f1f1f1, #e8e8e8);
    background: linear-gradient(0deg, #f1f1f1, #e8e8e8);
    color: black;
}

/* FORM DEFAULT */
.info_field {
    background: url("../images/sprite_doubt.png") left 0 no-repeat;
    width: 14px;
    height: 15px;
    display: inline-block !important;
    text-indent: -9999px;
    margin: 0 0 0 5px !important;
    cursor: pointer;
    text-align: left !important;
}

.info_field:hover {
    background: url("../images/sprite_doubt.png") left -15px no-repeat;
}

.required_fields {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
}

fieldset {
    clear: left;
    float: left;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
}

label {
    display: inline-block;
    text-align: left;
    margin-bottom: 10px;
    width: 100%;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    -ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

html[dir="rtl"] label {
    text-align: right;
}

label:last-child {
    /* margin-bottom: 0; */
}

label span.question {
    display: block;
    padding: 10px;
    border: 1px dotted #ccc;
    font-style: italic;
}

label.required > span:first-child::after {
    content: "*";
    color: #f00;
    font-size: 1rem;
    line-height: 1rem;
    margin-left: 2px;
}

.required_instruction::before {
    content: "*";
    color: #f00;
    font-size: 1rem;
    line-height: 1rem;
    margin-right: 2px;
}

label > img {
    min-width: 100%;
    height: auto;
}

label > img + span {
    padding: 10px;
    display: block;
    font-style: italic;
}

form p.help {
    text-align: center;
    padding: 0;
}

form p.help a {
    display: inline-block;
    text-transform: none;
    text-decoration: none;
    padding: 10px 5px;
    color: #999;
}

form p.help a:hover {
    color: #197eb6;
}

label > p.instruction {
    display: none;
    text-align: left;
    font-style: italic;
    padding: 10px 13px 10px 10px;
    position: absolute;
    top: 0;
    left: 0;
    color: #295f7a;
    background: #e7f7ff;
    border: 1px solid #8bbad1;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);

    /* width: 250px; */
    z-index: 100;
}

html[dir="rtl"] label > p.instruction {
    left: auto;
    right: 12px;
    text-align: right;
}

label > input:focus + p.instruction {
    display: block;
}

label > p.instruction > .tooltip_arrow {
    display: block;
    position: absolute;
    left: 10px;
    top: -12px;
    width: 24px;
    height: 14px;
    background-image: url(../images/base/tooltip_arrow_up_blue.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] label > p.instruction > .tooltip_arrow {
    left: auto;
    right: 10px;
    background-position: right top;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="url"],
textarea,
select {
    background-color: #eee;
    border-radius: 0;
    border: 1px solid #ccc;
    box-shadow: none;
    margin: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 8px 10px;
    height: 35px;
    direction: ltr;
    text-align: left;
    background-position: 100% center;
}

/* select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;}
    select option{
      background: #CCCCCC;} */
html[lang="ar"] input[type="text"],
html[lang="ar"] input[type="email"],
html[lang="ar"] input[type="password"],
html[lang="ar"] input[type="tel"],
html[lang="ar"] input[type="url"],
html[lang="ar"] textarea,
html[lang="ar"] select {
    font-size: 1rem;
}

html[lang="ar"] ::-webkit-input-placeholder {
    direction: rtl;
    text-align: right;
}

html[lang="ar"] :-moz-placeholder {
    /* Firefox 18- */
    direction: rtl;
    text-align: right;
}

html[lang="ar"] ::-moz-placeholder {
    /* Firefox 19+ */
    direction: rtl;
    text-align: right;
}

html[lang="ar"] :-ms-input-placeholder {
    direction: rtl;
    text-align: right;
}

.accordion > dd {
    clear: both;
}

.accordion > dd > div.content {
    max-height: 0;
    overflow: hidden;
    height: auto;
    -webkit-transition: max-height 1s ease-in-out 0s; /* For Safari 3.1 to 6.0 */
    transition: max-height 1s ease-in-out 0s;
}

.accordion > dd > div.content.active {
    overflow: visible;
}

.accordion > dd.accordion-navigation.active > div.content {
    max-height: 1000000px;
}

.accordion .accordion-navigation > a,
.accordion > dd.accordion-navigation > a,
.accordion > dd.accordion-navigation > a:hover {
    display: block;
    background-image: url(../images/base/plus_minus.png);
    background-repeat: no-repeat;
    background-position: right 15px;
    background-color: #fff;
    padding: 0;
    overflow: hidden;
}

html[dir="rtl"] .accordion > dd.accordion-navigation > a,
html[dir="rtl"] .accordion > dd.accordion-navigation > a:hover {
    background-position: left 15px;
}

.accordion > dd.accordion-navigation.active > a,
.accordion > dd.accordion-navigation.active > a:hover {
    background: url(../images/base/plus_minus.png) no-repeat right -77px transparent;
}

html[dir="rtl"] .accordion > dd.accordion-navigation.active > a,
html[dir="rtl"] .accordion > dd.accordion-navigation.active > a:hover {
    background-position: left -77px;
}

.accordion > dd.accordion-navigation > a > h3 {
    padding: 10px 25px 10px 0;
}

html[dir="rtl"] .accordion > dd.accordion-navigation > a > h3 {
    padding: 0 0 10px 25px;
}

.accordion > dd > .content table + p {
    margin-top: 5px;
}

.tabs {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wNSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background:
            -moz-linear-gradient(
                    top,
                    rgba(0, 0, 0, 0) 0%,
                    rgba(0, 0, 0, 0) 75%,
                    rgba(0, 0, 0, 0.05) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, rgba(0, 0, 0, 0)),
                    color-stop(75%, rgba(0, 0, 0, 0)),
                    color-stop(100%, rgba(0, 0, 0, 0.05))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(0, 0, 0, 0) 0%,
                    rgba(0, 0, 0, 0) 75%,
                    rgba(0, 0, 0, 0.05) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(0, 0, 0, 0) 0%,
                    rgba(0, 0, 0, 0) 75%,
                    rgba(0, 0, 0, 0.05) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(0, 0, 0, 0) 0%,
                    rgba(0, 0, 0, 0) 75%,
                    rgba(0, 0, 0, 0.05) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(0, 0, 0, 0) 0%,
                    rgba(0, 0, 0, 0) 75%,
                    rgba(0, 0, 0, 0.05) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#00000000", endColorstr="#0d000000", GradientType=0); /* IE6-8 */
    box-shadow: 0 -1px 0 #666 inset;
    display: inline-block;
    width: 100%;
    padding: 0 10px;
}

.tabs > dd {
    float: left;
    margin: 0 10px 0 0 !important;
    overflow: hidden;
}

html[dir="rtl"] .tabs > dd {
    float: right;
    margin: 0 0 0 10px !important;
}

.tabs > dd > a {
    display: block;
    padding: 10px;
    font-size: 1rem;
    color: #666;
    border-radius: 5px 5px 0 0;
    border: 1px solid #ccc;
    border-bottom: 1px solid #666;
    background-color: #f7f7f7;
    margin: 1px 1px 0 1px;
}

.tabs > dd.active > a {
    border-color: #666;
    border-bottom-color: #fff;
}

@media screen and (max-width: 960px) {
    /* medium and below */
    .tabs {
        background: none;
        border-width: 0;
        padding: 0;
        box-shadow: none;
    }

    .tabs > dd {
        margin: 0 0 2px 0 !important;
        border-radius: 5px;
        border: 1px solid #ccc;
        width: 100%;
    }

    .tabs > dd > a {
        margin: 0;
        border-width: 0;
    }

    html[dir="rtl"] .tabs > dd {
        margin: 0 0 2px 0 !important;
        border-radius: 5px;
        border: 1px solid #ccc;
        width: 100%;
    }

    .tabs > dd.active {
        border: 1px solid #666;
        padding-bottom: 0;
    }
}

.tabs-content > div.content {
    display: none;
}

.tabs-content > div.content.active {
    display: block;
}

/*
 * ============================================================================
 * CORE: Tables
 * ============================================================================
 */

/* all devices */
table {
    font-size: 0.75rem;
    border-width: 0;
    width: 100%;
}

table thead tr {
    border-width: 1px;
    background: #eee;
}

table thead tr th {
    border-width: 0;
    background: none;
    font-size: 0.6875rem;
    line-height: 14px;
    padding-right: 20px;
}

html[dir="rtl"] table thead tr th {
    padding-left: 20px;
}

table tbody tr {
    border-width: 0 0 0 1px;
}

table tr,
table tr td {
    border-style: solid;
    border-color: #ddd;
    font-size: 0.75rem;
}

table tr.new_group {
    margin-top: 10px;
    border-top-width: 1px;
}

table tr.total td {
    font-weight: bold;
    text-align: right;
    background: #fafafa;
}

html[dir="rtl"] table tr.total td {
    /* text-align: left; */
}

table tr td {
    border-width: 0 1px 1px 0;
    padding: 6px 12px;
}

table .numeric {
    text-align: right;
}

/*

 * ============================================================================
 * CORE: Modules
 * ============================================================================

 */
#breadcrumb {
    display: inline-block;
    float: none;
    width: 100%;
    margin: 0 0 10px;
}

#breadcrumb li {
    font-family: "Lucida Sans", Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 60px;
    color: #333;
    display: inline;
}

#breadcrumb li a,
#breadcrumb li,
#breadcrumb li span {
    /* color: #333333; */
    margin: 0 5px 0 0;
    text-transform: uppercase;

    /* display: inline-block; */
    font-size: 0.625rem;
    line-height: 10px;
}

html[dir="rtl"] #breadcrumb li a,
html[dir="rtl"] #breadcrumb li,
html[dir="rtl"] #breadcrumb li span {
    margin: 0 0 0 5px;
}

html[lang="ar"] #breadcrumb li a,
html[lang="ar"] #breadcrumb li,
html[lang="ar"] #breadcrumb li span {
    font-size: 1rem;
}

#breadcrumb > li > span {
    color: #333;
}

#breadcrumb li a:hover {
    text-decoration: underline;
}

/*

 * ============================================================================
 * SHARED: Global Navigation
 * ============================================================================
 */
nav#global {
    *zoom: 1;
    background: #384855; /* Old browsers */
    background: -moz-linear-gradient(top, #384855 72%, #29353e 100%); /* FF3.6+ */
    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(72%, #384855),
                    color-stop(100%, #29353e)
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    #384855 72%,
                    #29353e 100%
            ); /* Chrome10+,Safari5.1+ */
    background:
            -o-linear-gradient(
                    top,
                    #384855 72%,
                    #29353e 100%
            ); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #384855 72%, #29353e 100%); /* IE10+ */
    background: linear-gradient(to bottom, #384855 72%, #29353e 100%); /* W3C */
    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#384855", endColorstr="#29353e", GradientType=0); /* IE6-9 */
    min-width: 960px;
    width: 100%;
    height: auto;
    z-index: 3;
}

nav#global dl {
    width: 984px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    height: 40px;
}

nav#global dl dd,
nav#global dl dt {
    *zoom: 1;
    margin: 0;
    float: left;
    text-transform: uppercase;
    position: relative;
    overflow: visible;
    width: auto;
    z-index: 5;
    white-space: nowrap;
}

html[dir="rtl"] nav#global dl dd,
html[dir="rtl"] nav#global dl dt {
    float: right;
}

nav#global dl dd a,
nav#global dl dt a {
    *zoom: 1;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    line-height: 40px !important;
    color: #ccc;
    display: block;
    padding: 0 20px;
}

html[lang="ar"] nav#global dl dd a,
html[lang="ar"] nav#global dl dt a {
    font-size: 1rem;
}

nav#global dl dt:hover a,
nav#global dl dd:hover a,
nav#global dl dt:active a,
nav#global dl dd:active a {
    color: #fff;
}

/* LANGUAGE SELECTOR */
nav#global dl dt#locale {
    float: right;
}

html[dir="rtl"] nav#global dl dt#locale {
    float: left;
}

nav#global dl dt#locale fieldset {
    padding: 0;
    margin: 0;
    border: none;
}

nav#global dl dt#locale > #langSelection > fieldset > select {
    background: none;
    border: 0;
    color: #ccc;
    text-transform: uppercase;
    height: 40px;
    padding: 11px 20px;
    margin: 0;
    box-shadow: none;
    font-size: 0.75rem;
    font-weight: bold;
}

#locale > #langSelection > fieldset > select > option {
    line-height: 20px;
}

/* NEW LANGUAGE SELECTOR */
#locale .cs-select {
    background-color: transparent /*rgba(0, 0, 0, 0.2)*/;
    font-size: 0.75rem;
}

#locale .cs-select span.cs-placeholder {
    padding: 11px 25px 10px 10px;
    color: #ccc;
}

html[dir="rtl"] #locale .cs-select span.cs-placeholder {
    padding: 8px 10px 7px 35px;
}

html[lang="ar"] #locale .cs-select span.cs-placeholder {
    font-size: 16px;
}

#locale .cs-select span.cs-placeholder:hover {
    color: #434343;
    background-color: #DCDCDC;
}

#locale .cs-select .cs-options {
    background-color: #333;
    color: #fff;
    width: auto;
    right: 0;
}

html[dir="rtl"] #locale .cs-select .cs-options {
    right: auto;
    left: 0;
}

#locale .cs-select .cs-options ul li {
    font-size: 0.6875rem;
}

#locale .cs-select .cs-options ul li.cs-selected span {
    padding-right: 30px;
}

html[dir="rtl"] #locale .cs-select .cs-options ul li.cs-selected span {
    padding-right: 10px;
    padding-left: 30px;
}

nav#global dl dt dl {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    z-index: 5;
    background: #384855;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    border-radius: 0 0 5px 5px;
    padding: 0;
    margin: 0;
    height: auto;
    width: auto;
    overflow: hidden;
}

html[dir="rtl"] nav#global dl dt dl {
    right: auto;
    left: 0;
}

nav#global dl dt:hover dl dt a {
    color: #ccc;
    display: block;
    padding: 0 20px;
    white-space: nowrap;
    text-shadow: 0 1px 0 #333;
    width: 170px;
    text-align: right;
}

html[dir="rtl"] nav#global dl dt:hover dl dt a {
    text-align: left;
}

nav#global dl dt:hover dl dt a:hover {
    color: #fff;
    background: #4e6577;
}

/*
 * ============================================================================
 * SHARED: Header
 * ============================================================================
 */
header {
    z-index: 2;

    /* min-width: 960px; */
    width: 100%;

    /* height: 100px; */
    display: block;
    position: relative;
}

header div#nav_holder {
    background: #fff;

    /* width: 960px; */
    margin: 0 auto;
    position: relative;
    height: 100px;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

header div#nav_holder h1 {
    margin: 0;
}

header div#nav_holder h1 a {
    text-indent: -119988px;
    overflow: hidden;
    text-align: left;
    background-image: url("../images/__fake/accolade_logo.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 189px;
    height: 100px;
    display: block;
    float: left;
}

html[dir="rtl"] header div#nav_holder h1 a {
    float: right;
    text-align: right;
}

header div#nav_holder nav {
    height: 100px;
}

header div#nav_holder nav a {
    font-family: "FrutigerNeueW01-Regular", "trebuchet MS", arial, sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #3c3c3c;
    display: block;
}

header div#nav_holder nav#main {
    /* left: 188px; */

    /* width: auto; */
}

header div#nav_holder nav#main ul li {
    float: left;
    overflow: hidden;
    position: relative;
    list-style: none;
}

html[dir="rtl"] header div#nav_holder nav#main ul li {
    float: right;
}

header div#nav_holder nav#main ul li a {
    height: 100px;
    padding: 15px 20px 0;
    position: relative;
    z-index: 2;
    width: 124px;
    line-height: 20px;
    box-sizing: border-box;
    float: left;
    text-align: center;
}

html[lang="ar"] header div#nav_holder nav#main ul li a {
    font-size: 1.125rem;
}

header div#nav_holder nav#main ul li a:hover {
    color: #434343;
    background-color: #DCDCDC;
}

header div#nav_holder nav#main ul li span {
    background: #48a5d8;
    display: block;
    height: 100px;
    position: absolute;
    top: 100px;
    width: 100%;
    z-index: 1;
}

header div#nav_holder nav#main ul li.home {
    display: none;
}

header div#nav_holder nav#main ul li.active {
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmY2Y2NCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZmZiMzAxIi8+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiNmZmFiMDAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmJmMjgiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
    background-size: 100%;
    background-image:
            -webkit-gradient(
                    linear,
                    50% 0%,
                    50% 100%,
                    color-stop(0%, #ffcf64),
                    color-stop(50%, #ffb301),
                    color-stop(50%, #ffab00),
                    color-stop(100%, #ffbf28)
            );
    background-image:
            -webkit-linear-gradient(
                    #ffcf64,
                    #ffb301 50%,
                    #ffab00 50%,
                    #ffbf28
            );
    background-image:
            -moz-linear-gradient(
                    #ffcf64,
                    #ffb301 50%,
                    #ffab00 50%,
                    #ffbf28
            );
    background-image:
            -o-linear-gradient(
                    #ffcf64,
                    #ffb301 50%,
                    #ffab00 50%,
                    #ffbf28
            );
    background-image:
            -ms-linear-gradient(
                    #ffcf64,
                    #ffb301 50%,
                    #ffab00 50%,
                    #ffbf28
            );
    background-image: linear-gradient(#ffcf64, #ffb301 50%, #ffab00 50%, #ffbf28);
}

header div#nav_holder nav#aux {
    height: inherit;
}

header div#nav_holder nav#aux ul {
    /* width: 170px; */
    height: 100px;
    max-width: 190px;
    float: right;
    list-style: none;
}

html[dir="rtl"] header div#nav_holder nav#aux ul {
    float: left;
}

header div#nav_holder nav#aux ul li {
    height: 50px;
    position: relative;
    overflow: hidden;
    float: left;
    width: 100%;
    text-align: right;
    border-width: 0;
    list-style: none;
}

html[dir="rtl"] header div#nav_holder nav#aux ul li {
    text-align: left;
}

header div#nav_holder nav#aux ul li.login_instruction {
    display: none;
}

header div#nav_holder nav#aux ul li a {
    height: 50px;
    line-height: 50px;
    padding: 0 20px 0;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    border-width: 0;
}

html[lang="ar"] header div#nav_holder nav#aux ul li a {
    font-size: 1.125rem;
}

header div#nav_holder nav#aux ul li a:hover {
    color: #434343;
    background-color: #DCDCDC;
}

header div#nav_holder nav#aux ul li a span {
    background: #48a5d8;
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    left: -210px;
    top: 0;
    border-width: 0;
}

header div#nav_holder nav#aux ul li span::after {
    background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmYmYyOCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmYWIwMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
    background-size: 100%;
    background-image:
            -webkit-gradient(
                    linear,
                    50% 0%,
                    50% 100%,
                    color-stop(0%, #ffbf28),
                    color-stop(100%, #ffab00)
            );
    background-image: -webkit-linear-gradient(#ffbf28, #ffab00);
    background-image: -moz-linear-gradient(#ffbf28, #ffab00);
    background-image: -o-linear-gradient(#ffbf28, #ffab00);
    background-image: -ms-linear-gradient(#ffbf28, #ffab00);
    background-image: linear-gradient(#ffbf28, #ffab00);
}

header div#nav_holder #logged_panel {
    /* position: absolute; */

    /* top: 0; */

    /* right: 0; */

    /* width: 290px; */
    height: 100px;
    color: #fff;
}

header div#nav_holder #logged_panel dt,
header div#nav_holder #logged_panel dd {
    *zoom: 1;
    filter: progid:dximagetransform.microsoft.gradient(gradientType=0, startColorstr="#FF333333", endColorstr="#FF505050");
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjUwJSIgeTE9IjAlIiB4Mj0iNTAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMzMzMzMyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzUwNTA1MCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==");
    background:
            -webkit-gradient(
                    linear,
                    50% 0%,
                    50% 100%,
                    color-stop(0%, #333),
                    color-stop(100%, #505050)
            );
    background: -webkit-linear-gradient(0deg, #333, #505050);
    background: -moz-linear-gradient(0deg, #333, #505050);
    background: -o-linear-gradient(0deg, #333, #505050);
    background: -ms-linear-gradient(0deg, #333, #505050);
    background: linear-gradient(0deg, #333, #505050);
    text-indent: 10px;
    height: 50px;
    line-height: 50px;
    font-size: 0.75rem;
}

header div#nav_holder #logged_panel dt {
    font-weight: bold;
}

header div#nav_holder #logged_panel dd {
    color: #ccc;
}

header div#nav_holder #logged_panel dd a {
    color: #ccc;
}

header div#nav_holder #logged_panel dd span {
    padding-left: 10px;
    padding-right: 10px;
}

header div#nav_holder #logged_panel ul {
    margin: 0;
    list-style: none;
    display: block;
    float: left;
    padding: 0;
}

header div#nav_holder #logged_panel li {
    position: relative;
    float: right;
    height: 50px;
    line-height: 14px;
    text-align: right;
    width: 190px;
    list-style: none;
    padding: 0;
    margin: 0;
}

html[dir="rtl"] header div#nav_holder #logged_panel li {
    float: left;
    text-align: left;
}

header div#nav_holder #logged_panel li:hover,
header div#nav_holder #logged_panel li.cart_link:hover {
    background-color: #48a5d8;
    background-position: 25px -68px;
    transition: background-color 200ms linear;
}

header div#nav_holder #logged_panel li:hover a,
header div#nav_holder #logged_panel li:hover span {
    color: #fff;
}

header div#nav_holder #logged_panel li a {
    display: block;
    height: 100%;
    text-decoration: none;
    text-transform: uppercase;
    padding: 17px 10px 0 0;
    color: #4c4c4c;
}

html[dir="rtl"] header div#nav_holder #logged_panel li a {
    padding: 17px 0 0 10px;
}

header div#nav_holder #logged_panel li.cart_link,
.right-off-canvas-menu li.cart_link {
    height: 100px;
    width: 100px;
    background:
            url(../images/base/cart_icon.png) no-repeat center 32px
            transparent;
    padding-right: 0;
    cursor: pointer;
}

html[dir="rtl"] header div#nav_holder #logged_panel li.cart_link,
html[dir="rtl"] .right-off-canvas-menu li.cart_link {
    background-image: url(../images/base/cart_icon_left.png);
}

.left-off-canvas-menu li.cart_link,
.right-off-canvas-menu li.cart_link {
    width: 100%;
    float: none;
    position: relative;
    display: block;
    background-position: center 32px;
}

header div#nav_holder #logged_panel li.cart_link span,
.right-off-canvas-menu li.cart_link span {
    color: #48a5d8;
    top: 26px;
    left: 41px;
    display: block;
    line-height: 16px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    width: 27px;
    position: absolute;
}

html[dir="rtl"] header div#nav_holder #logged_panel li.cart_link span,
html[dir="rtl"] .right-off-canvas-menu li.cart_link span {
    left: auto;
    right: 40px;
}

header div#nav_holder #logged_panel li.cart_link:hover span {
    color: #fff;
}

header div#nav_holder #logged_panel li.user_name .name {
    line-height: 13px;
    position: absolute;
    right: 20px;
    top: 14px;
}

header div#nav_holder #logged_panel li.user_name .points {
    font-size: 0.625rem;
    position: absolute;
    right: 20px;
    top: 30px;
    line-height: 10px;
    color: #48a5d8;
}

header div#nav_holder #logged_panel li.user_name:hover .points {
    color: #fff;
}

.left-off-canvas-menu,
.right-off-canvas-menu {
    background: #384855;
}

html[lang="ar"] .left-off-canvas-menu ul li a:not(.user_name),
html[lang="ar"] .right-off-canvas-menu ul li a:not(.user_name) {
    font-size: 1.125rem;
}

.left-off-canvas-menu ul.primary,
.right-off-canvas-menu ul.primary {
    background: #fff;
    border-bottom: 1px solid #ccc;
}

.left-off-canvas-menu ul.actions,
.right-off-canvas-menu ul.actions {
    background: #eee;
}

.left-off-canvas-menu ul.actions label,
.right-off-canvas-menu ul.actions label {
    color: #666;
    font-size: 0.625rem;
    font-weight: normal;
    text-transform: uppercase;
    background: none;
    padding-left: 10px;
}

.left-off-canvas-menu ul.actions a,
.right-off-canvas-menu ul.actions a {
    color: #333;
    text-shadow: 0 1px 0 #ccc;
}

.left-off-canvas-menu ul.off-canvas-list li a:hover,
.right-off-canvas-menu ul.off-canvas-list li a:hover {
    background-color: #48a5d8;
    color: #fff;
}

.left-off-canvas-menu ul.secondary a,
.right-off-canvas-menu ul.secondary a {
    color: #ccc;
}

.left-off-canvas-menu li.tool_bar,
.right-off-canvas-menu li.tool_bar {
    box-shadow: 0 1px 10px #ccc;
    height: 55px;
}

.left-off-canvas-menu a.user_name,
.right-off-canvas-menu a.user_name {
    width: 141px;
    box-sizing: border-box;
    font-size: 0.625rem;
    position: absolute;
    left: 7px;
    top: 7px;
    border-radius: 3px;
    padding: 5px;
    height: 40px;
    line-height: 11px;
}

aside.left-off-canvas-menu ul.off-canvas-list.actions li a .sidebar_item_badge {
    display: inline-block;
    margin-left: 4px;
    padding: 6px;
    text-align: center;
    color: #FFFFFF;
    background-color: #333333;
    border-radius: 50%;
    min-width: 24px;
    font-size: 12px;
}

html[dir="rtl"] .left-off-canvas-menu a.user_name,
html[dir="rtl"] .right-off-canvas-menu a.user_name {
    left: auto;
    right: 7px;
}

.left-off-canvas-menu .user_name span,
.right-off-canvas-menu .user_name span {
    display: block;
    overflow: hidden;
}

.left-off-canvas-menu .user_name span:first-child,
.right-off-canvas-menu .user_name span:first-child {
    font-weight: bold;
    font-size: 0.875rem;
    line-height: 18px;
}

aside.left-off-canvas-menu li a.cart_link,
aside.right-off-canvas-menu li a.cart_link {
    background-image: url(../images/base/cart_icon_mobile.png);
    background-repeat: no-repeat;
    background-position: 5px 5px;
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 7px;
    right: 55px;
    border-radius: 3px;
    transition: none;
}

html[dir="rtl"] .left-off-canvas-menu a.cart_link,
html[dir="rtl"] .right-off-canvas-menu a.cart_link {
    background-image: url(../images/base/cart_icon_mobile_left.png);
    right: auto;
    left: 55px;
}

.left-off-canvas-menu a.cart_link:hover,
.right-off-canvas-menu a.cart_link:hover {
    background-repeat: no-repeat;
    background-position: 5px -54px;
    background-color: rgba(0, 0, 0, 0);
}

.left-off-canvas-menu a.cart_link span,
.right-off-canvas-menu a.cart_link span {
    color: #48a5d8;
    font-weight: bold;
    display: block;
    position: absolute;
    left: 13px;
    top: 1px;
    width: 17px;
    text-align: center;
    font-size: 0.6875rem;
}

html[dir="rtl"] .left-off-canvas-menu a.cart_link span,
html[dir="rtl"] .right-off-canvas-menu a.cart_link span {
    left: auto;
    right: 15px;
}

.left-off-canvas-menu a.cart_link:hover span,
.right-off-canvas-menu a.cart_link:hover span {
    color: #fff;
}

aside.left-off-canvas-menu li a.logout_link,
aside.right-off-canvas-menu li a.logout_link {
    background-image: url(../images/base/logout_icon_mobile.png);
    background-repeat: no-repeat;
    background-position: 5px 5px;
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 7px;
    right: 8px;
    border-radius: 3px;
    transition: none;
}

html[dir="rtl"] .left-off-canvas-menu a.logout_link,
html[dir="rtl"] .right-off-canvas-menu a.logout_link {
    background-image: url(../images/base/logout_icon_mobile_left.png);
    right: auto;
    left: 8px;
}

.left-off-canvas-menu a.logout_link:hover,
.right-off-canvas-menu a.logout_link:hover {
    background-repeat: no-repeat;
    background-position: 5px -54px;
    background-color: rgba(0, 0, 0, 0);
}

.left-off-canvas-menu ul li a,
.right-off-canvas-menu ul li a {
    border-bottom: none;
    color: #3c3c3c;
    font-weight: normal;
    font-size: 0.8125rem;
    text-transform: uppercase;
}

.left-off-canvas-menu ul li label,
.right-off-canvas-menu ul li label {
    background: #aaa;
    color: #fff;
    border-top: none;
}

.lt-ie9 header div#nav_holder {
    background: transparent url("../images/bg_header.jpg") left top repeat-x;
}

.lt-ie9 header div#nav_holder ul li span {
    background: transparent url("../images/bg_header_mouseover.jpg") 0 0 repeat-x !important;
}

.tab-bar {
    background-color: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.tab-bar h1 {
    color: #3c3c3c;
    height: 100%;
    box-sizing: border-box;
}

.tab-bar h1 img {
    max-height: 38px;
    max-width: 100%;
    display: block;
    margin: 3px auto 0;
}

.tab-bar .left-small,
.tab-bar .right-small {
    border-color: #ddd;
}

.tab-bar .menu-icon span::after {
    box-shadow: 0 0 0 1px #ccc, 0 7px 0 1px #ccc, 0 14px 0 1px #ccc;
}

/*
 * ============================================================================

 * SHARED: Sidebar
 * ============================================================================
 */

#sidebar {
    /* display: inline; */

    /* float: left; */

    /* margin: 0 15px 15px 0; */

    /* width: 179px; */

    /* clear: left; */
}

* html #sidebar {
    overflow-x: hidden;
}

#sidebar h2 {
    color: #48a5d8;
    font-size: 0.875rem;
    text-transform: uppercase;
    display: block;
    padding-bottom: 20px;
    border-bottom: 1px solid #d1d1d1;
}

nav.sidebar_menu ul {
    margin: 0;
}

nav.sidebar_menu > ul li {
    -moz-transition: all 200ms linear;
    -webkit-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
    background-repeat: no-repeat;
    background-position: right center;
    overflow: hidden;
    margin: 0;
    float: left;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

html[dir="rtl"] nav.sidebar_menu > ul li {
    float: right;
}

html[lang="ar"] nav.sidebar_menu > ul li > a {
    font-size: 1.125rem;
}

nav.sidebar_menu > ul li ul {
    background-color: #fff;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: all ease-out 2s;
}

nav.sidebar_menu > ul li.active > ul {
    max-height: 1000px;
}

nav.sidebar_menu > ul li a.current,
#featured_offers > nav > ul li a.current {
    color: #fff;
    background-color: #48a5d8;
}

html[dir="rtl"] nav.sidebar_menu > ul ul > li {
    background-color: #e8e8e8;
    padding-left: 0;
    padding-right: 10px;
}

nav.sidebar_menu > ul ul > li {
    background-color: #f2f2f2;
    padding-left: 10px;
}

nav.sidebar_menu > ul ul > li > a {
    background-color: #fff;
    color: #676767;
    width: 100%;
    display: inline-block;
    word-break: break-word;
}

nav.sidebar_menu > ul li > a:hover {
    background-color: #f2f2f2;
    background-image: url(../images/arrow_nav_card.png);
    background-repeat: no-repeat;
    background-position: right center;
}

html[dir="rtl"] nav.sidebar_menu > ul li > a:hover {
    background-image: url(../images/arrow_nav_card_left.png);
    background-position: left center;
}

nav.sidebar_menu > ul li a.current:hover {
    background-color: #999;
}

div#user_actions {
    /* width: 179px; */

    /* margin: 0 15px 0 0; */

    /* float: left; */

    /* clear: left; */
}

dl.user_points {
    background: rgb(102, 102, 102); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, rgba(102, 102, 102, 1)),
                    color-stop(100%, rgba(153, 153, 153, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#666666", endColorstr="#999999", GradientType=0); /* IE6-9 */
    box-shadow: 0 -1px 0 #bbb, 0 1px 0 #fff;
    color: #fff;
    text-shadow: 0 1px 0 #333;
    border-radius: 5px;
    margin-bottom: 15px;
    display: block;
    position: relative;
    float: left;
    width: 100%;
}

dl.user_points > dt.view_label {
    background: url(../images/base/plus_icon.png) no-repeat 97% -94px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3), 0 1px 0 rgba(0, 0, 0, 0.3) inset;
    color: #ddd;
    display: block;
    font-size: 0.6875rem;
    font-weight: bold;
    text-decoration: none;
    margin: 0 7px 7px;
    padding-right: 15px;

    /* transition: all 400ms ease; */
}

html[dir="rtl"] dl.user_points > dt.view_label {
    background-position: 3% -94px;
    padding-right: 0;
    padding-left: 15px;
}

html[lang="ar"] dl.user_points > dt.view_label {
    font-size: 1rem;
}

dl.user_points > dt.view_label:first-child {
    margin-top: 7px;
}

dl.user_points > dt.view_label.active {
    border: none;
    box-shadow: none;
    background-image: none;
}

dl.user_points > dt.view_label.active:hover {
    background: none;
}

dl.user_points > dt.view_label.active span {
    padding: 2px 0;
}

dl.user_points > dt.view_label.active + dd {
    max-height: 500px;

    /* transition: max-height 2s ease-in; */
}

dl.user_points > dt.view_label span {
    padding: 2px 4px;
    display: block;
}

dl.user_points > dt.view_label:hover {
    background-position: 97% 6px;
    background-color: #aaa;
    border-color: #fff;
    color: #fff;
    cursor: pointer;
}

html[dir="rtl"] dl.user_points > dt.view_label:hover {
    background-position: 3% 6px;
}

dl.user_points > dd {
    max-height: 0;

    /* transition: max-height 2s ease-out; */
    overflow: hidden;
    font-size: 1.875rem;
    display: block;
    text-align: center;
    line-height: 50px;
    margin-bottom: 0;
}

dl.user_points > dd > dl > dt {
    font-size: 0.75rem;
    margin: 0 7px 10px;
    line-height: 18px;
    text-align: left;
    float: left;
    clear: both;
    width: 100%;
}

html[dir="rtl"] dl.user_points > dd > dl > dt {
    float: right;
    text-align: right;
}

html[lang="ar"] dl.user_points > dd > dl > dt {
    font-size: 1rem;
}

dl.user_points > dd > dl > dd {
    font-size: 1.125rem;
    line-height: 18px;
    text-align: right;
    margin: 0 7px 10px;
    float: right;
    font-weight: bold;
}

html[dir="rtl"] dl.user_points > dd > dl > dd {
    text-align: left;
    float: left;
}

#user_actions > nav.sidebar_menu {
    background: none;
    box-shadow: none;
    margin-bottom: 15px;
    width: 100%;
}

#user_actions > nav.sidebar_menu > h3 {
    background: transparent;
    color: #666;
    padding: 0 7px;
    text-align: left;
}

html[dir="rtl"] #user_actions > nav.sidebar_menu > h3 {
    text-align: right;
}

#user_actions > nav.sidebar_menu > ul {
    background: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding-bottom: 1px;
}

#user_actions > nav.sidebar_menu > ul li {
    background: none;
}

#user_actions > nav.sidebar_menu > ul > li > a {
    color: #333;
    border: none;
    background: url(../images/sprite_link_cards.png) no-repeat 200% -54px rgba(0, 0, 0, 0);
    text-shadow: 0 1px 0 #ccc;

    /* width: 162px; */
    line-height: 16px;
    border-radius: 12px;
    padding: 6px 32px 5px 7px;
    overflow: hidden;
    margin-bottom: 5px;
}

#user_actions > nav.sidebar_menu > ul > li > a .sidebar_item_badge {
    display: inline-block;
    margin-left: 4px;
    padding: 6px;
    text-align: center;
    color: #FFFFFF;
    background-color: #333333;
    border-radius: 50%;
    min-width: 28px;
    font-size: 12px;
}

html[dir="rtl"] #user_actions > nav.sidebar_menu > ul > li > a {
    background-position: -20% -52px;
    padding: 6px 7px 5px 32px;
}

#user_actions > nav.sidebar_menu > ul > li > a:hover,
#user_actions > nav.sidebar_menu > ul > li > a.active /*,
        .rewards_summary #user_actions > nav.sidebar_menu > ul > li:first-child > a,
        .pwrl #user_actions > nav.sidebar_menu > ul > li:nth-child(2) > a,
        .point_transfer #user_actions > nav.sidebar_menu > ul > li:nth-child(3) > a,
        .manage_accounts #user_actions > nav.sidebar_menu > ul > li:nth-child(5) > a*/ {
    background: url(../images/sprite_link_cards.png) no-repeat 97% -227px #666;
    color: #bbb;
    text-shadow: 0 1px 0 #222;
    box-shadow: 0 1px 0 #555 inset;
}

html[dir="rtl"] #user_actions > nav.sidebar_menu > ul > li > a:hover,
html[dir="rtl"] #user_actions > nav.sidebar_menu > ul > li > a.active {
    background-position: 3% -575px;
}

#user_actions > .truaxis_button {
    width: 100%;

    /* height: 100px; */
    position: relative;
    float: left;
    margin-bottom: 20px;
    text-align: center;
}

#user_actions > .truaxis_button img {
    width: 100%;
    max-width: 320px;
}

/*
 * ============================================================================
 * SHARED: Page Intro
 * ============================================================================
 */
p {
    line-height: 20px;
    font-size: 0.75rem;
    color: #333;
}

html[lang="ar"] p {
    font-size: 1rem;
}

p.share {
    line-height: 20px;
    color: #aaa;
    text-transform: uppercase;
    font-size: 0.6875rem;
}

html[lang="ar"] p.share {
    font-size: 1rem;
}

.share > a {
    display: inline-block;
    height: 20px;
    width: 19px;
    margin-left: 3px;
    border-radius: 3px;
    margin-bottom: -5px;
}

.share_on_facebook {
    background:
            url(../images/base/share_on_facebook.png) no-repeat left top
            transparent;
}

.share_on_twitter {
    background:
            url(../images/base/share_on_twitter.png) no-repeat left top
            transparent;
}

.share > a > span {
    display: none;
}

/*
 * ============================================================================
 * SHARED: Offers List
 * ============================================================================
 */

/*
 * ============================================================================
 * SHARED: Offers Categories
 * ============================================================================
 */
#offers_categories > .search,
#filter_catalog_heirarchy > .search {
    height: 50px;
}

#offers_categories input {
    font-weight: bold;
    padding-right: 37px;
    position: relative;
    float: left;
}

html[dir="rtl"] #offers_categories input {
    padding-right: 10px;
    padding-left: 37px;
    float: right;
}

html[lang="ar"] #offers_categories input {
    font-size: 1rem;
}

#offers_categories fieldset dl {
    z-index: 20;
}

#offers_categories .search .button_icon_left {
    float: right;
    margin: -41px 5px 0 0;
    height: 25px !important;
    padding-left: 20px !important;
    position: relative;
    z-index: 10;
    width: 26px;
}

html[dir="rtl"] #offers_categories .search .button_icon_left {
    float: left;
    margin: -41px 0 0 5px;
    padding-left: 0 !important;
    padding-right: 20px !important;
}

#offers_categories .search .button_icon_left b {
    display: none;
}

nav.sidebar_menu h2 {
    margin-bottom: 20px;
}

nav.sidebar_menu {
    display: block;
    float: left;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 16px;
}

html[dir="rtl"] nav.sidebar_menu {
    float: right;
}

nav.sidebar_menu h3 {
    color: #48a5d8;
    font-size: 0.625rem;
    text-transform: uppercase;
    padding: 7px 7px 0;
    text-align: center;
    border-bottom: none;
    background: #fff;
    margin: 0;
}

html[lang="ar"] nav.sidebar_menu h3 {
    font-size: 1.125rem;
}

nav.sidebar_menu > ul {
    border-width: 1px;
    border-style: solid;
    border-color: #48a5d8;
    margin: 7px;
    display: block;
    float: left;
}

html[dir="rtl"] nav.sidebar_menu > ul {
    float: right;
}

nav.sidebar_menu > ul li > a {
    display: block;
    padding: 5px 26px 3px 8px;
    text-decoration: none;
    font-weight: normal;
    color: #888;
    transition: background-color 400ms ease-out;
    width: 100%;
    padding: 5px 40px 5px 10px;
    font-size: 0.8125rem;
    text-decoration: none;
}

html[dir="rtl"] nav.sidebar_menu > ul li > a {
    padding: 5px 8px 3px 26px;
}

nav.sidebar_menu > ul li.submenu > a {
    background-image: url(../images/arrow_nav_down.png);
    background-repeat: no-repeat;
    background-position: right center;
}

html[dir="rtl"] nav.sidebar_menu > ul li.submenu > a {
    background-position: left center;
}

nav.sidebar_menu > ul li.submenu.active > a,
html[dir="rtl"] nav.sidebar_menu > ul li.submenu.active > a {
    background-image: url(../images/arrow_nav_up.png);
    background-repeat: no-repeat;
    background-position: right center;
}

html[dir="rtl"] nav.sidebar_menu > ul li.submenu.active > a {
    background-position: left center;
}

nav.sidebar_menu > ul > li:last-child > a {
    border-bottom-width: 0;
}

/*
 * ============================================================================
 * SHARED: Featured Offers
 * ============================================================================
 */

#featured_offers {
    /* padding: 0 10px; */
}

#featured_offers nav.landing_offer_categories {
    display: block;
    float: left;
    margin: 0 0 16px 0;
    width: 100%;

    /* max-height: 179px; */
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

#featured_offers nav.landing_offer_categories > ul {
    border-width: 1px;
    border-style: solid;
    border-color: #48a5d8;
    margin: 7px;
    list-style: none;
}

#featured_offers nav.landing_offer_categories > ul > li > a {
    display: block;
    padding: 0 8px;
    text-decoration: none;
    color: #999;
    line-height: 28px;
    font-size: 0.75rem;
}

html[lang="ar"] #featured_offers nav.landing_offer_categories > ul > li > a {
    font-size: 1.125rem;
}

#featured_offers nav.landing_offer_categories > ul > li > a:hover {
    background: #eee;
    color: #888;
}

#featured_offers nav.landing_offer_categories > ul > li > a.active {
    background: #48a5d8;
    color: #fff;
}

#featured_offers nav.landing_offer_categories > a {
    border-width: 0 1px 1px;
    border-style: solid;
    border-color: #48a5d8;
    color: #999;
    display: block;
    margin: -8px 7px 7px;
    padding: 0 8px;
    background:
            url(../images/base/list_arrow_gray_white.png) no-repeat 95% 8px
            #fff;
    line-height: 24px;
    height: auto;
    text-decoration: none;
    font-size: 0.75rem;
}

html[lang="ar"] #featured_offers nav.landing_offer_categories > a {
    font-size: 1.125rem;
}

#featured_offers nav.landing_offer_categories > a:hover {
    background-color: #eee;
    color: #888;
}

#featured_offers .card_list {
    /* position: relative; */

    /* float: left; */

    /* z-index: 10; */

    /* max-width: 780px; */

    /* margin-left: 15px; */
    margin-bottom: 20px;
}

.home_logged .content_margin .page_intro > figure > img,
.shop > .content_margin > .page_intro > figure > img {
    overflow: hidden;
    display: block;
    box-shadow: 0 1px 0 #fff, 0 -1px 0 #666;
    width: 765px;
}

/*
 * ============================================================================

 * SHARED: Footer
 * ============================================================================
 */
footer#footer_main {
    background: #3c454e;
    display: inline-block;
    width: 100%;
}

footer#footer_main nav {
    margin: 29px auto 30px;
}

footer#footer_main nav dl,
footer#footer_main nav ul {
    padding: 20px 10px 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

footer#footer_main nav dl {
    border-left: 1px solid #4a535c;
}

footer#footer_main nav dl:last-child,
footer#footer_main nav ul:last-child {
    float: left;
    text-align: right;
}

html[dir="rtl"] footer#footer_main nav dl:last-child,
html[dir="rtl"] footer#footer_main nav ul:last-child {
    float: right;
    text-align: left;
}

footer#footer_main nav ul:last-child li {
    display: inline-block;
}

@media screen and (min-width: 64em) {
    footer#footer_main nav dl {
        min-height: 130px;
    }
}

html[dir="rtl"] footer#footer_main nav dl,
html[dir="rtl"] footer#footer_main nav ul {
    border-left: none;
    border-right: 1px solid #4a535c;
}

@media screen and (max-width: 40em) {
    /* small only */
    footer#footer_main nav {
        margin: 20px;
    }

    footer#footer_main nav dl,
    footer#footer_main nav ul {
        height: auto;
        padding: 0 !important;
        border-left: 0;
        margin: 0 0 10px 0 !important;
        text-align: center;
    }

    html[dir="rtl"] footer#footer_main nav dl,
    html[dir="rtl"] footer#footer_main nav ul {
        border-right: 0;
    }
}

footer#footer_main nav dl:first-child {
    border-left: 0;
}

html[dir="rtl"] footer#footer_main nav dl:first-child {
    border-right: 0;
}

footer#footer_main nav dl dt {
    font-family: "FrutigerNeueW01-Regular", "trebuchet MS", arial, sans-serif;
    font-size: 0.8125rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #d3dae2;
    display: block;
}

html[lang="ar"] footer#footer_main nav dl dt {
    font-size: 1.125rem;
}

footer#footer_main nav dl dd {
    line-height: 14px;
    margin-bottom: 8px;
}

@media screen and (max-width: 40em) {
    /* small only */
    footer#footer_main nav dl dd {
        margin-bottom: 0;
    }
}

footer#footer_main nav dl dd a {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    text-decoration: none;
    color: #939da9;
}

html[lang="ar"] footer#footer_main nav dl dd a {
    font-size: 1rem;
}

footer#footer_main nav dl dd a:hover {
    color: #fff;
}

.social_media_buttons ul {
    display: block;
    width: 100%;
    margin: 10px 10px 0;
    margin-bottom: 0;
}

.social_media_buttons.align_left {
    text-align: left;
}

.social_media_buttons.align_right {
    text-align: right;
}

.social_media_buttons ul:first-child {
    margin-top: 20px;
}

.social_media_buttons ul li {
    display: inline-block;
    margin-left: 4px;
    list-style: none;
}

html[dir="rtl"] .social_media_buttons ul li {
    margin-left: 0;
    margin-right: 4px;
}

@media screen and (max-width: 40em) {
    /* small only */
    footer#footer_main .socialMediaBlock {
        width: auto;
        display: inline-block;
        margin: 0 auto;
    }

    footer#footer_main .socialMediaBar {
        float: none;
        width: auto;
        display: inline-block;
    }

    footer#footer_main nav ul li,
    html[dir="rtl"] footer#footer_main nav ul li {
        float: none;
        margin-left: 0;
        width: auto;
        display: inline-block;
    }
}

footer#footer_main .copyright {
    margin: 20px 0 0 0;
    display: block;
    background: #111;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

footer#footer_main .copyright br {
    display: none;
}

footer#footer_main .copyright_left,
footer#footer_main .copyright_right {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-size: 0.625rem;
    color: #ccc;
    text-align: right;
    padding: 15px 0;
    line-height: 125%;
}

html[dir="rtl"] footer#footer_main .copyright_left,
html[dir="rtl"] footer#footer_main .copyright_right {
    text-align: left;
}

footer#footer_main .copyright .copyright_left {
    text-align: left;
}

html[dir="rtl"] footer#footer_main .copyright .copyright_left {
    text-align: right;
}

html[lang="ar"] footer#footer_main .copyright .copyright_left {
    font-size: 1rem;
}

footer#footer_main .copyright .copyright_left img {
    margin: -15px 10px -15px 0;
}

html[dir="rtl"] footer#footer_main .copyright .copyright_left img {
    margin-right: 0;
    margin-left: 10px;
}

footer#footer_main .copyright .copyright_right {
    text-align: right;
}

html[dir="rtl"] footer#footer_main .copyright .copyright_right {
    text-align: left;
}

html[lang="ar"] footer#footer_main .copyright .copyright_right {
    font-size: 1rem;
}

footer#footer_main .copyright .copyright_right img {
    margin: -15px 0 -15px 10px;
    float: right;
}

html[dir="rtl"] footer#footer_main .copyright .copyright_right img {
    margin-left: 0;
    margin-right: 10px;
    float: left;
}

@media screen and (max-width: 40em) {
    /* small only */
    footer#footer_main .copyright .copyright_left,
    html[dir="rtl"] footer#footer_main .copyright .copyright_left {
        text-align: center;
    }

    footer#footer_main .copyright .copyright_right,
    html[dir="rtl"] footer#footer_main .copyright .copyright_right {
        text-align: center;
    }

    footer#footer_main .copyright .copyright_left img,
    footer#footer_main .copyright .copyright_right img,
    html[dir="rtl"] footer#footer_main .copyright .copyright_left img,
    html[dir="rtl"] footer#footer_main .copyright .copyright_right img {
        display: block;
        clear: both;
        float: none;
        margin: 0 auto;
    }
}

/*
 * ============================================================================
 * CORE: Modals
 * ============================================================================
 */

.modal_default footer {
    /* padding: 10px 0 0 0; */
    display: inline-block;
    width: 100%;
    font-size: 0.75rem;
}

html[dir="rtl"] #fancybox-close {
    right: auto;
    left: 10px;
}

#fancybox-content h3 {
    color: #333;
    border-bottom: 0;
    width: 100%;
    box-sizing: border-box;
    float: left;
    position: relative;
    margin: 0;
}

#fancybox-content .content {
    clear: left;
    float: left;
    width: 100%;
    overflow: hidden;
}

#fancybox-content footer {
    clear: both;
    float: left;
    width: 100%;
}

#fancybox-content footer button,
#fancybox-content footer .button {
    width: 100%;
}

/* column sizing */

/* .row{
      float: left;
      width: 100%;
      clear: both; } */
.oneUp.noRowMargin,
.twoUp.noRowMargin,
.threeUp.noRowMargin,
.fourUp.noRowMargin,
.fiveUp.noRowMargin {
    margin-top: 0;
}

.oneUp {
    width: 100%;
    margin: 20px auto 0;
    float: left;
    position: relative;
}

button.oneUp,
a.button.oneUp {
    width: 70%;
    float: none;
    position: relative;
}

button.twoUp,
a.button.twoUp,
.twoUp {
    width: 49%;
    margin: 20px 2% 0 0;
    float: left;
    position: relative;
}

.twoUp.align_right {
    margin: 20px 0 0 4%;
}

label.twoUp + label.twoUp,
label.threeUp + label.threeUp + label.threeUp,
label.fourUp + label.fourUp + label.fourUp + label.fourUp,
label.fiveUp + label.fiveUp + label.fiveUp + label.fiveUp + label.fiveUp {
    margin-right: 0;
}

button.threeUp,
a.button.threeUp,
.threeUp {
    float: left;
    width: 32%;
    margin: 20px 2% 0 0;
    position: relative;
}

.threeUp.align_right {
    margin: 20px 0 0 2%;
}

button.fourUp,
a.button.fourUp,
.fourUp {
    float: left;
    width: 23.5%;
    margin: 20px 2% 0 0;
    position: relative;
}

.fourUp.align_right {
    margin: 20px 0 0 2%;
}

button.fiveUp,
a.button.fiveUp,
.fiveUp {
    float: left;
    width: 18%;
    margin: 20px 2.5% 0 0;
    position: relative;
}

.fiveUp.align_right {
    margin: 20px 0 0 2.5%;
}

button.twoUp:last-child,
button.threeUp:last-child,
button.fourUp:last-child,
button.fiveUp:last-child,
a.button.twoUp:last-child,
a.button.threeUp:last-child,
a.button.fourUp:last-child,
a.button.fiveUp:last-child,
.twoUp:last-child,
.threeUp:last-child,
.fourUp:last-child,
.fiveUp:last-child {
    margin: 0;
}

#fancybox-content .captcha_box {
    box-sizing: border-box;
    border: 1px solid #ccc;
    padding: 10px 10px;
    margin-bottom: 10px;
}

#fancybox-content .captcha_box img {
    max-width: 100%;
    margin: 20px auto;
    float: none;
    max-height: 100px;
}

#fancybox-content .captcha_box label {
    width: 100%;
    margin-bottom: 0;
}

/* #lightbox_login */
#fancybox-content #form_login {
    text-align: center;
}

#fancybox-content #form_login label {
    float: left;
}

#fancybox-content #form_login label[for="user_id"] {
    margin-bottom: 0;
}

#fancybox-content #form_login label[for="user_id"] span,
#fancybox-content #form_login label[for="user_pwd"] span {
    display: none;
}

#fancybox-content #form_login input[name="user_id"] {
    border-radius: 5px 5px 0 0;
}

#fancybox-content #form_login label[for="user_pwd"] {
    margin-top: 0;
}

#fancybox-content #form_login input[name="user_pwd"] {
    border-radius: 0 0 5px 5px;
    border-top: 0;
}

#fancybox-content .lightbox_login footer {
    display: inline-block;
}

html[lang="ar"] #fancybox-content footer a {
    font-size: 1rem;
}

#fancybox-content .lightbox_login footer a.button:first-child {
    margin-bottom: 4px;
}

#fancybox-content .lightbox_login footer a.button span {
    font-size: 0.6875rem;
}

html[lang="ar"] #fancybox-content .lightbox_login footer a.button span {
    font-size: 1rem;
}

/* #lightbox_security_verification */

/* #fancybox-content #VerifyForm button {
      float: left;
      width: auto; } */

/* #lightbox_confirm */
.lightbox_confirm p,
.lightbox_checkout_confirmation_1 p,
.lightbox_checkout_confirmation_2 p,
.lightbox_security_profile_ok p,
.lightbox_confirm ul,
.lightbox_checkout_confirmation_1 ul,
.lightbox_checkout_confirmation_2 ul,
.lightbox_security_profile_ok ul {
    font-size: 1em;
    padding: 0 0 10px 0;
    text-align: left;
    line-height: 1.5em;
}

html[dir="rtl"] .lightbox_confirm p,
html[dir="rtl"] .lightbox_checkout_confirmation_1 p,
html[dir="rtl"] .lightbox_checkout_confirmation_2 p,
html[dir="rtl"] .lightbox_security_profile_ok p,
html[dir="rtl"] .lightbox_confirm ul,
html[dir="rtl"] .lightbox_checkout_confirmation_1 ul,
html[dir="rtl"] .lightbox_checkout_confirmation_2 ul,
html[dir="rtl"] .lightbox_security_profile_ok ul {
    text-align: right;
}

.lightbox_confirm p {
    text-align: center;
}

.lightbox_checkout_confirmation_2 footer {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.lightbox_redemption_address_maint_1 .scrollBox,
.lightbox_select_household .scrollBox {
    max-height: 120px;
    overflow-x: hidden;
    overflow-y: scroll;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 10px 0 0 10px;
    margin: 0 0 10px 0;
}

html[dir="rtl"] .lightbox_redemption_address_maint_1 .scrollBox {
    direction: ltr;
    text-align: left;
}

.lightbox_redemption_address_maint_1 .scrollBox input[type="radio"] {
    float: left;
}

.lightbox_redemption_address_maint_1 .scrollBox input[type="radio"] + span {
    float: left;
    padding: 0 0 0 10px;
    margin-bottom: 10px;
    text-align: left;
}

.lightbox_redemption_address_maint_1 button.fourUp span {
    padding: 10px 5px;
}

.lightbox_select_household .scrollBox label > .value {
    font-size: inherit;
    padding: 0;
    margin: 0;
    line-height: 1.3em;
    float: right;
}

@media screen and (max-width: 40em) {
    .lightbox_redemption_address_maint_1 .scrollBox {
        max-height: 2000px;
        overflow-y: auto;
    }

    .lightbox_redemption_address_maint_1 .scrollBox input[type="radio"] + span {
        margin-bottom: 0;
    }
}

.lightbox_recurring_redemption_view p,
.lightbox_recurring_redemption_edit p,
.lightbox_recurring_redemption_view h4,
.lightbox_recurring_redemption_edit h4 {
    text-align: left;
}

html[dir="rtl"] .lightbox_recurring_redemption_view p,
html[dir="rtl"] .lightbox_recurring_redemption_edit p,
html[dir="rtl"] .lightbox_recurring_redemption_view h4,
html[dir="rtl"] .lightbox_recurring_redemption_edit h4 {
    text-align: right;
}

.lightbox_recurring_redemption_view h4,
.lightbox_recurring_redemption_edit h4 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.lightbox_select_household input[type="checkbox"],
.lightbox_select_household input[type="radio"] {
    margin-bottom: 0;
}

@media screen and (max-width: 40em) {
    #fancybox-wrap,
    #fancybox-outer,
    #fancybox-content,
    #fancybox-content > div {
        width: 100% !important;
        box-sizing: border-box;
    }

    #fancybox-wrap {
        left: 0 !important;
    }

    #fancybox-outer {
        padding: 20px !important;
    }
}

/*
 * ============================================================================
 * HOME: Index
 * ============================================================================
 */
.lt-ie9 #hero form label.flag,
.lt-ie8 #hero form label.flag,
.msie #hero form label.flag {
    margin-top: 10px;
}

.lt-ie9 #hero form label.flag input[type="checkbox"],
.lt-ie8 #hero form label.flag input[type="checkbox"],
.msie #hero form label.flag input[type="checkbox"] {
    padding-left: 0;
    margin: -10px 0 0;
    width: 15px;
}

.lt-ie8 #hero form label span {
    margin-top: -10px !important;
}

section.index.page_content {
    background: #eee;
    padding: 100px 0 0 0;
    z-index: 1;
}

@media screen and (max-width: 40em) {
    section.index.page_content {
        padding: 0;
        margin: 2px;
    }
}

.page_content.index #hero {
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 0;
    margin-top: -100px;
    min-height: 100px;
}

@media screen and (max-width: 64em) {
    /* medium and down */
    .page_content.index #hero {
        margin-top: 0;
        min-height: 0;
    }
}

@media screen and (min-width: 40em) {
    /* medium and up */
    #hero > .row {
        max-width: 1160px;
        padding: 0 10px;
    }
}

.page_content.index #hero_form {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    z-index: 20;
}

html[dir="rtl"] .page_content.index #hero_form .right {
    float: left !important;
}

@media screen and (max-width: 64em) {
    .page_content.index #hero_form {
        position: relative;
        float: left;
        width: 100%;
        left: 0;
        top: 0;
        margin: 10px 0;
    }
}

.page_content.index #hero_form form {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
    display: inline-block;
    box-sizing: border-box;
    padding: 10px 10px 0;
    width: 100%;
}

.page_content.index #hero_form form label span {
    display: inline-block;
    vertical-align: middle;

    /* padding-bottom: 5px; */
    text-transform: uppercase;
}

.page_content.index #hero_form form label div:nth-child(2) span {
    text-transform: none;
    padding-bottom: 0;
}

@media screen and (max-width: 40em) {
    .page_content.index #hero_form form label {
        margin-bottom: 10px;
    }
}

.page_content.index #hero .slider-wrapper {
    border-radius: 0 0 5px 5px;
    overflow: hidden;
    width: 100%;
}

.slider-wrapper {
    position: relative;
}

.slider-wrapper .nivo-controlNav {
    bottom: 10px;
}

@media screen and (max-width: 40em) {
    .slider-wrapper .nivo-controlNav {
        bottom: 5px;
        padding: 0;
    }
}

.slider-wrapper .nivo-controlNav a {
    background: url("../images/sprite_nav_nivo_home.png") no-repeat 0 0;
    width: 15px;
    height: 15px;
    margin: 0 3px;
}

.slider-wrapper .nivo-controlNav a.active {
    background-position: -20px 0;
}

.slider-wrapper .nivo-caption {
    display: none !important;
}

.slider-wrapper a {
    font-family: "DIN Next W01 Regular", "trebuchet MS", arial, sans-serif;
    color: #3c3c3c;
    text-decoration: none;
}

.slider-wrapper a:hover {
    color: black;
}

.page_content.index #home_featured_offers {
    background: #eee; /* Old browsers */
    background: -moz-linear-gradient(top, #eee 0%, #b5b5b5 100%); /* FF3.6+ */
    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, #eee),
                    color-stop(100%, #b5b5b5)
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    #eee 0%,
                    #b5b5b5 100%
            ); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #eee 0%, #b5b5b5 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #eee 0%, #b5b5b5 100%); /* IE10+ */
    background: linear-gradient(to bottom, #eee 0%, #b5b5b5 100%); /* W3C */
    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#eeeeee", endColorstr="#b5b5b5", GradientType=0); /* IE6-9 */
    width: 100%;

    /* max-width: 100%; */

    /* height: 300px; */
    margin: 0;
}

.page_content.index #home_featured_offers h2 {
    display: block;
    margin: 16px auto 0;

    /* width: 960px; */
    font-size: 36px !important;
    text-transform: uppercase;
    color: #48a5d8;
    line-height: 14px;
    border: 0;
    text-shadow: none;
    padding: 0 16px 10px;
}

html[lang="ar"] .page_content.index #home_featured_offers h2 {
    font-size: 1.375rem !important;
    line-height: 30px;
}

* html .page_content.index #home_featured_offers > h2 {
    overflow-x: hidden;
}

.page_content.index #home_highlight {
    background:
            url(../images/base/bg_highlight_content_repeat_x.jpg) repeat-x top
            left;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-top: 1px solid #fff;
    display: inline-block;
    padding: 40px 0;
}

.page_content.index #home_highlight #home_highlight_holder {
    max-width: 960px;
    margin: 0 auto;
}

.page_content.index #home_highlight .box_highlight {
    display: inline;
    float: left;
    margin: 0 20px 1px 0;

    /* width: 470px; */
}

.page_content.index #home_highlight .box_highlight:last-child {
    margin-right: 0;
}

* html .page_content.index #home_highlight .box_highlight {
    overflow-x: hidden;
}

.page_content.index #home_highlight .box_highlight dl {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    padding: 20px 10px 10px 10px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
    background: #fff;
    margin-bottom: 0;
}

.page_content.index #home_highlight .box_highlight dl dt {
    font-family: "DIN Next W01 Regular", "trebuchet MS", arial, sans-serif;
    font-size: 1.375rem;
    margin-bottom: 10px;
}

.page_content.index #home_highlight .box_highlight dl dd {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -o-border-radius: 5px;
    -ms-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
    background: #f8f8f8;
    overflow: hidden;
}

.page_content.index #home_highlight .box_highlight dl dd figure figcaption {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.75rem;
    font-size: 0.75rem;
    padding: 20px 10px 0 20px;
}

.page_content.index #home_highlight .box_highlight dl dd figure figcaption a {
    display: block;
    margin: 20px 0;
}

.page_content.index .nav_see_all,
.page_content.index .featured_offers_mobile_title,
.page_content.index_pre_enrollment .nav_see_all,
.page_content.index_pre_enrollment .featured_offers_mobile_title,
.page_content.index_lightbox_message_default .nav_see_all,
.page_content.index_lightbox_message_default .featured_offers_mobile_title,
.page_content.index_lightbox_message_default_buttons .nav_see_all,
.page_content.index_lightbox_message_default_buttons .featured_offers_mobile_title,
.page_content.index_lightbox_welcome_surpreenda .nav_see_all,
.page_content.index_lightbox_welcome_surpreenda .featured_offers_mobile_title,
.page_content.index_lightbox_welcome_surpreenda_update .nav_see_all,
.page_content.index_lightbox_welcome_surpreenda_update .featured_offers_mobile_title,
.page_content.index_privacy_warning .nav_see_all,
.page_content.index_privacy_warning .featured_offers_mobile_title {
    display: none;
}

.home_logged .page_intro figure:first-child {
    margin: -40px 0 0;
    border-radius: 0;
}

@media screen and (max-width: 40em) {
    .home_logged .page_intro figure:first-child {
        margin: -20px -20px 0;
    }
}

.home_logged .page_intro figure img {
    min-width: 100%;
}

.home_logged .page_intro .container {
    width: auto;
    margin: 0 -40px -50px;
}

/*
 * ============================================================================
 * HOME: Index Featured Categories / Featured Promo Images
 * ============================================================================

 */
.page_content.index #home_highlight .image_highlight {
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
    padding: 7px;
    box-sizing: border-box;
}

.page_content.index #home_highlight .image_highlight:last-child {
    margin-right: 0;
}

.page_content.index #home_highlight .image_highlight a,
.page_content.index #home_highlight .image_highlight a img {
    position: relative;
    float: left;
    display: block;
    width: 100%;
}

.page_content.index #home_highlight .image_highlight img {
    /* margin: 7px; */
}

/*
 * ============================================================================
 * Basic Page Elements
 * ============================================================================
 */
.page_content {
    width: 100%;
    overflow: hidden;
    *zoom: 1;
    background: rgb(229, 229, 229); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(229, 229, 229, 1) 0%,
                    rgba(175, 175, 175, 1) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, rgba(229, 229, 229, 1)),
                    color-stop(100%, rgba(175, 175, 175, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(229, 229, 229, 1) 0%,
                    rgba(175, 175, 175, 1) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(229, 229, 229, 1) 0%,
                    rgba(175, 175, 175, 1) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(229, 229, 229, 1) 0%,
                    rgba(175, 175, 175, 1) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(229, 229, 229, 1) 0%,
                    rgba(175, 175, 175, 1) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#e5e5e5", endColorstr="#afafaf", GradientType=0); /* IE6-9 */
    padding: 117px 10px 30px;
    margin: -100px 0 0;
    border-bottom: 1px solid #fff;
    position: relative;
    float: left;
}

@media screen and (max-width: 40em) {
    .page_content {
        margin: 0;
        padding: 10px 0;
    }
}

.page_content .page_intro {
    position: relative;

    /* float: left; */

    /* width: 960px; */
    background: #fff;

    /* padding: 40px 0; */

    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

@media screen and (max-width: 1028px) {
    .page_content .page_intro {
        padding: 20px;
    }
}

.page_content.home_logged .page_intro,
.page_content.shop_logged .page_intro,
.page_content.shop_details_logged .page_intro,
.page_content.cart .page_intro,
.page_content.checkout .page_intro,
.page_content.review .page_intro,
.page_content.rewards_summary .page_intro,
.page_content.manage_profile .page_intro,
.page_content.pwrl .page_intro {
    width: 100%;
}

.page_content.shop_details .page_intro,
.page_content.shop_details_logged .page_intro {
    padding: 0;
}

@media screen and (max-width: 40em) {
    .page_content.shop_details #breadcrumb,
    .page_content.shop_details_logged #breadcrumb {
        display: none;
    }
}

.page_content.cart .page_intro,
.page_content.checkout .page_intro,
.page_content.review .page_intro {
    padding: 40px 0 0 0;
}

@media screen and (max-width: 40em) {
    .page_content.cart .page_intro,
    .page_content.checkout .page_intro,
    .page_content.review .page_intro {
        padding: 10px 0 0 0;
    }
}

.payment_information label > span:first-child {
    min-height: 40px;
}

section.print_friendly {
    background: #fff;
    height: 100%;
    width: 100%;
    padding: 40px 0;
}

.page_content h2 {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ccc;
    color: #333;
    line-height: 40px;
    padding: 40px 0 10px 0;
    letter-spacing: -0.05em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 40em) {
    .page_content h2 {
        font-size: 1.5rem;
        padding: 20px 0 5px 0;
    }
}

.page_content.shop_index h2 {
    border-bottom-color: #333;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.page_content.shop_details_logged h2 {
    padding-top: 30px;
    font-size: 1.875rem;
    line-height: 30px;
    text-shadow: 0 1px 0 #fff;
}

.page_content.shop_index #shop_list header,
.page_content.shop #shop_list header {
    display: inline-block;
    float: left;
    width: 100%;
    position: relative;
}

section#shop_offers {
    float: left;
    width: 100%;
    background: #eee; /* Old browsers */
    background: -moz-linear-gradient(top, #eee 0%, #b5b5b5 100%); /* FF3.6+ */
    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, #eee),
                    color-stop(100%, #b5b5b5)
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    #eee 0%,
                    #b5b5b5 100%
            ); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #eee 0%, #b5b5b5 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #eee 0%, #b5b5b5 100%); /* IE10+ */
    background: linear-gradient(to bottom, #eee 0%, #b5b5b5 100%); /* W3C */
    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#eeeeee", endColorstr="#b5b5b5", GradientType=0); /* IE6-9 */
}

* html #shop_offers #shop_list header {
    overflow-x: hidden;
}

#shop_offers #shop_list header #order_type {
    position: relative;
    float: right;
    clear: none;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type {
    float: left;
}

#shop_offers #shop_list header #order_type dt,
#shop_offers #shop_list header #order_type dd {
    float: left;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type dt,
html[dir="rtl"] #shop_offers #shop_list header #order_type dd {
    float: right;
}

html[lang="ar"] #shop_offers #shop_list header #order_type dt,
html[lang="ar"] #shop_offers #shop_list header #order_type dd {
    font-size: 1rem;
}

#shop_offers #shop_list header #order_type dt {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    margin-right: 10px;
    line-height: 35px;
    color: #333;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type dt {
    margin-right: 0;
    margin-left: 10px;
}

html[lang="ar"] #shop_offers #shop_list header #order_type dt {
    font-size: 1rem;
}

#shop_offers #shop_list header #order_type dd {
    background: rgb(252, 252, 252); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(1%, rgba(252, 252, 252, 1)),
                    color-stop(100%, rgba(247, 247, 247, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#fcfcfc", endColorstr="#f7f7f7", GradientType=0); /* IE6-9 */
    display: block;
    text-decoration: none;
    text-shadow: 0 1px 0 #fff;
    box-shadow: 0 1px 0 #bbb, 0 -1px 0 #fff;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
    font-weight: bold;
    color: #999;
    text-transform: uppercase;
    min-width: 60px;
    text-align: center;
    height: 35px;
    margin: 0 0 15px 0;
    overflow: hidden;
}

html[dir="ltr"] #shop_offers #shop_list header #order_type dd:first-of-type {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type dd:first-of-type {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

html[dir="ltr"] #shop_offers #shop_list header #order_type dd:last-of-type {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type dd:last-of-type {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#shop_offers #shop_list header #order_type dd:hover {
    background: #fdfdfd;
    color: #aaa;
}

#shop_offers #shop_list header #order_type dd.active {
    background: #fff;
}

#shop_offers #shop_list header #order_type dd.alphabetical {
    margin-right: 1px;
}

#shop_offers #shop_list header #order_type dd.active {
    background: rgb(102, 102, 102); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, rgba(102, 102, 102, 1)),
                    color-stop(100%, rgba(153, 153, 153, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#666666", endColorstr="#999999", GradientType=0); /* IE6-9 */
    box-shadow: 0 -1px 0 #bbb, 0 1px 0 #fff;
    color: #fff;
    text-shadow: 0 1px 0 #333;
}

/*
#shop_offers #shop_list header #order_type dd.points {
  border-radius: 0 5px 5px 0;
}
*/

#shop_offers #shop_list header #order_type dd a {
    display: inline-block;
    line-height: 35px;
    padding: 0 10px;
}

#shop_offers #shop_list header #order_type dd a:hover {
    color: #333;
}

#shop_offers #shop_list header #order_type dd.active a {
    color: #fff;
}

#shop_offers #shop_list header #order_type dd.active a:hover {
    color: #fff;
}

#shop_offers #shop_list header #order_type dd a:hover {
    color: #333;
}

#shop_offers #shop_list header #order_type .points.descending a {
    background-image: url(../images/base/sort_arrows.png);
    background-position: right 13px;
    background-color: transparent;
    padding: 0 25px 0 10px;
    background-repeat: no-repeat;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type .points.descending a {
    background-position: left 13px;
    padding: 0 10px 0 25px;
}

#shop_offers #shop_list header #order_type .points.ascending a {
    background-image: url(../images/base/sort_arrows.png);
    background-position: right -27px;
    background-color: transparent;
    padding: 0 25px 0 10px;
    background-repeat: no-repeat;
}

.card .item_price {
    padding: 6px;
    height: 40px;
    position: relative;
    clear: both;
    background: #EEE;
    box-shadow: inset 0px 1px 0px #cccccc;
    color: #125a81;
    text-align: right;
    font-weight: bold;
    box-sizing: border-box;
    border-radius: 0 0 5px 5px;
}

.card .item_price .label {
    position: relative;
    float: right;
    clear: both;
    font-size: 0.625rem;
    line-height: 10px;
    text-transform: uppercase;
    color: #515151;
    background: none;
    padding: 0;
}

.card .item_price .number {
    position: relative;
    float: right;
    font-size: 1.125rem;
    line-height: 18px;
    letter-spacing: -0.06em;
}

.card .item_price .cash .label {
    float: left;
}

.card .item_price .cash .label {
    float: left;
}

.card .item_price .points {
    float: right;
}

.card .item_price .cash {
    float: left;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type .points.ascending a {
    background-position: left -27px;
    padding: 0 10px 0 25px;
}

footer #pagination {
    padding-left: 0;
    display: block;
    float: left;
    margin: 0;
}

html[dir="rtl"] footer #pagination {
    float: right;
}

footer #pagination ul {
    height: 25px;
    text-align: center;
    margin: 0;
    direction: ltr;
}

footer #pagination ul li {
    display: inline;
    vertical-align: top;
    float: left;
}

/* html[dir=rtl] footer #pagination ul li {
      float: right; } */
footer #pagination ul li a {
    margin-right: 1px;
    background: rgb(252, 252, 252); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(1%, rgba(252, 252, 252, 1)),
                    color-stop(100%, rgba(247, 247, 247, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#fcfcfc", endColorstr="#f7f7f7", GradientType=0); /* IE6-9 */
    display: inline-block;
    text-decoration: none;
    text-shadow: 0 1px 0 #fff;
    box-shadow: 0 1px 0 #bbb, 0 -1px 0 #fff;
    line-height: 24px;
    font-size: 0.625rem;
    padding: 0 10px;
    height: 24px;
    letter-spacing: -0.01em;
    font-weight: bold;
    color: #999;
    position: relative;
}

footer #pagination ul li:first-child a {
    border-radius: 4px 0 0 4px;
}

footer #pagination ul li:last-child a {
    border-radius: 0 4px 4px 0;
}

/* html[dir=rtl] footer #pagination ul li:first-child a {
          border-radius: 0 4px 4px 0; }
        html[dir=rtl] footer #pagination ul li:last-child a {
          border-radius: 4px 0 0 4px; } */
footer #pagination ul li:hover a {
    background: #fdfdfd;
    color: #aaa;
}

footer #pagination ul li:hover:not(.current) a:active {
    background: #fff;
}

footer #pagination ul li.current a {
    background: rgb(102, 102, 102); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, rgba(102, 102, 102, 1)),
                    color-stop(100%, rgba(153, 153, 153, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#666666", endColorstr="#999999", GradientType=0); /* IE6-9 */
    box-shadow: 0 -1px 0 #bbb, 0 1px 0 #fff;
    color: #fff;
    text-shadow: 0 1px 0 #333;
}

#featured_offers footer #pagination {
    margin-top: -20px;
    margin-bottom: 20px;
}

#filter_catalog_heirarchy {
    float: left;
    width: 100%;
}

#filter_catalog_heirarchy select {
    font-weight: bold;
    margin-bottom: 15px;
    width: 100%;
}

html[lang="ar"] #filter_catalog_heirarchy select {
    font-size: 1rem;
}

.page_content.create_profile .page_intro,
.page_content.rewards_summary .page_intro,
.page_content.manage_profile .page_intro,
.page_content.pwrl .page_intro,
.page_content.shop_details .page_intro,
.page_content.shop_details_logged .page_intro {
    background: #fff;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-radius: 5px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
}

.page_content.shop_details .page_intro .detail_image,
.page_content.shop_details_logged .page_intro .detail_image {
    position: relative;
    float: left;
    clear: left;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    margin: 40px 0;
}

.page_content.shop_details .page_intro .detail_image > figure > img,
.page_content.shop_details_logged .page_intro .detail_image > figure > img {
    border-radius: 5px;
    overflow: hidden;
    border: 0;
    width: 100%;

    /* height: 200px; */
}

/*
.product_nav {
  display: block;
  width: 200px;
}
*/

.product_nav label,
html[dir="rtl"] .product_nav label {
    text-align: center;
    margin-bottom: 0;
}

html[lang="ar"] .product_nav label {
    font-size: 1.125rem;
}

.product_nav button {
    margin-top: 0 !important;
}

html[dir="rtl"] .product_nav > button {
    float: right;
    margin: 20px 0 0 2%;
}

html[dir="rtl"] .product_nav > button:last-child {
    margin-left: 0;
}

.product_nav button:disabled .arrow {
    background-position: 0 -19px;
}

.product_nav button .arrow {
    background-position: left top;
    background-color: transparent;
}

.product_nav button.previous .arrow {
    background-image: url(../images/base/btn_arrow_left.png);
}

html[dir="rtl"] .product_nav button.previous .arrow {
    background-image: url(../images/base/btn_arrow_right.png);
}

.product_nav button.next .arrow {
    background-image: url(../images/base/btn_arrow_right.png);
}

html[dir="rtl"] .product_nav button.next .arrow {
    background-image: url(../images/base/btn_arrow_left.png);
}

.product_nav .text {
    display: none;
}

.product_nav .arrow {
    height: 18px;
    width: 19px;
    display: block;
    margin: 0 auto;
}

.page_content.shop_details .item_details,
.page_content.shop_details_logged .item_details {
    position: relative;
    float: left;

    /* width: 640px; */
    margin: 40px 0;
}

@media screen and (max-width: 40em) {
    .page_content.shop_details .item_details,
    .page_content.shop_details_logged .item_details {
        margin: 0 0 40px 0;
    }
}

/*
.page_content.shop_details_logged .item_details {
  width: 445px;
}
*/

.shop_details .page_intro footer,
.shop_details_logged .page_intro footer {
    float: left;
    width: 100%;
    background: #eee;
    border-top: 1px solid #ccc;
    padding: 20px 0;
    box-sizing: border-box;
}

/*
.page_content.shop_details form,
.page_content.shop_details_logged form {
  float: right;
  display: block;
  width: 640px;
}

.page_content.shop_details_logged form {
  width: 445px;
}
*/

.page_content.shop_details form label,
.page_content.shop_details_logged form label {
    text-align: center;
}

html[lang="ar"] .page_content.shop_details form .price span,
html[lang="ar"] .page_content.shop_details_logged .options .price span {
    font-size: 1.125rem;
}

.page_content.shop_details form .price span,
.page_content.shop_details_logged form .price span,
label > span.name,
label > span.value {
    display: inline-block;
}

.page_content.shop_details form .price .number,
.page_content.shop_details_logged form .price .number {
    line-height: 40px;
    padding: 0;
    color: #48a5d8;
    font-size: 1.5rem;
    font-weight: bold;
}

.page_content.shop_details form .options label,
.page_content.shop_details_logged form .options label {
    width: 50%;
    float: left;
    text-align: center;
    position: relative;
    display: block;
}

.page_content.shop_details form > .error,
.page_content.shop_details form > .message,
.page_content.shop_details form > .success,
.page_content.shop_details_logged form > .error,
.page_content.shop_details_logged form > .message,
.page_content.shop_details_logged form > .success {
    margin: 0 0 10px 0;
    padding: 10px;
}

.page_content.shop_details form > p:last-child,
.page_content.shop_details_logged form > p:last-child {
    margin-bottom: 0;
}

.page_content.shop_details form input[type="text"],
.page_content.shop_details_logged form input[type="text"],
.page_content.shop_details form select,
.page_content.shop_details_logged form select {
    width: 100%;
    text-align: center;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4) inset;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 40px;
    font-size: 1.25rem;
    padding: 6px;
    margin: 0;
    background-color: #fff;
    border-radius: 5px;
}

.page_content.shop_details form select .options,
.page_content.shop_details_logged form select .options {
    text-align: center;
}

.page_content.shop_details form input[type="checkbox"],
.page_content.shop_details_logged form input[type="checkbox"] {
    margin: 4px auto 0;
    float: none;
}

.shop_details form button.primary,
.shop_details_logged form button.primary {
    float: right;
    width: 100%;
    margin: 25px 0 0 0;
}

@media screen and (max-width: 40em) {
    .shop_details form button.primary,
    .shop_details_logged form button.primary {
        margin-top: 30px;
    }
}

.shop_details form .messages,
.shop_details_logged form .messages {
    padding: 30px 0 20px 0;
    position: relative;
    float: left;
}

form .oneUp,
form .twoUp,
form .threeUp,
form .fourUp,
form .fiveUp {
    margin-top: 0;
}

form > .details {
    /* position: relative; */

    /* float: left; */

    /* width: 200px; */
    margin: 0 0 20px 0;
}

form > .add_to_cart {
    position: relative;
    float: right;
}

/*
 * ============================================================================
 * Shopping Cart
 * ============================================================================
 */

.cart_list {
    background: #fff;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;

    /* border-radius: 5px; */

    /* box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.8) inset; */
    overflow: hidden;
    font-size: 0.875rem;
    width: 100%;
    float: left;
    padding: 0;
    margin: 0 0 40px 0;
}

@media screen and (max-width: 40em) {
    .cart_list {
        margin: 0 0 10px 0;
    }
}

.cart_list footer {
    text-align: right;
}

html[dir="rtl"] .cart_list footer {
    text-align: left;
}

.item_row {
    clear: left;
    float: left;
    width: 100%;
}

div.item_row {
    font-size: 0.875rem;
    border-bottom: 1px dashed #ccc;
    padding: 10px 0;
}

.item_row > span {
    display: block;
    box-sizing: border-box;
    float: left;
}

.item_row span.thumb {
    width: 100px;
    padding-top: 10px;
}

.item_row .thumb img {
    border-radius: 5px;
    overflow: hidden;
    border: 0;
}

.item_row span.name,
header.item_row span.name {
    width: 235px;
}

div.item_row span.name {
    font-weight: bold;
    color: #48a5d8;
}

.item_row span.quantity,
.item_row span.frequency {
    display: block;
    text-align: center;
}

@media screen and (max-width: 40em) {
    .item_row span.item_points::after {
        content: attr(data-title);
        font-size: 0.6875rem;
        padding: 0 0 0 5px;
        text-transform: uppercase;
    }

    html[dir="rtl"] .item_row span.item_points::after {
        padding: 0 5px 0 0;
    }

    html[lang="ar"] .item_row span.item_points::after {
        font-size: 1rem;
    }

    .item_row span.quantity::before,
    .item_row span.frequency::before {
        content: attr(data-title);
        font-size: 0.6875rem;
        text-transform: uppercase;
        padding: 15px 0 5px;
        display: block;
        text-align: left;
    }

    html[dir="rtl"] .item_row span.quantity::before,
    html[dir="rtl"] .item_row span.frequency::before {
        text-align: right;
    }

    html[lang="ar"] .item_row span.quantity::before,
    html[lang="ar"] .item_row span.frequency::before {
        font-size: 1rem;
    }
}

.item_row span.item_points,
header.item_row span.item_points {
    /* width: 80px; */
}

html[dir="rtl"] .item_row span.item_points,
html[dir="rtl"] header.item_row span.item_points {
    text-align: right;
}

.item_row span.quantity a {
    display: block;
    margin: 5px 0 0;
    font-size: 0.6875rem;
    text-decoration: none;
}

.item_row span.frequency > label > input[type="checkbox"] {
    margin: 5px 5px 0;
}

.cart_list .frequency > label > span {
    padding: 5px 0 0 0;
    float: left;
    width: 70%;
    font-size: 0.6875rem;
}

.item_row .quantity {
    text-align: center;
}

header.item_row span,
footer.item_row span {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: normal;
    color: #777;
    line-height: 15px;
}

html[lang="ar"] header.item_row span,
html[lang="ar"] footer.item_row span {
    font-size: 1.125rem;
}

.item_row span input[type="text"] {
    /* margin: -8px auto 0; */
    width: 100%;
    text-align: center;
    border: 1px solid #ccc;
    box-shadow: none;
}

.item_row .item_points,
.item_row .total_points,
.item_row .quantity,
.item_row .frequency {
    text-align: left;
    width: 100%;
    display: block;
}

.item_row .item_points,
.item_row .total_points {
    text-align: right;
}

@media screen and (max-width: 40em) {
    .item_row .item_points,
    .item_row .total_points {
        text-align: left;
    }
}

.edit_row {
    box-sizing: border-box;
    display: inline-block;
    margin: 10px 0 0 0;
    float: left;
    width: 100%;
    background: #f7f7f7;
    border-radius: 5px;

    /* overflow: hidden; */
    border: 1px solid #eee;
    padding: 20px 20px 15px;
}

.edit_row label span {
    padding: 0 0 4px 0;
    width: 100%;
}

.checkout label input,
.checkout label select {
    box-shadow: none;
    margin: 0;
    border-radius: 0;
    background-color: #fff;
    border: 1px solid #ddd;
}

.checkout .oneUp,
.checkout .twoUp,
.checkout .threeUp,
.checkout .fourUp,
.checkout .fiveUp {
    margin-top: 0;
    margin-bottom: 0;
}

.cart_list footer span {
    display: inline-block;
    font-size: 100%;
    padding: 10px 0 10px 10px;
}

.cart_list footer span.label {
    background: none;
    float: none;
}

.cart_list footer span.total {
    font-weight: bold;
    color: inherit;
    font-size: 1.125rem;
    float: right;
}

.cart_actions {
    float: left;
    background: #eee;
    width: 100%;
    box-sizing: border-box;
    padding: 20px 0 10px;
}

@media screen and (max-width: 40em) {
    .cart_actions {
        padding: 20px 0;
    }
}

.cart_actions .error,
.cart_actions .success,
.cart_actions .message {
    margin: 0 0 10px 0;
}

.cart_actions button {
    float: left;
    position: relative;
    margin-bottom: 10px;
}

.cart_actions button.continue_shopping,
.cart_actions button.shopping_cart {
    margin-bottom: 0;
}

.cart_actions h3 {
    font-size: 1rem;
    margin: 20px 0 10px 0;
}

.ship_to,
.item_options {
    width: 100%;
    float: left;

    /* padding: 20px 0 20px 20px; */
    box-sizing: border-box;
}

.ship_to label {
    margin-bottom: 0;
}

.ship_to label > span {
    font-size: 0.75rem;
    display: block;
    line-height: 18px;
    float: left;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

html[lang="ar"] .ship_to label > span {
    font-size: 1rem;
}

.ship_to label > span:first-child {
    text-transform: uppercase;
    color: #777;
    line-height: 15px;
    padding: 0 0 10px;
}

.checkout .ship_to label > span:nth-child(2) {
    margin-bottom: 4px;
    padding: 10px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
    direction: ltr;
    text-align: left;
}

.ship_to button {
    float: left;
    margin: 0 0 5px 0;
}

.ship_to button span {
    padding: 5px 10px;
    font-size: 0.6875rem;
    box-sizing: border-box;
}

.item_options input[type="text"] {
    width: 100%;
}

.email_confirmation input[type="checkbox"] + span {
    font-weight: bold;
    width: 90%;
    padding: 0 0 10px 10px;
}

.mapping_info label > span {
    padding: 10px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
    direction: ltr;
    text-align: left;
}

/*
 * ============================================================================
 * Create Profile
 * ============================================================================
 */
.page_content {
    width: 100%;
    overflow: hidden;
    *zoom: 1;
    background: rgb(229, 229, 229); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(229, 229, 229, 1) 0%,
                    rgba(175, 175, 175, 1) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, rgba(229, 229, 229, 1)),
                    color-stop(100%, rgba(175, 175, 175, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(229, 229, 229, 1) 0%,
                    rgba(175, 175, 175, 1) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(229, 229, 229, 1) 0%,
                    rgba(175, 175, 175, 1) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(229, 229, 229, 1) 0%,
                    rgba(175, 175, 175, 1) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(229, 229, 229, 1) 0%,
                    rgba(175, 175, 175, 1) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#e5e5e5", endColorstr="#afafaf", GradientType=0); /* IE6-9 */
    padding: 117px 10px 30px;
    margin: -100px 0 0;
    border-bottom: 1px solid #fff;
    position: relative;
    float: left;
}

@media screen and (max-width: 40em) {
    .page_content {
        margin: 0;
        padding: 10px 0;
    }
}

.page_content .page_intro {
    position: relative;

    /* float: left; */

    /* width: 960px; */
    background: #fff;

    /* padding: 40px 0; */

    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

@media screen and (max-width: 1028px) {
    .page_content .page_intro {
        padding: 20px;
    }
}

.page_content.home_logged .page_intro,
.page_content.shop_logged .page_intro,
.page_content.shop_details_logged .page_intro,
.page_content.cart .page_intro,
.page_content.checkout .page_intro,
.page_content.review .page_intro,
.page_content.rewards_summary .page_intro,
.page_content.manage_profile .page_intro,
.page_content.pwrl .page_intro {
    width: 100%;
}

.page_content.shop_details .page_intro,
.page_content.shop_details_logged .page_intro {
    padding: 0;
}

@media screen and (max-width: 40em) {
    .page_content.shop_details #breadcrumb,
    .page_content.shop_details_logged #breadcrumb {
        display: none;
    }
}

.page_content.cart .page_intro,
.page_content.checkout .page_intro,
.page_content.review .page_intro {
    padding: 40px 0 0 0;
}

@media screen and (max-width: 40em) {
    .page_content.cart .page_intro,
    .page_content.checkout .page_intro,
    .page_content.review .page_intro {
        padding: 10px 0 0 0;
    }
}

.payment_information label > span:first-child {
    min-height: 40px;
}

section.print_friendly {
    background: #fff;
    height: 100%;
    width: 100%;
    padding: 40px 0;
}

.page_content h2 {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    border-bottom: 1px solid #ccc;
    color: #333;
    line-height: 40px;
    padding: 40px 0 10px 0;
    letter-spacing: -0.05em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 40em) {
    .page_content h2 {
        font-size: 1.5rem;
        padding: 20px 0 5px 0;
    }
}

.page_content.shop_index h2 {
    border-bottom-color: #333;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.page_content.shop_details_logged h2 {
    padding-top: 30px;
    font-size: 1.875rem;
    line-height: 30px;
    text-shadow: 0 1px 0 #fff;
}

.page_content.shop_index #shop_list header,
.page_content.shop #shop_list header {
    display: inline-block;
    float: left;
    width: 100%;
    position: relative;
}

section#shop_offers {
    float: left;
    width: 100%;
    padding: 30px 0;
    background: #eee; /* Old browsers */
    background: -moz-linear-gradient(top, #eee 0%, #b5b5b5 100%); /* FF3.6+ */
    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, #eee),
                    color-stop(100%, #b5b5b5)
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    #eee 0%,
                    #b5b5b5 100%
            ); /* Chrome10+,Safari5.1+ */
    background:
            -o-linear-gradient(
                    top,
                    #eee 0%,
                    #b5b5b5 100%
            ); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #eee 0%, #b5b5b5 100%); /* IE10+ */
    background: linear-gradient(to bottom, #eee 0%, #b5b5b5 100%); /* W3C */
    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#eeeeee", endColorstr="#b5b5b5", GradientType=0); /* IE6-9 */
}

* html #shop_offers #shop_list header {
    overflow-x: hidden;
}

#shop_offers #shop_list header #order_type {
    position: relative;
    float: right;
    clear: none;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type {
    float: left;
}

#shop_offers #shop_list header #order_type dt,
#shop_offers #shop_list header #order_type dd {
    float: left;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type dt,
html[dir="rtl"] #shop_offers #shop_list header #order_type dd {
    float: right;
}

html[lang="ar"] #shop_offers #shop_list header #order_type dt,
html[lang="ar"] #shop_offers #shop_list header #order_type dd {
    font-size: 1rem;
}

#shop_offers #shop_list header #order_type dt {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    margin-right: 10px;
    line-height: 35px;
    color: #333;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type dt {
    margin-right: 0;
    margin-left: 10px;
}

html[lang="ar"] #shop_offers #shop_list header #order_type dt {
    font-size: 1rem;
}

#shop_offers #shop_list header #order_type dd {
    background: rgb(252, 252, 252); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(1%, rgba(252, 252, 252, 1)),
                    color-stop(100%, rgba(247, 247, 247, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#fcfcfc", endColorstr="#f7f7f7", GradientType=0); /* IE6-9 */
    display: block;
    text-decoration: none;
    text-shadow: 0 1px 0 #fff;
    box-shadow: 0 1px 0 #bbb, 0 -1px 0 #fff;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
    font-weight: bold;
    color: #999;
    text-transform: uppercase;
    min-width: 60px;
    text-align: center;
    height: 35px;
    margin: 0 0 15px 0;
    overflow: hidden;
}

html[dir="ltr"] #shop_offers #shop_list header #order_type dd:first-of-type {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type dd:first-of-type {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

html[dir="ltr"] #shop_offers #shop_list header #order_type dd:last-of-type {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type dd:last-of-type {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#shop_offers #shop_list header #order_type dd:hover {
    background: #fdfdfd;
    color: #aaa;
}

#shop_offers #shop_list header #order_type dd.active {
    background: #fff;
}

#shop_offers #shop_list header #order_type dd.alphabetical {
    margin-right: 1px;
}

#shop_offers #shop_list header #order_type dd.active {
    background: rgb(102, 102, 102); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, rgba(102, 102, 102, 1)),
                    color-stop(100%, rgba(153, 153, 153, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#666666", endColorstr="#999999", GradientType=0); /* IE6-9 */
    box-shadow: 0 -1px 0 #bbb, 0 1px 0 #fff;
    color: #fff;
    text-shadow: 0 1px 0 #333;
}

#shop_offers #shop_list header #order_type dd.points {
    /* border-radius: 0 5px 5px 0; */
}

#shop_offers #shop_list header #order_type dd a {
    display: inline-block;
    line-height: 35px;
    padding: 0 10px;
}

#shop_offers #shop_list header #order_type dd a:hover {
    color: #333;
}

#shop_offers #shop_list header #order_type dd.active a {
    color: #fff;
}

#shop_offers #shop_list header #order_type dd.active a:hover {
    color: #fff;
}

#shop_offers #shop_list header #order_type dd a:hover {
    color: #333;
}

#shop_offers #shop_list header #order_type .points.descending a {
    background-image: url(../images/base/sort_arrows.png);
    background-position: right 13px;
    background-color: transparent;
    padding: 0 25px 0 10px;
    background-repeat: no-repeat;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type .points.descending a {
    background-position: left 13px;
    padding: 0 10px 0 25px;
}

#shop_offers #shop_list header #order_type .points.ascending a {
    background-image: url(../images/base/sort_arrows.png);
    background-position: right -27px;
    background-color: transparent;
    padding: 0 25px 0 10px;
    background-repeat: no-repeat;
}

html[dir="rtl"] #shop_offers #shop_list header #order_type .points.ascending a {
    background-position: left -27px;
    padding: 0 10px 0 25px;
}

footer #pagination {
    padding-left: 0;
    display: block;
    float: left;
    margin: 0;
}

html[dir="rtl"] footer #pagination {
    float: right;
}

footer #pagination ul {
    height: 25px;
    text-align: center;
    margin: 0;
    direction: ltr;
}

footer #pagination ul li {
    display: inline;
    vertical-align: top;
    float: left;
}

/* html[dir=rtl] footer #pagination ul li {
      float: right; } */
footer #pagination ul li a {
    margin-right: 1px;
    background: rgb(252, 252, 252); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(1%, rgba(252, 252, 252, 1)),
                    color-stop(100%, rgba(247, 247, 247, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(252, 252, 252, 1) 1%,
                    rgba(247, 247, 247, 1) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#fcfcfc", endColorstr="#f7f7f7", GradientType=0); /* IE6-9 */
    display: inline-block;
    text-decoration: none;
    text-shadow: 0 1px 0 #fff;
    box-shadow: 0 1px 0 #bbb, 0 -1px 0 #fff;
    line-height: 24px;
    font-size: 0.625rem;
    padding: 0 10px;
    height: 24px;
    letter-spacing: -0.01em;
    font-weight: bold;
    color: #999;
    position: relative;
    font-family: arial;
}

footer #pagination ul li:first-child a {
    border-radius: 4px 0 0 4px;
}

footer #pagination ul li:last-child a {
    border-radius: 0 4px 4px 0;
}

/* html[dir=rtl] footer #pagination ul li:first-child a {
          border-radius: 0 4px 4px 0; }
        html[dir=rtl] footer #pagination ul li:last-child a {
          border-radius: 4px 0 0 4px; } */
footer #pagination ul li:hover a {
    background: #fdfdfd;
    color: #aaa;
}

footer #pagination ul li:hover:not(.current) a:active {
    background: #fff;
}

footer #pagination ul li.current a {
    background: rgb(102, 102, 102); /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* FF3.6+ */

    background:
            -webkit-gradient(
                    linear,
                    left top,
                    left bottom,
                    color-stop(0%, rgba(102, 102, 102, 1)),
                    color-stop(100%, rgba(153, 153, 153, 1))
            ); /* Chrome,Safari4+ */

    background:
            -webkit-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* Chrome10+,Safari5.1+ */

    background:
            -o-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* Opera 11.10+ */

    background:
            -ms-linear-gradient(
                    top,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* IE10+ */

    background:
            linear-gradient(
                    to bottom,
                    rgba(102, 102, 102, 1) 0%,
                    rgba(153, 153, 153, 1) 100%
            ); /* W3C */

    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#666666", endColorstr="#999999", GradientType=0); /* IE6-9 */
    box-shadow: 0 -1px 0 #bbb, 0 1px 0 #fff;
    color: #fff;
    text-shadow: 0 1px 0 #333;
}

#featured_offers footer #pagination {
    margin-top: -20px;
    margin-bottom: 20px;
}

#filter_catalog_heirarchy {
    float: left;
    width: 100%;
}

#filter_catalog_heirarchy select {
    font-weight: bold;
    margin-bottom: 15px;
    width: 100%;
}

html[lang="ar"] #filter_catalog_heirarchy select {
    font-size: 1rem;
}

.page_content.create_profile .page_intro,
.page_content.rewards_summary .page_intro,
.page_content.manage_profile .page_intro,
.page_content.pwrl .page_intro {
    /* padding: 40px; */
}

/*
 * ============================================================================
 * Rewards Summary
 * ============================================================================
 */
.page_content.rewards_summary .point_summary {
    margin: 40px 0;
    text-align: center;
}

.page_content.rewards_summary .point_summary > div {
    text-align: center;
}

.page_content.rewards_summary .point_summary span.label {
    height: 30px;
    background: none;
    white-space: normal;
    line-height: 14px;
    color: #999;
    text-transform: uppercase;
    padding: 0;
    display: block;
}

@media screen and (max-width: 40em) {
    /* small only */
    .page_content.rewards_summary .point_summary span.label {
        height: auto;
    }
}

.page_content.rewards_summary .point_summary span.value {
    line-height: 40px;
    padding: 0;
    color: #48a5d8;
    font-size: 1.1rem;
    font-weight: bold;
}

@media screen and (max-width: 64em) {
    /* medium and below */
    .page_content.rewards_summary .point_summary span.value {
        font-size: 1.125rem;
    }
}

.page_content.rewards_summary .point_summary .plus span.value,
.page_content.rewards_summary .point_summary .minus span.value,
.page_content.rewards_summary .point_summary .equals span.value {
    color: #333;
    line-height: 30px;
}

/* fix for date wrapping in first column of tables */
.rewards_summary table td:first-child {
    min-width: 100px;
}

.rewards_summary .paper_statements table {
    border: none;
    margin-bottom: 0;
}

.rewards_summary .paper_statements td {
    background: #fff;
    border: none;
    text-align: left;
}

.rewards_summary .paper_statements td:first-child {
    width: 30px;
}

.rewards_summary .paper_statements .fourUp {
    margin-top: 10px;
}

@media screen and (min-width: 64em) {
    .rewards_summary .point_summary_by_product tbody tr {
        background: #fff;
    }
}

/*
 * ============================================================================
 * Rewards Summary Printer Friendly Modal
 * ============================================================================
 */

#divPrinterFriendlyContentHeader table {
    background: none;
    border: none;
    text-align: center;
}

#divPrinterFriendlyContentHeader table tr {
    background: none;
    border: none;
}

#divPrinterFriendlyContentHeader table td {
    border: none;
}

#divPrinterFriendlyContentHeader table td:first-child {
    width: 100px;
}

#criteria_label,
#statementDatePrint {
    /* width: auto; */

    /* display: inline-block; */
}

body > center {
    background: white;
}

/*
 * ============================================================================
 * Rewards Summary Printer Friendly Settings
 * ============================================================================
 */

#paperStatementsSwForm table tr,
#paperStatementsSwForm table td {
    border-width: 0;
    background: none;
    vertical-align: middle;
}

#paperStatementsSwForm table td:first-child {
    max-width: 30px;
}

#paperStatementsSwForm table td input[type="radio"] {
    margin: 0;
}

/*
 * ============================================================================

 * Rewards Summary Bonus Tracker
 * ============================================================================
 */

.bonus_tracker .chart {
    margin: 30px 0;
    padding: 0;
    float: left;
    width: 100%;
}

.bonus_tracker .name {
    color: #ccc;
    font-weight: bold;
    font-size: 1rem;
    width: 100%;
    display: block;
    line-height: 16px;
    padding-bottom: 10px;
}

.bonus_tracker .line img {
    height: 100%;
    width: 100%;
}

.bonus_tracker .line.success {
    /* background: url(../images/base/bonus_tracker_line_success.png) repeat-x bottom; */
}

.bonus_tracker .number {
    font-size: 1rem;
    font-weight: bold;
    color: #eee;
}

.bonus_tracker .pending .number {
    color: #ccc;
}

.bonus_tracker .failure .number {
    color: #dc3636;
}

.bonus_tracker .success .number {
    color: #47c155;
}

@media screen and (max-width: 64em) {
    .bonus_tracker .chart .month {
        float: left;
        clear: left;
        margin: 5px 0;
    }

    html[dir="rtl"] .bonus_tracker .chart .month {
        float: right;
        clear: right;
    }

    .bonus_tracker .chart .name {
        width: 160px;
        float: left;
        margin-left: 90px;
        padding: 5px 0;
    }

    html[dir="rtl"] .bonus_tracker .chart .name {
        float: right;
        margin-left: 0;
        margin-right: 90px;
    }

    .bonus_tracker .chart .icon {
        margin-left: -207px;
        width: 30px;
        height: 30px;
        float: left;
    }

    html[dir="rtl"] .bonus_tracker .chart .icon {
        float: right;
        margin-left: 0;
        margin-right: -207px;
    }

    .bonus_tracker .chart .line {
        width: 6px;
        height: 30px;
        margin: 0 0 0 55px;
        display: block;
        float: left;
        clear: left;
    }

    html[dir="rtl"] .bonus_tracker .chart .line {
        float: right;
        clear: right;
        margin-left: 0;
        margin-right: 55px;
    }

    .bonus_tracker .chart .number {
        margin: 5px 0 0 -230px;
        line-height: 16px;
        display: block;
        box-sizing: border-box;
        float: left;
    }

    html[dir="rtl"] .bonus_tracker .chart .number {
        float: right;
        margin: 5px -230px 0 0;
    }
}

@media screen and (min-width: 64.063em) {
    .bonus_tracker .icon {
        margin: 0 auto;
        display: block;
        position: relative;
    }

    .bonus_tracker .chart .month {
        float: left;
        width: 95px;
        box-sizing: border-box;
        margin-right: 3px;
        text-align: center;
    }

    html[dir="rtl"] .bonus_tracker .chart .month {
        float: right;
        margin-right: 0;
        margin-left: 3px;
    }

    .bonus_tracker .month:last-child {
        margin-right: 0;
    }

    .bonus_tracker .line {
        height: 6px;
        width: 56px;
        float: left;
        margin: 29px -30px 0;
    }

    html[dir="rtl"] .bonus_tracker .line {
        float: right;
    }

    .bonus_tracker .number {
        float: left;
        width: 100%;
        margin-top: 10px;
    }
}

/*

 * ============================================================================
 * Manage Profile
 * ============================================================================

 */

.travel_program button {
    margin: 0;
}

.travel_program .row:first-child button {
    margin-top: 22px;
}

.travel_program .row > div:first-child > input[type="radio"] {
    margin-top: 10px;
}

.travel_program .row:first-child > div:first-child > input[type="radio"] {
    margin-top: 30px;
}

@media screen and (max-width: 40em) {
    .travel_program label::before {
        content: attr(data-title);
        padding: 0 0 5px;
        display: block;
    }

    .travel_program label > span {
        display: none;
    }

    .travel_program .row:first-child button {
        margin-top: 0;
    }

    .travel_program .row {
        margin-bottom: 20px;
    }

    .travel_program .row > div:first-child > input[type="radio"] {
        margin-top: 30px;
    }
}

.notification_preferences input[type="checkbox"] {
    clear: left;
}

/*
 * ============================================================================
 * PWRL
 * ============================================================================
 */
.manage_profile .content,
.pwrl .content {
    /* padding: 20px 20px 40px; */
    height: auto;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

dd .content > p:not(".error"),
dd .content > p:not(".message") {
    padding: 0;
}

dd .content > p.error,
dd .content > p.message {
    margin-top: 0;
}

form.select_account_group {
    margin: 0 0 20px 0;
    position: relative;
    float: left;
    width: 100%;
}

.maximumCashBackPerPeriod .currency,
.perferredMinimumCashAmt .currency {
    display: block;
    width: 25%;
    float: left;
    font-weight: bold;
    line-height: 35px;
    font-size: 1rem;
    text-align: right;
    padding-right: 5px;
    box-sizing: border-box;
}

html[dir="rtl"] .maximumCashBackPerPeriod .currency,
html[dir="rtl"] .perferredMinimumCashAmt .currency {
    float: right;
    text-align: left;
    padding-right: 0;
    padding-left: 5px;
}

.maximumCashBackPerPeriod input,
.maximumCashBackPerPeriod select,
.perferredMinimumCashAmt input,
.perferredMinimumCashAmt select {
    float: left;
    width: 75%;
}

.preferredSpan {
    float: left;
    padding-right: 5px;
    padding-top: 14px;
}

.preferredMinCashAmt {
    padding-top: 10px;
}

.prefferedCashAmt {
    float: left !important;
    padding-top: 10px;
}

.preferredButton {
    float: right;
    padding-top: 10px;
}

.perferredMinimumCashAmt button {
    margin-top: 10px;
}

.pwrl .notification_prefs label > .value {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

@media screen and (max-width: 40em) {
    label[data-title]::before {
        content: attr(data-title);
        text-transform: uppercase;
        color: #777;
        margin: 0 0 5px 0;
        display: inline-block;
        width: 100%;
        min-height: 10px;
        font-family: Helvetica, Arial, sans-serif;
        font-size: 0.75rem;
        font-weight: normal;
    }
}

/*
 * ============================================================================
 * Free Form Placeholders
 * ============================================================================
 */
.free_form_placeholder {
    margin: 20px 0;
    border: 3px dashed #ccc;
    padding: 3px;
    border-radius: 10px;
    color: #aaa;
}

.free_form_placeholder > span {
    display: block;
    background: #ddd;
    padding: 15px;
    border-radius: 7px;
}

@media screen and (max-width: 63.99em) {
    .home_logged .page_intro .free_form_placeholder {
        margin-top: 0;
        margin-bottom: 40px;
    }
}

@media screen and (min-width: 64em) {
    .home_logged .page_intro .free_form_placeholder {
        margin-top: 0;
        margin-bottom: 80px;
    }
}

/*
 * ============================================================================
 * Point Transfer
 * ============================================================================
 */

.trans_amt input[type="number"] {
    margin-bottom: 0;
}

.transfer_minimum,
.transfer_maximum {
    font-size: 11px;
}

.transfer_minimum {
    text-align: right;
}

html[dir="rtl"].transfer_minimum {
    text-align: left;
}

.transfer_maximum {
    text-align: left;
}

html[dir="rtl"].transfer_maximum {
    text-align: right;
}

.transfer_minimum .value,
.transfer_maximum .value {
    padding-top: 0;
}

@media screen and (max-width: 40em) {
    label.transfer_minimum > span:first-child,
    label.transfer_maximum > span:first-child {
        font-size: 9px;
    }

    label.transfer_minimum > span.value,
    label.transfer_maximum > span.value {
        font-size: 12px;
    }
}

div.transfer_amount_slider.range-slider {
    margin-top: 21px;
    margin-bottom: 10px;
    border-color: #ccc;
}

input#trans_amt,
span.range-slider-handle,
span.range-slider-active-segment {
    /* background-color: #caeec8; */

    /* border-color: #679b52; */

    /* color: #46802f; */

    /* font-weight: bold; */
    font-size: 1rem;
    text-align: center;
}

span.range-slider-active-segment {
    border-width: 1px;
    border-style: solid;
    border-color: #777;
    margin: -1px 0 0 -1px;
    height: 16px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d6d6d6+0,b5b5b5+100 */
    background: #d6d6d6; /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    #d6d6d6 0%,
                    #b5b5b5 100%
            ); /* FF3.6-15 */
    background:
            -webkit-linear-gradient(
                    top,
                    #d6d6d6 0%,
                    #b5b5b5 100%
            ); /* Chrome10-25,Safari5.1-6 */
    background:
            linear-gradient(
                    to bottom,
                    #d6d6d6 0%,
                    #b5b5b5 100%
            ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#d6d6d6", endColorstr="#b5b5b5", GradientType=0); /* IE6-9 */
}

span.range-slider-handle,
span.range-slider-handle:hover {
    border-width: 1px;
    border-style: solid;
    border-color: #777;
    border-radius: 10px;
    margin-top: 1px;
    overflow: hidden;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d6d6d6+0,b5b5b5+100 */
    background: #d6d6d6; /* Old browsers */
    background:
            -moz-linear-gradient(
                    top,
                    #d6d6d6 0%,
                    #b5b5b5 100%
            ); /* FF3.6-15 */
    background:
            -webkit-linear-gradient(
                    top,
                    #d6d6d6 0%,
                    #b5b5b5 100%
            ); /* Chrome10-25,Safari5.1-6 */
    background:
            linear-gradient(
                    to bottom,
                    #d6d6d6 0%,
                    #b5b5b5 100%
            ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:dximagetransform.microsoft.gradient(startColorstr="#d6d6d6", endColorstr="#b5b5b5", GradientType=0); /* IE6-9 */
}

.points_transfered_by_period {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px 10px 10px 60px;
    text-align: left;
    background-repeat: no-repeat;
    background-position: 18px center;
    margin-bottom: 10px;
}

.points_transfered_by_period label {
    margin: 0;
}

.points_transfered_by_period .value {
    display: block;
    padding: 0;
}

.transfered_this_month,
.limit_per_month {
    background-image: url(../images/base/icon_month_small.png);
}

.transfered_this_year,
.limit_per_year {
    background-image: url(../images/base/icon_year_small.png);
    margin-bottom: 0;
}

.transfer_amount_slider_box {
    background: #fafafa;
    padding: 10px 10px 0;
    border-width: 0 1px 1px;
    border-style: solid;
    border-color: #ccc;
    border-radius: 0 0 10px 10px;
    margin: 0 10px;
}

/*
 * ============================================================================
 */
.user_profile {
    white-space: pre-line;
    width: 160px;
}

.hide {
    display: none;
}

.invisible {
    visibility: hidden;
}

.accordion-navigation.inner {
    margin-bottom: 15px !important;
}

.accordion-navigation.inner.active {
    margin-bottom: 0 !important;
}

.divider {
    border-top: 1px solid #ccc;
    width: 100%;
    display: inline-block;
    margin-bottom: 15px;
}

.accordion-navigation.inner > a {
    height: 33px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    padding: 3px 10px;
    background-image: none;
}

.accordion-navigation.inner > a::after {
    content: "+";
    float: right;
    font-size: 20px;
}

.accordion-navigation.inner.active > a::after {
    content: "-";
}

.statement-header {
    cursor: pointer;
    background-color: #f6f6f6;
}

.statement-header a {
    text-decoration: inherit;
    color: inherit !important;
}

.statement-header a::before {
    content: "+";
    float: left;
    margin-right: 2px;
    font-size: 15px;
}

.statement-header.active a::before {
    content: "-";
}

.statement-detail {
    overflow: hidden;
    display: none;
}

.statement-detail td {
    padding-left: 30px;
}

table.dataTable .points-expire {
    display: none;
}

/* Added for IR Recaptcha */
.ir-recaptcha {
    margin-bottom: 25px !important;
}

.ir-recaptcha > div {
    display: inline-block !important;
    vertical-align: top !important;
}

@media screen and (max-width: 410px){
    #rc-imageselect, .g-recaptcha {
        transform:scale(0.7);
        -webkit-transform:scale(0.7);
        transform-origin:0 0;
        -webkit-transform-origin:0 0;
    }
}

a.pageLink {
    font-weight: bold;
    font-size: 11px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    text-decoration: underline;
}

.disabled-element {
    opacity: 0.65;
    pointer-events: none;
}

div.consent_opt_out_table {
    text-align: left;
    border-collapse: collapse;
    border: 0;
    padding: 5px;
}

div.consent_data div {
    vertical-align: middle;
    background-color: #efeeee;
    border-style: hidden !important;
    padding: 5px;
}

div.consent_divider div {
    background-color: #fff;
    border-style: hidden !important;
    padding: 5px;
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

.required_consent {
    content: "*";
    color: #f00;
    font-size: 1rem;
    line-height: 1rem;
    margin-left: 2px;
}

.left-off-canvas-menu li.adjusted-height1,
.right-off-canvas-menu li.adjusted-height1 {
    height: 100px;
}

header div#nav_holder #logged_panel li.adjusted-height2 {
    height: 80px;
}

header div#nav_holder #logged_panel li.adjusted-height3 {
    height: 40px;
}

header div#nav_holder #logged_panel li.last-login {
    height: 20px;
    width: 100%;
}

header div#nav_holder #logged_panel li a.last-login-label {
    padding: 3px 5px 0 0;
    text-align: right;
    font-size: 65%;
}

.left-off-canvas-menu ul li a.last-login-label {
    font-size: 65%;
}

.accordion .accordion-navigation.active a,
.accordion dd.active a {
    border: 0;
}

.back_button {
    display: none;
}		

@import url(overrides.css);
.tab-class:focus{
    background: #DCDCDC;	
}
a img :focus {
   border-style: groove;
   border-width: 1px;
   border-color: white;	
}
#locale .cs-select.lang-css{
	background-color : #DCDCDC;
}
header div#nav_holder #logged_panel li a:focus{
   border-style: dashed;
   border-width: 1px;
   border-color: #d2d2de;
   color:#4c4c4c;
}
#user_actions > nav.sidebar_menu > ul > li > a:focus{
	background: #666;
	color: #bbb;
	text-shadow: 0 1px 0 #222;
    box-shadow: 0 1px 0 #555 inset;
}

#fancybox-wrap #fancybox-outer.fancybox-popup {
    padding: 0;
    border: 0;
    background: transparent;
}

#fancybox-wrap #fancybox-outer.fancybox-popup #fancybox-content {
    border: 0;
}

#fancybox-wrap.fullscreen .fancy-popup > a > img, #fancybox-wrap.fullscreen .fancy-popup > img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0;
}

#fancybox-wrap.fullscreen #fancybox-content { height: 100%!important; }

.alert-box{
	margin-top: 2%;
    width: 98%;
    left: 2%;
    right: 2%;
    background-color: #A0E8FF;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
.otp-sms-mobile {
    text-align:left;
}
.otp-sms-mobile p.otp-country-code-update {
    text-align: left;
    margin-left: 20px;
}
.otp-sms-mobile-country-code input[type="text"] {
    width: 22%;
    display: inline;
    height: 28px;
}
.otp-sms-mobile-country-code input[type="radio"] {
    float:left;
    margin-bottom:0px;
    margin-top:8px;
}
.otp-sms-mobile-country-code span.otp-sms-plus-sign {
    font-size:18px;
    width:8%;
    margin-top:2px;
}
.otp-sms-phone-num {
    font-size:0.80rem;
}
form p.help a.otp-country-code-update-txt {
    padding-top: 2px;
}


/* ///////// ALERT BOX NOTIFICATIONS ///////// */

.alert-box.status-message {
    display: inline-block;
    width: 100%;
    left: 0;
    right: 0;
}

@media screen and (max-width: 40em) {
    #fancybox-wrap #fancybox-outer.fancybox-popup {
        padding: 0px!important;
    }
	
    #fancybox-wrap.fullscreen {
        top: 0!important;
		padding: 0px;
	}
}

/* ///////// ALERT BOX NOTIFICATIONS - End ///////// */
#locale .cs-select .cs-options ul li:hover{
	background-color: #DCDCDC;
	color:#434343;
}
nav.sidebar_menu > ul ul > li > a:focus{
	background-color: #DCDCDC;
}
nav.sidebar_menu > ul li > a:focus{
	background-color: #DCDCDC;
}
dd.accordion-navigation > a:focus {
    background-color: #DCDCDC;
    overflow: visible;
}
/*Tabbing and focus*/
.card:focus .caption{
	display:block;
}
#breadcrumb li a:focus {
    text-decoration: underline;
}
.tabs > dd.active > a:focus{
	background-color: #DCDCDC;
}
.tabs > dd > a:focus{
	background-color: #DCDCDC;
}
form p.help a:focus {
    color: #197eb6;
}
footer #pagination ul li a:focus{
	color:#DCDCDC;
}

header div#nav_holder #logged_panel li:focus, header div#nav_holder #logged_panel li.cart_link:focus {
    background-color: #48a5d8;
    background-position: 25px -68px;
    transition: background-color 200ms;
    
}
#featured_offers nav.landing_offer_categories > a:focus {
    background-color: #eee;
    color: #888;
}


/* Single Shipping address option */

.ship_to_single_address button[disabled]:hover > span {
    padding: 5px 10px;
}

.single_address_po_box_error { color: red; }