/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    design
 * @package     default_default
 * @copyright   Copyright (c) 2013 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

/* Reset ================================================================================= */
* {
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
    color: #000;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 20px;
    letter-spacing: 0.5px;
}

img {
    border: 0;
    vertical-align: top;
}

a {
    color: #000000;
    text-decoration: initial;
}

a:hover {
    text-decoration: none;
    color: #989797;
}

:focus {
    outline: 0;
}

/* Headings */
h1, h2, h3,
h4, h5, h6 {
    margin: 0 0 5px;
    line-height: 1.35;
}

h1 {
    font-size: 20px;
    font-weight: normal;
}

h2 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

h3 {
    font-size: 16px;
    font-weight: bold;
}

h4 {
    font-size: 14px;
    font-weight: bold;
}

h5 {
    font-size: 12px;
    font-weight: bold;
}

h6 {
    font-size: 11px;
    font-weight: bold;
}

/* Forms */
form {
    display: inline;
}

fieldset {
    border: 0;
}

legend {
    display: none;
}

/* Table */
table {
    border: 0; /*border-collapse:collapse;*/
    border-spacing: 0;
    empty-cells: show;
    font-size: 100%;
}

caption, th, td {
    vertical-align: top;
    text-align: left;
    font-weight: normal;
}

/* Content */
p {
    margin: 0 0 10px;
}

strong {
    font-weight: bold;
}

address {
    font-style: normal;
    line-height: 1.35;
}

cite {
    font-style: normal;
}

q,
blockquote {
    quotes: none;
}

q:before,
q:after {
    content: '';
}

small, big {
    font-size: 1em;
}

/*sup           { font-size:1em; vertical-align:top; }*/

/* Lists */
ul, ol {
    list-style: none;
}

/* Tools */
.hidden {
    display: block !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.nobr {
    white-space: nowrap !important;
}

.wrap {
    white-space: normal !important;
}

.a-left {
    text-align: left !important;
}

.a-center {
    text-align: center !important;
}

.a-right {
    text-align: right !important;
}

.v-top {
    vertical-align: top;
}

.v-middle {
    vertical-align: middle;
}

.f-left,
.left {
    float: left !important;
}

.f-right,
.right {
    float: right !important;
}

.f-none {
    float: none !important;
}

.f-fix {
    float: left;
    width: 100%;
}

.no-display {
    display: none;
}

.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.no-bg {
    background: none !important;
}

/* ======================================================================================= */

/* Layout ================================================================================ */
.wrapper {
}

.page {
    background-color: #f5f5f5;
}

.cms-home .page {
    background-color: transparent;
}

.header-container {
    position: relative;
    transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -ms-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    z-index: 9999;
    background: #000;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.cms-index-index .header-container {
    position: absolute;
    left: 0;
    right: 0;
    background: #000;
    margin-bottom: 0px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.header-container.fixed {
    position: fixed;
    background: #000;
    animation: fixedAnim 1s ease 0s normal both 1 running;
    -webkit-animation: fixedAnim 1s ease 0s normal both 1 running;
    -moz-animation: fixedAnim 1s ease 0s normal both 1 running;
    -ms-animation: fixedAnim 1s ease 0s normal both 1 running;
    -o-animation: fixedAnim 1s ease 0s normal both 1 running;
    top: 0;
    left: 0;
    right: 0;
    transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

@-webkit-keyframes fixedAnim {
    0% {
        top: -100%;
    }
    100% {
        top: 0;
    }
}

@-moz-keyframes fixedAnim {
    0% {
        top: -100%;
    }
    100% {
        top: 0;
    }
}

@keyframes fixedAnim {
    0% {
        top: -100%;
    }
    100% {
        top: 0;
    }
}

.wrapped {
    margin-top: 98px;
}

.nav-container1 {
    display: none;
}

.nav-container {
    margin-top: 22px;
    float: right;
    margin-bottom: -6px;
    margin-right: 40px;
}

.main-container {
}

.footer-container {
    background: #1a1a1a;
    color: #999;
}

.header-container, .nav-container, .main-container, .footer-container {
}

.header, .main, .footer, .container-width, .cms-index-index .messages {
    width: 100%;
    margin: 0 auto;
    padding: 5px;
    max-width: 1200px;
}

.catalog-category-view .main, .catalog-product-view .main {
    max-width: 90%;
    padding-left: 20px;
    padding-right: 20px;
}

.cms-index-index .messages {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 9999;
    margin: 0 auto !important;
    top: 120px;
}

#spinner {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/ajax-loader.gif") 50% 50% no-repeat #000;
}

.header {
    position: relative;
    z-index: 10;
    background-color: transparent;
    padding: 15px 0 0;
    text-align: center;
    width: 96%;
}

.header_top {
    float: left;
    width: 100%;
}

.header-bottom {
}

.main {
}

.catalogsearch-term-popular .main {
    min-height: 250px;
}

.footer {
    padding: 0px;
    background: #1a1a1a;
}

.page-print {
    background: #fff;
    padding: 25px 30px;
    text-align: left;
}

.page-empty {
    background: #fff;
    padding: 20px;
    text-align: left;
}

.page-popup {
    background: #fff;
    padding: 25px 30px;
    text-align: left;
}

/* Base Columns */
.col-left {
    float: left;
    width: 222px;
    padding: 0 0 0px;
}

.col-main {
    float: left;
    width: 78%;
    padding: 0 0 0px;
}

.col-right {
    float: right;
    width: 15%;
    padding: 0 0 0px;
}

/* 1 Column Layout */
.col1-layout .col-main {
    float: none;
    width: 99%;
    margin-bottom: 80px;
}

/* 2 Columns Layout */
.col2-left-layout .col-main {
    float: right;
}

.col2-right-layout .col-main {
    margin-bottom: 80px;
}

/* 3 Columns Layout */
.col3-layout .col-main {
    width: 540px;
    margin-left: 10px;
}

.col3-layout .col-wrapper {
    float: left;
    width: 760px;
}

.col3-layout .col-wrapper .col-main {
    float: right;
}

.cms-home .col-main {
    margin-bottom: 0;
}

/* Content Columns */
.col2-set .col-1 {
    float: left;
    width: 48.5%;
}

.col2-set .col-2 {
    float: right;
    width: 48.5%;
}

.col2-set .col-narrow {
    width: 32%;
}

.col2-set .col-wide {
    width: 65%;
}

.col3-set .col-1 {
    float: left;
    width: 32%;
}

.col3-set .col-1 img {
    width: 100%;
}

.col3-set .col-2 {
    float: left;
    width: 32%;
    margin-left: 2%;
}

.col3-set .col-3 {
    float: right;
    width: 32%;
}

.col4-set .col-1 {
    float: left;
    width: 23.5%;
}

.col4-set .col-2 {
    float: left;
    width: 23.5%;
    margin: 0 2%;
}

.col4-set .col-3 {
    float: left;
    width: 23.5%;
}

.col4-set .col-4 {
    float: right;
    width: 23.5%;
}

/* ======================================================================================= */

/* Global Styles ========================================================================= */
/* Form Elements */
input, select, textarea, button {
    vertical-align: middle;
    font-family: 'Open Sans', sans-serif;
}

input.input-text, select, textarea {
    background: #fff;
    border: 1px solid #DDD;
}

input.input-text, textarea {
    padding: 5px;
}

input.input-tex:focus, textarea:focus {
    -moz-box-shadow: #bbb 0 0 3px;
    -webkit-box-shadow: #bbb 0 0 3px;
    box-shadow: #bbb 0 0 3px;
}

select {
    padding: 5px;
}

select option {
    padding-right: 10px;
}

select.multiselect option {
    border-bottom: 1px solid #CDCDCD;
    padding: 2px 5px;
}

select.multiselect option:last-child {
    border-bottom: 0;
}

textarea {
    overflow: auto;
}

input.radio {
    margin-right: 3px;
}

input.checkbox {
    margin-right: 3px;
}

input.qty {
    width: 2.5em !important;
}

button.button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/* FF Fix */
button.button {
    -webkit-border-fit: lines;
}

/* <- Safari & Google Chrome Fix */
.ie7 button.button {
    height: auto !important;
}

button.button {
    overflow: visible;
    width: auto;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
}

button.button span, .back-link a {
    display: block;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    padding: 8px 32px;
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid #ccc;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    background-color: rgb(141, 210, 153);
}

button.button span span {
    border: 0;
    padding: 0;
}

button.button:hover span, .back-link a:hover, .cart .discount button:hover span {
    background: #00A1EA;
    border-color: #00A1EA;
    color: #fff;
}

button.disabled span {
    border-color: #bbb !important;
    background: #bbb !important;
}

button.btn-checkout span {
    border: 0;
    padding: 8px 32px;
    font-size: 14px;
}

.cart .discount button span, button.btn-checkout span {
    color: #fff;
    background: #00A1EA;
    border: 2px solid #00A1EA;
}

.cart .discount button span span {
    border: none
}

.cart .discount button:hover span, button.btn-checkout:hover span {
    background: transparent;
    color: #000;
    border-color: #ccc;
}

button.btn-checkout.no-checkout span {
    color: #b8baba;
}

button.btn-checkout.no-checkout span span {
}

p.control input.checkbox,
p.control input.radio {
    margin-right: 6px;
}

/* Form Highlight */
input.input-text:focus, select:focus, textarea:focus {
}

/*.highlight { background:#efefef; }*/

/* Form lists */
/* Grouped fields */
/*.form-list { width:535px; margin:0 auto; overflow:hidden; }*/
.form-list li {
    margin: 0 0 8px;
}

.form-list label {
    float: left;
    font-weight: normal;
    position: relative;
    z-index: 0;
    padding-bottom: 5px;
}

.form-list label.required {
}

.form-list label.required em {
    float: right;
    font-style: normal;
    color: #DD4B39;
    position: absolute;
    top: 0;
    right: -8px;
}

.form-list li.control label {
    float: none;
}

.form-list li.control input.radio,
.form-list li.control input.checkbox {
    margin-right: 6px;
}

.form-list li.control .input-box {
    clear: none;
    display: inline;
    width: auto;
}

.form-list .input-box {
    display: block;
    clear: both;
    width: 260px;
}

.form-list .field {
    float: left;
    width: 275px;
}

.form-list input.input-text {
    width: 250px;
}

.form-list textarea {
    width: 250px;
    height: 10em;
}

.form-list select {
    width: 260px;
}

.form-list li.wide .input-box {
    width: 535px;
}

.form-list li.wide input.input-text {
    width: 529px;
}

.form-list li.wide textarea {
    width: 529px;
}

.form-list li.wide select {
    width: 535px;
}

.form-list li.additional-row {
    border-top: 1px solid #ccc;
    margin-top: 10px;
    padding-top: 7px;
}

.form-list li.additional-row .btn-remove {
    float: right;
    margin: 5px 0 0;
}

.form-list .input-range input.input-text {
    width: 74px;
}

.form-list-narrow li {
    margin-bottom: 0;
}

.form-list-narrow li .input-box {
    margin-bottom: 6px;
}

.form-list-narrow li.wide .input-box {
    width: 260px;
}

.form-list-narrow li.wide input.input-text,
.form-list-narrow li.wide textarea {
    width: 254px
}

.form-list-narrow li.wide select {
    width: 260px;
}

/* Customer */
.form-list .customer-name-prefix .input-box,
.form-list .customer-name-suffix .input-box,
.form-list .customer-name-prefix-suffix .input-box,
.form-list .customer-name-prefix-middlename .input-box,
.form-list .customer-name-middlename-suffix .input-box,
.form-list .customer-name-prefix-middlename-suffix .input-box {
    width: auto;
}

.form-list .name-prefix {
    width: 65px;
}

.form-list .name-prefix select {
    width: 55px;
}

.form-list .name-prefix input.input-text {
    width: 49px;
}

.form-list .name-suffix {
    width: 65px;
}

.form-list .name-suffix select {
    width: 55px;
}

.form-list .name-suffix input.input-text {
    width: 49px;
}

.form-list .customer-name-prefix-middlename-suffix .name-firstname,
.form-list .customer-name-prefix-middlename .name-firstname {
    width: 140px;
}

.form-list .customer-name-prefix-middlename-suffix .name-firstname input.input-text,
.form-list .customer-name-prefix-middlename .name-firstname input.input-text {
    width: 124px;
}

.form-list .customer-name-prefix-middlename-suffix .name-lastname {
    width: 205px;
}

.form-list .customer-name-prefix-middlename-suffix .name-lastname input.input-text {
    width: 189px;
}

.form-list .customer-name-prefix-suffix .name-firstname {
    width: 210px;
}

.form-list .customer-name-prefix-suffix .name-lastname {
    width: 205px;
}

.form-list .customer-name-prefix-suffix .name-firstname input.input-text,
.form-list .customer-name-prefix-suffix .name-lastname input.input-text {
    width: 189px;
}

.form-list .customer-name-prefix-suffix .name-firstname {
    width: 210px;
}

.form-list .customer-name-prefix-suffix .name-lastname {
    width: 205px;
}

.form-list .customer-name-prefix-suffix .name-firstname input.input-text,
.form-list .customer-name-prefix-suffix .name-lastname input.input-text {
    width: 189px;
}

.form-list .customer-name-prefix .name-firstname,
.form-list .customer-name-middlename .name-firstname,
.form-list .customer-name-middlename .name-middlename {
    width: 210px;
}

.form-list .customer-name-suffix .name-lastname,
.form-list .customer-name-middlename .name-firstname,
.form-list .customer-name-middlename .name-middlename,
.form-list .customer-name-middlename-suffix .name-firstname,
.form-list .customer-name-middlename-suffix .name-lastname {
    width: 205px;
}

.form-list .customer-name-prefix .name-firstname input.input-text,
.form-list .customer-name-suffix .name-lastname input.input-text,
.form-list .customer-name-middlename .name-firstname input.input-text,
.form-list .customer-name-middlename .name-middlename input.input-text,
.form-list .customer-name-middlename-suffix .name-firstname input.input-text,
.form-list .customer-name-middlename-suffix .name-lastname input.input-text {
    width: 189px;
}

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-year {
    float: left;
    width: 85px;
}

.form-list .customer-dob input.input-text {
    display: block;
    width: 74px;
}

.form-list .customer-dob label {
    font-size: 10px;
    font-weight: normal;
    color: #888;
}

.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-month {
    width: 60px;
}

.form-list .customer-dob .dob-day input.input-text,
.form-list .customer-dob .dob-month input.input-text {
    width: 46px;
}

.form-list .customer-dob .dob-year {
    width: 140px;
}

.form-list .customer-dob .dob-year input.input-text {
    width: 134px;
}

/* Independent fields */
/*.form-list li { margin:0 0 8px; }
.form-list li.fields { margin:0; }
.form-list .field { display:block; margin:0 0 8px; }
.form-list li.control {}
.form-list label { float:left; width:150px; padding:2px 10px 0 0; text-align:right; }
.form-list label.required { font-weight:bold; }
.form-list label.required em { font-variant:normal; color:#DD4B39; margin-right:3px; }
.form-list .input-box { float:left; width:260px; }
.form-list input.input-text,
.form-list textarea { width:254px; }
.form-list select { width:260px; }
.form-list li.additional-row { border-top:1px solid #ddd; margin-top:10px; }
.form-list li.additional-row .btn-remove { float:right; margin:5px 5px 0 0; }
.form-list .input-range input.input-text { width:96px; }*/
/* Customer */
/*.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-year { float:left; width:85px; }
.form-list .customer-dob input.input-text { display:block; width:74px; }
.form-list .customer-dob label { font-size:11px; font-weight:normal; color:#777; text-align:left; }
.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-month { width:60px; }
.form-list .customer-dob .dob-day input.input-text,
.form-list .customer-dob .dob-month input.input-text { width:46px; }
.form-list .customer-dob .dob-year { width:140px; }
.form-list .customer-dob .dob-year input.input-text { width:134px; }*/

.buttons-set {
    clear: both;
    margin: 20px 0 0;
    text-align: right;
}

.buttons-set p.required {

}

.buttons-set .back-link {
    float: left;
    margin: 0;
}

.buttons-set button.button {
    float: right;
    margin-left: 5px;
}

.buttons-set-order {
    margin: 10px 0 0;
}

.buttons-set-order .please-wait {
    padding: 12px 7px 0 0;
}

.fieldset {
    margin: 20px 0;
    padding: 0;
}

/* Form Validation */
.validation-advice {
    clear: both;
    min-height: 13px;
    margin: 3px 0 0;
    padding-left: 17px;
    font-size: 12px;
    line-height: 13px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/validation_advice_bg.gif) 2px 0 no-repeat;
    color: #DD4B39;
    position: absolute;
}

.block-subscribe .validation-advice {
    bottom: -20px;
}

.validation-failed {
    border: 1px dashed #DD4B39 !important;
    background: #faebe7 !important;
}

.validation-passed {
}

p.required {
    font-size: 11px;
    text-align: right;
    color: #DD4B39;
}

/* Expiration date and CVV number validation fix */
.v-fix {
    float: left;
}

.v-fix .validation-advice {
    display: block;
    width: 12em;
    margin-right: -12em;
    position: relative;
}

/* Global Messages  */
.success {
    color: #3d6611;
    font-weight: bold;
}

.error {
    color: #df280a;
    font-weight: bold;
}

.notice {
    color: #e26703;
}

.messages,
.messages ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.messages {
    width: 100%;
    overflow: hidden;
}

.messages li {
    margin: 0 0 10px !important;
    line-height: 20px;
}

.messages li li {
    margin: 0 0 3px !important;
}

.error-msg,
.success-msg,
.note-msg,
.notice-msg {
    border-style: solid !important;
    border-width: 1px !important;
    background-position: 10px 9px !important;
    background-repeat: no-repeat !important;
    padding: 8px 8px 8px 32px !important;
}

.error-msg {
    border-color: #f16048;
    background-color: #faebe7;
    background-image: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/i_msg-error.gif);
    color: #df280a;
}

.success-msg {
    border-color: #446423;
    background-color: #eff5ea;
    background-image: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/i_msg-success.gif);
    color: #3d6611;
}

.note-msg,
.notice-msg {
    border-color: #fcd344;
    background-color: #fafaec;
    background-image: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/i_msg-note.gif);
    color: #3d6611;
}

/* BreadCrumbs */
.breadcrumbs {
    line-height: inherit;
    margin: 0 0 0px;
    float: right;
}

.cms-home .breadcrumbs {
    display: none
}

.breadcrumbs li {
    display: inline;
}

.breadcrumbs li strong {
    font-weight: normal;
}

/* Page Heading */
.page-title {
    margin: 0 0 7px;
    overflow: hidden;
    padding-bottom: 10px;
    text-align: left;
}

.page-title h1,
.page-title h2 {
    font-size: 14px;
    text-align: left;
    text-transform: uppercase;
    font-weight: 700;
}

.page-title .separator {
    margin: 0 3px;
}

.page-title .link-rss {
    float: right;
    margin: 7px 0 0;
}

.title-buttons {
    text-align: right;
    width: 100%;
}

.title-buttons h1,
.title-buttons h2,
.title-buttons h3,
.title-buttons h4,
.title-buttons h5,
.title-buttons h6 {
    float: left;
}

.subtitle,
.sub-title {
    clear: both;
    padding: 15px 0 0;
    font-size: 15px;
    font-weight: bold;
    margin: 0 0 6px;
    color: #e25203;
}

/* Pager */
.pager {
    padding: 10px 0px;
    margin: 10px 0 20px;
    text-align: right;
}

.pager .amount {
    float: left;
    margin: 0;
    padding-top: 6px;
}

.pager .amount strong {
    font-weight: normal;
}

.pager .limiter {
    float: right;
    margin-left: 10px;
    z-index: 999 !important;
}

.pager .limiter label {
    vertical-align: super;
}

.pager .limiter span {
    display: inline;
    vertical-align: super;
}

.pager .limiter select {
    margin: 0 0 1px;
    vertical-align: middle;
}

.pager .pages {
    margin: 0px 0 0 10px;
    float: right;
}

.pager .pages strong {
    display: none;
}

.pager .pages ol {
    float: left;
    padding: 0px;
}

.pager .pages li {
    display: inline-block;
    margin: 0 2px 0 0px;
    padding: 4px 9px;
    background: #fff;
    cursor: pointer;
    border: 1px solid #e5e5e5;
}

.pager .pages li:last-child {
    margin: 0;
}

.pager .pages .current, .pager .pages li:hover {
    background: #00A1EA;
}

.pager .pages .current, .pager .pages li:hover a {
    color: #fff;
    background: #00A1EA;
    border-color: #00A1EA;
}

.pager .pages li img, .pager .pages li a {
    text-decoration: none;
}

/* Sorter */
.sorter {
}

.sorter .view-mode {
    float: left;
    margin: 0;
}

.sorter .sort-by {
    float: right;
    padding-right: 0px;
    margin-right: 10px;
}

.sort-by label {
    margin-right: 5px;
    padding-top: 0px;
    text-align: left;
    display: inline;
    vertical-align: super;
}

.sorter .sort-by select {
    padding: 0;
    margin: 0 0 1px;
    vertical-align: middle;
}

.sorter .link-feed {
}

.pager .pager_right .sort-by {
    float: right;
    z-index: 8;
}

.pager .pager_right .sort-by .sbHolder {
    display: inline-block;
    z-index: 99;
}

.pager .limiter .sbHolder {
    display: inline-block;
    margin: 0 5px;
}

.ie7 .pager .limiter .sbHolder, .ie7 .pager .sort-by .sbHolder {
    display: inline;
}

.desc-asc {
    margin-top: 2px;
    float: right;
    display: inline;
    margin-left: 10px;
}

.sort-by a.uparrow, .sort-by a.downarrow:hover {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -30px -204px;
    border: 1px solid #DDDDDD;
    display: block;
    height: 26px;
    margin: 0;
    padding: 0;
    transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -ms-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    width: 26px;
}

.sort-by a.downarrow, .sort-by a.uparrow:hover {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -2px -204px;
    border: 1px solid #DDDDDD;
    display: block;
    height: 26px;
    margin: 0;
    padding: 0;
    transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -ms-transition-duration: 300ms;
    -o-transition-duration: 300ms;
    width: 26px;
}

/* Toolbar */
.toolbar {
    margin-bottom: 10px;
}

.toolbar .pager {
}

.toolbar .pager .pager_left {
    float: left;
}

.toolbar .pager .pager_right {
    float: right;
}

.toolbar .sorter {
}

.toolbar-bottom {
    border-top: 1px solid #ddd;
}

/* ==================== List/Grid Image ============*/
.view-mode {
    float: left;
    margin-right: 10px;
    margin-bottom: 0;
    margin-top: 7px;
}

.view-mode label {
    display: none;
}

.view-mode strong.list, .view-mode a.list, .view-mode a.grid, .view-mode strong.grid {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll 0 0 transparent;
    display: inline-block;
    height: 17px;
    margin: 0px 0 0;
    text-align: left;
    text-indent: -999em;
    width: 17px;
}

.view-mode a.grid {
    background-position: 0px -27px;
}

.view-mode strong.list {
    background-position: -27px 1px;
    margin-left: 0px;
}

.view-mode a.list {
    background-position: -27px -27px;
    margin-left: 0px;
}

.view-mode a.list:hover {
    background-position: -27px 1px;
    transition: all 200ms ease 0s;
    -webkit-transition: all 200ms ease 0s;
    -moz-transition: all 200ms ease 0s;
    -ms-transition: all 200ms ease 0s;
    -o-transition: all 200ms ease 0s;
}

.view-mode a.grid:hover {
    background-position: 0px 1px;
    transition: all 200ms ease 0s;
    -webkit-transition: all 200ms ease 0s;
    -moz-transition: all 200ms ease 0s;
    -ms-transition: all 200ms ease 0s;
    -o-transition: all 200ms ease 0s;
}

.view-mode strong.grid {
    background-position: 0px 1px;
}

/* Data Table */
.data-table {
    width: 100%;
    border: 1px solid #DDDDDD;
}

.data-table .odd {
    background: #fff
}

.data-table .even {
    background: #f0f0f0;
}

/*.data-table tr.odd:hover,
.data-table tr.even:hover { background:#ebf1f6; }*/
.data-table td.last,
.data-table th.last {
    border-right: 0;
}

.data-table tr.last th,
.data-table tr.last td {
    border-bottom: 0 !important;
}

.data-table th {
    padding: 5px 8px;
    font-weight: bold;
}

.data-table td {
    padding: 5px 8px;
}

.data-table thead th {
    font-weight: bold;
    padding: 7px 8px;
    color: #000;
    white-space: nowrap;
    vertical-align: middle;
}

.data-table thead th.wrap {
    white-space: normal;
}

.data-table thead th a,
.data-table thead th a:hover {
    color: #fff;
}

.data-table thead th {
    background: #F0F0F0;
}

.data-table thead th .tax-flag {
    font-size: 11px;
    white-space: nowrap;
}

.data-table tfoot {
    border-bottom: 1px solid #d9dde3;
}

.data-table tfoot tr.first td {
}

.data-table tfoot tr {
    background-color: #F0F0F0 !important;
}

.data-table tfoot td {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 0;
    border-right: 1px solid #ddd;
}

.data-table tfoot strong {
    font-size: 16px;
}

.data-table tbody th,
.data-table tbody td {
}

/* Bundle products tables */
.data-table tbody.odd tr {
    background: #fff !important;
}

.data-table tbody.even tr {
    background: #F0F0F0 !important;
}

.data-table tbody.odd tr td,
.data-table tbody.even tr td {
    border-bottom: 0;
}

.data-table tbody.odd tr.border td,
.data-table tbody.even tr.border td {
    border-bottom: 1px solid #ddd;
}

.data-table tbody td .option-label {
    font-weight: bold;
    font-style: italic;
}

.data-table tbody td .option-value {
    padding-left: 10px;
}

/* Generic Info Box */
.info-box {
    border: 1px solid #d0cbc1;
    padding: 12px 15px;
    margin: 0 0 15px;
}

.info-box h2 {
    font-weight: bold;
    font-size: 13px;
}

.info-table th {
    font-weight: bold;
    padding: 2px 15px 2px 0;
}

.info-table td {
    padding: 2px 0;
}

/* Shopping cart total summary row expandable to details */
tr.summary-total {
    cursor: pointer;
}

tr.summary-total td {
}

tr.summary-total .summary-collapse {
    float: right;
    text-align: right;
    padding-left: 20px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/bkg_collapse.gif) 0 5px no-repeat;
    cursor: pointer;
}

tr.show-details .summary-collapse {
    background-position: 0 -52px;
}

tr.show-details td {
}

tr.summary-details td {
    font-size: 11px;
    background-color: #dae1e4;
    color: #626465;
}

tr.summary-details-first td {
    border-top: 1px solid #d2d8db;
}

tr.summary-details-excluded {
    font-style: italic;
}

/* Shopping cart tax info */
.cart-tax-info {
    display: block;
}

.cart-tax-info,
.cart-tax-info .cart-price {
    padding-right: 20px;
}

.cart-tax-total {
    display: block;
    padding-right: 20px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/bkg_collapse.gif) 100% 5px no-repeat;
    cursor: pointer;
}

.cart-tax-info .price,
.cart-tax-total .price {
    display: inline !important;
    font-weight: normal !important;
}

.cart-tax-total-expanded {
    background-position: 100% -52px;
}

/* Class: std - styles for admin-controlled content */
.widget-static-block ul li, .std ul.disc li {
    list-style: none;
    padding: 2px 0;
}

.std .subtitle {
    padding: 0;
}

.std ol.ol {
    list-style: decimal outside;
    padding-left: 1.5em;
}

.std ul.disc {
    list-style: disc outside;
    padding-left: 0px;
    margin: 0 0 10px;
}

.std dl dt {
    font-weight: bold;
}

.std dl dd {
    margin: 0 0 10px;
}

.std ul,
.std ol,
.std dl,
.std p,
.std address,
.std blockquote {
    margin: 0 0 6px;
    padding: 0;
}

.std ul {
    list-style: disc outside;
    padding-left: 0;
}

.std ol {
    list-style: decimal outside;
    padding-left: 0;
}

.std ul ul {
    list-style-type: circle;
}

.std ul ul,
.std ol ol,
.std ul ol,
.std ol ul {
    margin: .5em 0;
}

.std dt {
    font-weight: bold;
}

.std dd {
    padding: 0 0 0 1.5em;
}

.std blockquote {
    font-style: italic;
    padding: 0 0 0 1.5em;
}

.std address {
    font-style: normal;
}

.std b,
.std strong {
    font-weight: bold;
}

.std i,
.std em {
    font-style: italic;
}

/* Misc */
.header .links li {
    display: inline;
}

.header .links li.first {
    padding-left: 0;
}

.header .links li.last {
    background: none;
    padding-right: 0;
}

.link-cart {
    font-weight: normal;
}

.link-wishlist, .link-compare {
    font-weight: normal;
}

.link-reorder {
}

.link-print {
}

.link-rss {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/i_rss.gif) 0 2px no-repeat;
    padding-left: 18px;
    line-height: 14px;
    white-space: nowrap;
}

.btn-remove {
    display: block;
    width: 11px;
    height: 11px;
    font-size: 0;
    line-height: 0;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/btn_remove.gif) 0 0 no-repeat;
    text-indent: -999em;
    overflow: hidden;
}

.btn-previous {
    display: block;
    width: 11px;
    height: 11px;
    font-size: 0;
    line-height: 0;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/btn_previous.gif) 0 0 no-repeat;
    text-indent: -999em;
    overflow: hidden;
}

.btn-remove2 {
    display: block;
    width: 16px;
    height: 16px;
    font-size: 0;
    line-height: 0;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/btn_trash.gif) 0 0 no-repeat;
    text-indent: -999em;
    overflow: hidden;
}

.btn-edit {
    display: block;
    width: 11px;
    height: 11px;
    font-size: 0;
    line-height: 0;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/btn_edit.gif) 0 0 no-repeat;
    text-indent: -999em;
    overflow: hidden;
}

.cards-list dt {
    margin: 5px 0 0;
}

.cards-list .offset {
    padding: 2px 0 2px 20px;
}

.separator {
    margin: 0 3px;
}

.divider {
    clear: both;
    display: block;
    font-size: 0;
    line-height: 0;
    height: 1px;
    margin: 10px 0;
    text-indent: -999em;
    overflow: hidden;
}

/* Global site notices */
.global-site-notice {
    border: 1px solid #cfcfcf;
    border-width: 0 0 1px;
    background: #ffff90;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
}

.global-site-notice .notice-inner {
    width: 860px;
    margin: 0 auto;
    padding: 12px 0 12px 80px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/i_notice.gif) 20px 25px no-repeat;
    text-align: left;
}

.global-site-notice .notice-inner p {
    margin: 0;
    border: 1px dotted #cccc73;
    padding: 10px;
}

.global-site-notice .notice-inner .actions {
    padding-top: 10px;
}

/* Cookie Notice */
.notice-cookie {
}

/* Noscript Notice */
.noscript {
}

/* Demo Notice */
.demo-notice {
    margin: 0;
    padding: 6px 10px;
    background: #d75f07;
    font-size: 12px;
    line-height: 1.15;
    border: 0;
    text-align: center;
    color: #fff;
}

.demo-notice .notice-inner {
    width: auto;
    padding: 0;
    background: none;
    text-align: center;
}

.demo-notice .notice-inner p {
    padding: 0;
    border: 0;
}

/* ======================================================================================= */

/* Header ================================================================================ */
.logo {
    float: left;
}

.header a.logo {
    float: left;
    margin: 25px 0 0px;
    text-decoration: none !important;
}

.header .logo strong {
    position: absolute;
    top: -999em;
    left: -999em;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    text-indent: -999em;
    overflow: hidden;
}

.header .quick-access {
    float: right;
    padding: 0px 0px 0 0px;
    margin-top: 30px;
}

.header .welcome-msg {
    padding: 0px 0 10px;
    float: left;
    width: 100%;
}

.header .welcome-msg a {
    color: #ebbc58;
}

.header .form-search {
    position: relative;
    float: left;
    padding: 0px;
    cursor: pointer;
    padding-bottom: 20px;
}

.header .form-search:hover {
    background-position: 0px -232px;
}

.header .form-search label {
    float: left;
    width: 24px;
    height: 21px;
    text-align: left;
    text-indent: -999em;
    overflow: hidden;
    display: none;
}

.header .form-search input.input-text {
    float: left;
    width: 100%;
    padding: 0px;
    background-color: #fff;
    color: #000;
    font-family: inherit;
    position: absolute;
    border: none;
    top: -8px;
    right: 0;
    left: auto;
    z-index: 99;
    line-height: 30px;
}

.searchbtn {
    float: left;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/top-icon.png) no-repeat scroll 0px -41px;
    height: 25px;
    width: 23px;
    margin-left: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 99;
    display: inline-block;
}

.searchbtn.active {
    display: none;
}

.header .form-search .search-wrapper {
    position: absolute;
    z-index: 9;
    width: 0px;
    border: none;
    background-color: transparent;
    right: 0;
    top: 0;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
}

.header .form-search .search-wrapper.active {
    width: 255px;
    background-color: #242424;
    z-index: 99;
}

.header .form-search .search-wrapper.active input.input-text {
    padding: 8px 40px 8px 10px;
    border: 1px solid #999;
}

.header .form-search:hover input.input-text {
}

.header .form-search button.button {
    float: left;
    height: 25px;
    width: 23px;
    margin-left: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
}

.closebtn {
    float: left;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/top-icon.png) no-repeat scroll 0px 1px;
    height: 21px;
    width: 21px;
    margin-left: 0px;
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 99;
    display: none;
}

.header .form-search .search-wrapper.active .closebtn {
    display: inline-block
}

.header .form-search button.button.active {
}

.header .form-search button.button span {
    border: 0;
    background: none;
    padding: 0 0 0 3px;
}

.header .form-search button.button span span {
    font-size: 0;
}

.header .form-search .search-autocomplete {
    z-index: 999;
    left: 40px !important;
    top: 22px !important;
}

.header .form-search .search-autocomplete ul {
    border: 1px solid #5c7989;
    background-color: #f9f5f0;
}

.header .form-search .search-autocomplete li {
    text-align: left;
    border-bottom: 1px solid #f4eee7;
    padding: 2px 8px 1px 8px;
    cursor: pointer;
}

.header .form-search .search-autocomplete li .amount {
    float: right;
    font-weight: bold;
}

.header .form-search .search-autocomplete li.odd {
    background-color: #fffefb;
}

.header .form-search .search-autocomplete li.selected {
    background-color: #f7e8dd;
}

.header .form-language {
    border-top: 1px dashed #999999;
    float: left;
    padding: 15px 0 0;
    width: 100%;
}

.header .form-language label {
}

.header .form-language select.flags option {
    background-position: 4px 50%;
    background-repeat: no-repeat;
    padding-left: 25px;
}

.header .tm_top_currency {
    float: left;
    width: 100%;
    border-top: 1px dashed #999999;
    padding: 15px 0 15px;
}

.header .tm_top_currency label, .header .form-language label {
    line-height: 25px;
    float: left;
    width: 100%;
    margin-bottom: 10px;
}

.tm_top_currency .sbSelector, .form-language .sbSelector {
    color: #000;
    display: block;
    margin-bottom: 8px;
}

.tm_top_currency .sbSelector:hover, .form-language .sbSelector:hover {
    color: #000;
}

.tm_top_currency .sbOptions, .form-language .sbOptions {
    position: static;
    display: inline-block !important;
    background-color: transparent;
    border: none;
    width: auto;
    float: left;
}

.tm_top_currency .sbOptions li, .form-language .sbOptions li {
    padding: 0;
    display: inline-block;
}

.tm_top_currency .sbOptions li {
    margin-right: 10px;
}

.form-language .sbOptions li {
    margin-right: 15px;
}

.tm_top_currency .sbOptions a, .form-language .sbOptions a {
    color: #999;
    padding: 0;
}

.tm_top_currency .sbOptions a:hover, .form-language .sbOptions a:hover {
    color: #000
}

.tm_top_currency .sbToggle, .form-language .sbToggle {
    display: none;
}

.form-language .sbHolder, .tm_top_currency .sbHolder {
    float: left;
    padding: 0px;
    border: none;
    clear: both;
    background-color: transparent;
}

.ie7 .header .form-language {
    width: 250px;
}

.ie7 .header .tm_top_currency {
    width: 130px;
}

.header .header-cart li {
    clear: both;
    margin-bottom: 5px;
}

.ie7 .header .header-cart li {
    overflow: hidden;
}

.main-cart {
    text-align: left;
}

.block .main-cart .block-subtitle {
    color: #000;
}

.header .header-cart #panel {
    background: #fff;
    border: 1px solid #ddd;
    border-top: 1px solid #00A1EA;
    text-align: center;
    min-width: 300px;
    padding: 25px 25px 25px;
    position: absolute;
    right: 0;
    top: 140px;
    width: 300px;
    color: #000;
    margin: 0;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    visibility: hidden;
    cursor: default;
}

.header .header-cart #panel .actions {
    float: right;
    margin-top: 7px;
}

.header .header-cart #panel .actions .viewcart-btn {
    margin-right: 15px;
    color: #000;
    font-size: 14px;
    border: 2px solid #ccc;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -khtml-border-radius: 20px;
    padding: 8px 11px;
}

.header .header-cart #panel .actions .viewcart-btn:hover span {
    color: #fff;
}

.header .header-cart #panel .actions .viewcart-btn span, .header .header-cart #panel .actions .checkout-btn span {
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
}

.header .header-cart #panel .actions .viewcart-btn:hover, .header .header-cart #panel .actions .checkout-btn:hover {
    background: #00A1EA;
    border-color: #00A1EA;
}

.header .header-cart #panel .actions .checkout-btn {
    color: #000;
    font-size: 14px;
    border: 2px solid #ccc;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -khtml-border-radius: 20px;
    padding: 8px 11px;
}

.header .header-cart #panel .actions .checkout-btn:hover span {
    color: #fff;
}

.header .header-cart #panel .product-name a {
    font-size: 13px;
    color: #000;
}

.tm_headerlinkmenu {
    float: right;
    position: relative;
    height: 20px;
    margin: 0 auto;
    text-align: center;
    width: 23px;
    cursor: pointer;
    margin: 0 30px;
    padding-bottom: 32px;
}

.tm_headerlinkmenu:hover .tm_headerlinks_inner {
    background-position: 0 -280px;
}

.tm_headerlinkmenu .toggle {
    visibility: hidden;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    position: absolute;
    top: 100px;
    right: 0;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    background-color: #fff;
    padding: 25px 25px 25px;
    border: 1px solid #ddd;
    border-top: 1px solid #00A1EA;
    text-align: left;
    width: 230px;
    cursor: default;
    color: #000;
}

#header-cart {
    margin: 0;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/top-icon.png) no-repeat scroll 0 -136px;
    width: 23px;
    height: 25px;
    cursor: pointer;
    padding-bottom: 27px;
}

#header-cart:hover {
    background-position: 0 -327px;
}

#header-cart:hover #panel {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    top: 97px;
    visibility: visible;
}

.tm_headerlinkmenu:hover .toggle {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
    visibility: visible;
    top: 52px;
}

.tm_headerlinks_inner {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/top-icon.png) no-repeat scroll 0px -89px;
    height: 27px;
}

.header .links {
    margin: 0 0 20px;
    float: left;
}

.header .links li {
    float: left;
    padding: 5px 0;
    clear: both;
}

.header .links li a {
    text-decoration: none;
    color: #999;
}

.header .links li a:hover {
    color: #000;
}

.header-container .top-container {
    clear: both;
    padding: 5px 10px 0 12px;
    text-align: right;
}

.header-cart {
    float: right;
}

.cart_mini_right {
    cursor: pointer;
    color: #fff;
    text-indent: -9999px;
}

.header-cart .right_arrow {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/arrow-down.png") no-repeat scroll center center transparent;
    margin: 2px 0 0 6px;
    vertical-align: middle;
    display: inline-block;
    width: 10px;
    height: 15px;
    display: none;
}

.ie7 .header-cart .right_arrow {
    display: inline
}

.header-cart .active .right_arrow {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/arrow-up.png") no-repeat scroll center center transparent;
}

.header .form-language .sbToggle {
    display: none
}

/********** < Navigation */
.advanced_nav {
    display: none;
}

.nav-inner #nav, .nav-responsive, #advancedmenu {
    clear: both;
}

/* All Levels */ /* Style consistent throughout all nav levels */
#nav li {
    position: relative;
    text-align: left;
}

#nav li.over {
    z-index: 998;
}

#nav a,
#nav a:hover {
    display: block; /*line-height:1.3em;*/
    text-decoration: none;
}

#nav a:hover, #nav > li:hover > a, #nav li.active > a, .custom_menu:hover a, .cms-home .home_link a, div.menu a:hover, div.act .parentMenu > a, div.active .parentMenu > a {
    color: #00A1EA;
}

#nav span {
    display: block;
    cursor: pointer;
    white-space: nowrap;
}

#nav li ul span {
    white-space: normal;
    padding: 0;
}

#nav ul li.parent a {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/bkg_nav2.gif) 100% 100% no-repeat;
}

#nav ul li.parent li a {
    background-image: none;
}

/* 0 Level */
#nav li {
    float: left;
}

#nav > li {
    margin-bottom: -6px;
    margin-right: 40px;
}

#nav a, .nav-responsive span {
    float: left;
}

#nav a {
}

#nav a, .nav-responsive span, div.menu a, div.megnor-advanced-menu-popup a {
    padding: 12px 0 29px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
}

#nav li.over a,
#nav a:hover, div.menu a:hover, div.menu.active a {
    color: #00A1EA;
}

/* 1st Level */
#nav ul li,
#nav ul li.active {
    float: none;
    margin: 0;
}

#nav ul li.last {
    padding-bottom: 0;
}

#nav ul a,
#nav ul a:hover {
    float: none; /*padding:0;*/
    background: none;
}

#nav ul li a {
    font-weight: normal !important;
}

/* 2nd Level */
#nav ul, .responsive-menu #nav-mobile {
    background: #fff;
}

#nav ul {
    position: absolute;
    width: 13em;
    top: 60px;
    left: -10000px;
    padding: 20px;
    border: 1px solid #ddd;
}

#nav div ul {
    position: static;
    width: auto;
    border: none;
}

/* 3rd+ Level */
#nav ul ul,
#nav ul div {
    top: 5px;
}

#nav ul li a {
    margin: 0;
    padding: 5px 0;
}

#nav ul li a:hover, #nav > li ul > li:hover > a, .responsive-menu a:hover {
    color: #989797 !important;
}

#nav ul li a, .responsive-menu a {
    color: #000 !important;
    text-decoration: none;
    display: block;
}

#nav ul span,
#nav ul li.last li span, .responsive-menu li a {
    padding: 0px;
}

.responsive-menu li a {
    padding: 5px 5px;
}

.parentMenu {
}

div.menu .parentMenu a, div.menu .subparentMenu a {
    position: relative;
    margin-right: 40px;
}

div.menu .parentMenu a:before, #nav .level-top > a:before, .custom_menu > a:before, div.menu .subparentMenu > a:before, #nav .subparentMenu > a:before {
    content: "";
    height: 1px;
    width: 0;
    background-color: #00A1EA;
    position: absolute;
    bottom: 1px;
    left: 0;
    transition: all 500ms ease 0s;
    -webkit-transition: all 500ms ease 0s;
    -moz-transition: all 500ms ease 0s;
    -ms-transition: all 500ms ease 0s;
    -o-transition: all 500ms ease 0s;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
}

div.menu .parentMenu a:hover:before, div.menu.active .parentMenu a:hover:before, #nav .level-top > a:hover:before, .custom_menu > a:hover:before, div.menu .subparentMenu > a:hover:before {
    width: 100%;
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
}

/* Show menu */
#nav li ul.shown-sub,
#nav li div.shown-sub {
    left: 0;
    z-index: 999;
}

#nav li .shown-sub ul.shown-sub,
#nav li .shown-sub li div.shown-sub {
    left: 202px;
}

/********** Navigation > */
/* ======================================================================================= */

/*==================== Start defaulte menu more links ====================*/

#nav .hidden_menu.menu {
    position: relative;
    float: left;
}

#nav .hidden_menu.menu ul.test {
    background: #fff;
    border: 1px solid #ddd;
    display: none;
    padding: 20px;
    position: absolute;
    top: 60px;
    z-index: 99;
    left: 0px;
    width: 13em;
}

#nav .hidden_menu.menu:hover ul.test {
    display: block;
}

#nav .hidden_menu.menu ul a {
    padding: 5px 0;
    margin: 0px;
}

#nav .hidden_menu.menu ul a span {
    white-space: nowrap;
}

#nav .hidden_menu.menu ul.test li ul, #nav .hidden_menu.menu ul.test li li ul {
    display: block;
}

#nav .hidden_menu.menu ul.test li ul {
}

#nav .hidden_menu.menu ul li > a:before {
    display: none;
}

/*#nav .hidden_menu.menu  ul li li.parent ul.level1 { display: none;}
#nav .hidden_menu.menu  ul li li.parent:hover ul.level1{display:block; left:194px; top:0px;}

#nav .hidden_menu ul .parent:hover ul.level0{ display:block; left:194px; top:0px;}
#nav .hidden_menu ul .parent ul.level0{ display:none;}*/

/*==================== End defaulte menu more links ====================*/

/* Sidebar =============================================================================== */
.block {
    margin: 0 0 48px;
}

.block .block-title {
    text-transform: uppercase;
}

.block .block-title strong {
    display: block;
    min-height: 16px;
    padding: 0px 0 15px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid #dddddd;
    margin: 0 0 10px;
}

.block .block-title strong span {
}

.block .block-title a {
    text-decoration: none !important;
}

.block .block-subtitle {
    margin: 0;
    padding: 5px 0;
    font-weight: normal;
    color: #626262;
}

.block .block-content {

}

.block .block-content li {
    padding: 8px 0;
}

.block .block-content li a {
    text-decoration: none;
    color: #626262;
}

.block .block-content li a:hover {
    color: #000;
}

.block .block-content li .product-name a {
    font-size: 14px;
}

.block .block-content li.item {
    padding: 5px 0px;
}

.block .block-content .product-name {
    color: #555555;
}

.block .btn-remove,
.block .btn-edit, #panel .btn-edit, #panel .btn-remove {
    float: right;
    margin: 1px 0 2px 5px;
}

.block .actions {
    padding: 5px 0px;
    text-align: right;
}

.block .actions a {
    float: left;
    color: #626262;
}

.block .actions a:hover {
    color: #000000
}

.block .actions button.button {
    float: right;
    color: #626262;
}

.block .empty {
    margin: 0;
    padding: 3px 0px;
    color: #626262;
}

/*.block li.odd { background-color:#f4f3f3; }
.block li.even { background-color:#fafafa; }*/

/* Mini Blocks */
/*.block-cart,
.block-wishlist,
.block-subscribe,
.block-compare,
.block-reorder,
.block-poll,
.block-gr-search,
.block-viewed,
.block-compared,
.block-related,
.block-tags,
.block-login { font-size:11px; line-height:1.25; }
.block-cart .block-title strong,
.block-wishlist .block-title strong,
.block-subscribe .block-title strong,
.block-compare .block-title strong,
.block-reorder .block-title strong,
.block-poll .block-title strong,
.block-viewed .block-title strong,
.block-compared .block-title strong,
.block-related .block-title strong,
.block-tags .block-title strong,
.block-login .block-title strong {  background-position:0 0; background-repeat:no-repeat; padding-left:21px; }*/

/* Mini Products List */
.mini-products-list .product-image {
    float: left;
    border: none;
    margin-bottom: 10px;
    margin-right: 10px;
    width: auto;
}

.mini-products-list .product-details {
    float: left;
    width: 60%;
}

.main-cart .product-image {
    width: 30%;
    margin-right: 0;
}

.main-cart .product-details {
    width: 65%;
}

.block-cart .mini-products-list .product-details .product-name,
.block-cart .mini-products-list .product-details .nobr small {
    word-wrap: break-word;
}

.block-cart .mini-products-list .product-details .nobr {
    white-space: normal !important;
}

/* Block: Account */
.block-account .block-content li.current {
    padding: 5px 0 !important;
}

.block-account .block-content li.current strong {
    font-weight: normal;
}

/* Block: Currency Switcher */
.block-currency {
}

.block-currency .block-title {
}

.block-currency .block-title strong {
}

.block-currency .block-content {
}

.block-currency .block-content select {
}

/* Block: Category Navigation */
#category-treeview li a, .block-account .block-content li a, #recently-viewed-items a, .block-brand-nav li a {
    display: block;
    padding: 1px 0 1px;
    text-decoration: none;
    line-height: 30px;
    color: #626262;
}

.ie7 #category-treeview li {
    display: inline
}

.block-brand-nav .sbHolder li a, .block-brand-nav .sbHolder li a:hover {
    background: none;
    padding-left: 5px;
}

#category-treeview li, .block-account .block-content li, #recently-viewed-items li, .block-brand-nav li {
    padding: 0 !important;
}

#category-treeview li a:hover, .block-account .block-content li a:hover, .block-account .block-content li.current,
#recently-viewed-items a:hover, .block-brand-nav li a:hover {
    color: #000;
}

#category-treeview li ul {
    margin-left: 15px;
}

#category-treeview li ul a {
}

#category-treeview li ul a:hover {
}

#category-treeview li.last a, .block-account .block-content li.last a, #recently-viewed-items li.last a, .block-brand-nav li:last-child a {
    border-bottom: none;
}

#category-treeview .hitarea {
    background: none;
    height: 16px;
    width: 16px;
    float: right;
    cursor: pointer;
    margin-top: 10px;
}

#category-treeview .expandable .collapsable-hitarea {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -85px -168px transparent;
}

#category-treeview .expandable-hitarea {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -85px -129px transparent;
}

#category-treeview .collapsable-hitarea {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -85px -168px transparent;
}

/* Block: Layered Navigation */
.block-layered-nav {
}

.block-layered-nav .block-title {
}

.block-layered-nav .block-subtitle {
    line-height: 1.35;
    background: #d5e8ff;
    padding: 3px 9px;
    border: 1px solid #b9ccdd;
    border-width: 1px 0;
    text-transform: uppercase;
    display: none;
}

.block-layered-nav .block-content {
}

.block-layered-nav dt {
    font-weight: normal;
    padding: 5px 0px 5px;
    text-transform: capitalize;
    font-size: 14px;
}

.block-layered-nav dd {
    padding: 5px 0px;
}

.block-layered-nav a {
}

.block-layered-nav a:hover {
}

.block-layered-nav dd.last {
    background: none;
}

.block-layered-nav .currently li {
    background: #eeeeee;
    padding: 4px 20px 4px 10px;
    position: relative;
    z-index: 1;
    line-height: 1.5;
}

.block-layered-nav .currently .label {
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
}

.block-layered-nav .currently .value {
    display: inline-block;
    vertical-align: top;
}

.block-layered-nav .currently .btn-previous,
.block-layered-nav .currently .btn-remove {
    position: absolute;
    right: 0px;
    top: 9px;
    margin: 0;
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/btn_remove.gif") no-repeat scroll 0 0 transparent;
}

.block-layered-nav .currently .btn-previous {
    right: 17px;
}

.block-layered-nav .actions {
    font-size: 11px;
    padding: 4px 5px 4px 9px;
    text-align: right;
}

.block-layered-nav .actions a {
    float: none;
    background: none;
}

/* Block: Cart */
.block-cart .block-title {
}

.block-cart .block-title strong {
}

.block-cart .summary {
    padding: 2px 0px;
    margin: 0px 0 0px;
    position: relative;
    z-index: 1;
}

.block-cart .amount {
    margin: 0;
}

.block-cart .amount a {
    font-weight: normal;
}

.block-cart .subtotal {
    margin: 10px 0 10px;
    padding: 0px 0;
    text-align: left;
}

.block-cart .subtotal .price {
    font-weight: bold;
}

.block-cart .actions {
    padding: 5px 0;
}

.block-cart .actions .paypal-logo {
    float: left;
    width: 100%;
    margin: 3px 0 0;
    text-align: right;
}

.block-cart .actions .paypal-logo .paypal-or {
    clear: both;
    display: block;
    padding: 0 55px 8px 0;
}

/* Block: Wishlist */
.block-wishlist .block-title strong {
}

.block-wishlist .actions {
    text-align: right;
}

.block-wishlist .actions a, .block-related .actions a {
    float: none;
    color: #626262;
}

#wishlist-table .add-to-cart-alt .input-text {
    margin-bottom: 8px;
}

/* Block: Related */
.block-related .block-title strong {
    border: none;
}

.block-related input.checkbox {
    float: left;
}

.block-related .tm-checkbox .tm-hide {
    opacity: 1;
}

.block-related .product {
    margin-left: 20px;
}

.block-related li {
    position: relative;
}

.block-related .tm-checkbox {
    position: absolute;
    left: 2px;
    display: none;
}

.block-related .product .add-to-links li a.link-wishlist:before {
    content: initial;
}

.block-related .product .add-to-links li a.link-wishlist {
    font-size: 14px;
}

.block.block-related .block-content .add-to-links li {
    padding: 0;
}

/* Block: Compare Products */
.block-compare .block-title strong {
}

.block-compare button.button span {
}

.page-popup .link-print {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/i_print.gif) 0 2px no-repeat;
    padding: 2px 0 2px 25px;
    font-weight: bold;
    color: #1e7ec8;
}

.compare-table {
    border: 0;
}

.compare-table .add-to-links li a.link-wishlist {
    margin-top: 15px;
}

.compare-table thead tr.first th,
.compare-table thead tr.first td {
    border: 0;
    background: none;
    padding: 0;
    font-size: 0;
    line-height: 0;
}

.compare-table .btn-remove {
    float: right;
    background-image: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/btn_remove2.gif);
    width: 72px;
    height: 15px;
}

.compare-table tbody th {
}

.compare-table tbody th,
.compare-table tbody td {
    padding: 10px;
    border: 0;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
}

.compare-table tbody td.last {
    border-right: 1px solid #ccc;
}

.compare-table tbody tr.last th,
.compare-table tbody tr.last td {
    border-bottom: 1px solid #ccc !important;
}

.compare-table tr.add-to-row td {
    text-align: center;
}

.compare-table tr.first td {
    text-align: center;
}

.compare-table tr.first td .product-name {
}

.compare-table tr.first td .product-name a {
}

.compare-table tr.first td .ratings {
    width: 69px;
    margin: 0 auto;
}

.compare-table tr.first td p,
.compare-table tr.add-to-row td p {
    margin: 0;
}

/* Block: Recently Viewed */
.block-viewed .block-title strong {
}

/* Block: Recently Compared */
.block-compared .block-title strong {
}

/* Block: Poll */
.block-poll .block-title strong {
}

.block-poll .block-subtitle {
}

.block-poll label {
    color: #777;
}

.block-poll input.radio {
}

.block-poll .label {
    margin-left: 3px;
}

.block-poll li {
    padding: 3px 9px;
}

.block-poll .actions {
    margin: 5px 0 0;
}

.block-poll button.button span {
}

.block-poll .answer {
    font-weight: bold;
}

.block-poll .votes {
    float: right;
    margin-left: 10px;
}

/* Block: Orders and Returns */
.block-gr-search li {
    padding: 3px 9px;
}

.block-gr-search button.button span {
}

/* Block: Tags */
.block-tags .block-title strong {
}

.block-tags .block-content .tags-list {
    background: none;
    border: 0;
    font-size: 12px;
}

.block-tags .block-content a {
}

.block-tags .actions {
    text-align: right;
}

.block-tags .actions a {
    float: none;
}

/* Block: Subscribe */
.block-subscribe .block-content {
    padding: 0px;
    background: none;
    text-align: left;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    margin: 0;
}

.block-subscribe .block-title strong {
    display: none;
}

.footer-newsletter {
    background: #242424;
    padding: 48px 0 10px;
    text-align: center
}

.block-subscribe label {
    font-weight: normal;
    display: none;
}

.block-subscribe input.input-text {
    float: left;
    width: 415px;
    margin: 0px auto;
    padding: 10px 30px;
    line-height: 31px;
    text-align: left;
    background: #333;
    border-radius: 50px 0 0 50px;
    -webkit-border-radius: 50px 0 0 50px;
    -moz-border-radius: 50px 0 0 50px;
    -khtml-border-radius: 50px 0 0 50px;
    border-color: #333;
    color: #fff;
}

.block-subscribe .actions {
    background: none;
    padding: 0;
    margin: 0px 0 0;
    float: left;
    background: #00A1EA;
    border-radius: 0px 50px 50px 0px;
    -webkit-border-radius: 0px 50px 50px 0px;
    -moz-border-radius: 0px 50px 50px 0px;
    -khtml-border-radius: 0px 50px 50px 0px;
}

.block-subscribe .actions:hover {
    background: #404040;
    color: #fff;
}

.block-subscribe .actions:hover button.button span span {
    color: #fff;
}

.block-subscribe .actions button.button {
}

.block-subscribe .actions button.button span {
    height: auto;
    padding: 0;
}

.block-subscribe .actions button.button span span {
    color: #fff;
    cursor: pointer;
    float: left;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 16px 45px 17px;
    text-transform: capitalize;
    font-size: 14px;
    line-height: 20px;
}

.block-subscribe .actions span span {
}

/* Block: Reorder */
.block-reorder .block-title strong {
}

.block-reorder input.checkbox {
    float: left;
    margin: 2px -20px 0 0;
}

.block-reorder .product-name {
    margin-left: 0px;
    display: inline;
}

.block-reorder .validation-advice {
    margin: 3px 9px 7px;
}

/* Block: Banner */
.block-banner {
    border: 0;
}

.block-banner .block-content {
    padding: 0;
    text-align: center;
}

/* Block: Login */

.block-login .block-content {
    padding: 5px 10px;
}

.block-login label {
    font-weight: bold;
    color: #666;
}

.block-login input.input-text {
    display: block;
    width: 167px;
    margin: 3px 0;
}

.block-login .actions {
    background: none;
    padding: 0;
    margin: 3px 0 0;
}

.block-login .actions button.button span {
    border-color: #406a83;
    background: #618499;
}

/* Paypal */
.sidebar .paypal-logo {
    display: block;
    margin: 10px 0;
    text-align: center;
}

.sidebar .paypal-logo a {
    float: none;
}

/* ======================================================================================= */

.block button.button span {
    padding: 0;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    text-transform: capitalize;
    font-weight: normal;
    background-color: transparent;
}

.block button.button:hover span {
    background: none;
    color: #000;
}

.block-wishlist .actions a:hover, .block-related .actions a:hover {
    color: #000;
}

/* Category Page ========================================================================= */
.category-title {
    border: 0;
    margin: 0 0 7px;
}

.category-image {
    width: 100%;
    overflow: hidden;
    margin: 0 0 10px;
    text-align: center;
}

.category-image img {
    max-width: 100%;
}

.category-description {
    margin: 10px 0 55px;
    color: #626262;
}

.category-products {
    clear: both;
}

.category-title h2 a {
    padding: 0 !important;
    color: #000;
}

.category-title h2, .category-title h2 a, .crosssell > h2, .block-related .block-title strong {
    padding: 10px;
    font-size: 32px;
    letter-spacing: 3px;
    line-height: 32px;
    padding-bottom: 0px;
    text-transform: uppercase;
    text-align: center;
    font-weight: normal;
    position: relative;
    font-family: 'Anton', sans-serif;
}

.category-title h2:before, .crosssell h2:before, .block-related .block-title strong:before {
    background: #ffffff;
    bottom: -50px;
    color: #00A1EA;
    content: "\f00d";
    font-family: fontawesome;
    font-size: 19px;
    height: 35px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
    width: 35px;
    z-index: 1;
}

.box-up-sell .category-title h2:before, .block-related .block-title strong:before {
    background: #f5f5f5
}

.category-title h2:after, .category-title h2:after, .crosssell h2:after, .block-related .block-title strong:after {
    border-bottom: 1px solid #d1d1d1;
    content: "";
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    bottom: -32px;
    width: 140px;
}

h2.product-name {
    background: none;
    padding: 0 !important;
    border-bottom: none !important;
}

/* View Type: Grid */

.products-grid {
    width: 100%;
    margin: 0 -22px;
}

.products-grid li.item, .col-main .slider-item {
    float: left;
    width: 290px;
    padding: 0;
    list-style: none;
}

.products-grid li.first_item_tm {
}

.products-grid li.last_item_tm {
}

.products-grid li .product-block {
    clear: both;
    margin: 12px 22px 35px;
    overflow: hidden;
}

.products-grid li .product-block-inner {
    overflow: hidden;
    padding: 0px;
    position: relative;
    text-align: center;
}

a.product-image {
    display: block;
}

.product-block img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.hover-image {
    display: none;
}

.products-grid .product-name {
    margin: 0 0 5px;
    font-weight: normal;
    font-size: 14px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    letter-spacing: 0.5px;
}

.products-grid h2.product-name:before, .products-grid h2.product-name:after, .product-carousel h2.product-name:before, .product-carousel h2.product-name:after {
    content: initial;
}

.products-grid .product-name a {
}

.products-grid .price-box {
    margin: 5px 0;
}

.products-grid .availability {
}

.product-carousel .product-block {
    clear: both;
    margin: 5px 21px;
    overflow: hidden;
}

.product-carousel .product-block-inner {
    overflow: hidden;
    position: relative;
    text-align: center;
}

.product-image-inner {
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.product-carousel .add-to-links, .products-grid .add-to-links {
    position: absolute;
    left: 0;
    right: 0;
    transition: all 300ms ease 0s;
    -webkit-transition: all 300ms ease 0s;
    -moz-transition: all 300ms ease 0s;
    -ms-transition: all 300ms ease 0s;
    -o-transition: all 300ms ease 0s;
    bottom: -70px;
}

.product-carousel .product-block:hover .add-to-links, .products-grid .product-block:hover .add-to-links {
    bottom: 15px;
}

.product-block-inner .new-label {
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    text-transform: uppercase;
    z-index: 9;
    color: #000;
}

.product-block-inner .sale-label {
    position: absolute;
    top: 10px;
    left: 10px;
    text-align: center;
    text-transform: uppercase;
    z-index: 9;
    color: #000;
}

.products-list li .list-left .new-label {
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    text-transform: uppercase;
}

.products-list li .list-left .sale-label {
    position: absolute;
    top: 10px;
    left: 10px;
    text-align: center;
    text-transform: uppercase;
}

.products-grid .configurable-swatch-list {
    display: none;
}

/* View Type: List */
.products-list li.item {
    margin-bottom: 25px;
    padding: 0px;
}

.products-list li .list-left {
    float: left;
    margin-right: 10px;
    position: relative;
}

.products-list li .list-center {
    overflow: hidden;
}

.products-list li .list-right { /*overflow:hidden; */
}

.products-list li.item.last {
}

.products-list .product-image {
    float: left;
    margin: 0 0 10px;
}

.products-list .product-shop {
}

.products-list .product-name {
    font-size: 1.5em;
    font-family: Roboto, Arial, sans-serif;
    top: -10px;
    position: relative;
    margin-bottom: 0;
}

@media only screen and (max-width: 985px) {
    .products-list .product-name {
        font-size: 0.7em !important;
        top: 0;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 1290px) {
    .products-list .product-name {
        font-size: 1.0em;
        top: 0;
    }
}

@media only screen and (max-width: 979px) {
    .main, .footer, .container-width, .cms-index-index .messages {
        width: 100% !important;
    }
}

@media only screen and (max-width: 1290px) {
    .products-list .product-name {
        font-size: 1.0em;
        top: 0;
    }
}

.products-list .product-name a {
    font-size: 2em;
    margin: 5px 0 15px;
    text-transform: uppercase;
}

.products-list .price-box {
    margin: 3px 0px 5px 0;
}

.products-list .availability {
    float: left;
    margin: 0px 0 0;
    padding: 8px 20px;
    border: 2px solid #ff0000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #ff0000;
    display: inline-block;
    background-color: #fff;
}

.products-list .desc {
    clear: both;
    padding: 0px 0 0;
    margin: 0 0 15px;
    color: #626262;
}

.products-list .link-learn {
    font-size: 11px;
}

.products-list .add-to-links {
    clear: both;
    margin: 20px 0;
}

.products-list .add-to-links li {
    display: inline;
}

.products-list .add-to-links .separator {
    display: inline;
    margin: 0 2px;
    display: none;
}

.products-list li .ratings .rating-box {
    float: left;
    margin: 5px 0 10px;
}

/* ======================================================================================= */

/* Product View ========================================================================== */

/********************** Product View Tabs */
.product-view .tabs {
    margin: 15px 0px 0 0;
    overflow: hidden;
    text-align: center;
}

.product-view .tabs li {
    margin-right: 15px;
    display: inline-block;
    margin-right: 15px;
}

.product-view .tabs li.first {
    border-left: 0;
}

.product-view .tabs li.last {
    border-right: 0;
}

.product-view .tabs a {
    display: block;
    padding: 8px 32px;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    background: #fff;
    border: 2px solid #ccc;
    text-transform: uppercase;
}

.product-view .tabs a:hover {
    background: #00A1EA;
    color: #fff;
    border-color: #00A1EA;
    text-decoration: none;
}

.product-view .tabs li.active a,
.product-view .tabs li.active a:hover {
    background: #00A1EA;
    color: #fff;
    border-color: #00A1EA;
}

#product_tabs_tags_tabbed_contents.input-box input {
    width: 300px;
}

#product_tabs_tags_tabbed_contents .input-box {
    float: left;
    margin-bottom: 5px;
}

#product_tabs_related_tabbed_contents li .product-images span {
}

#product_tabs_related_tabbed_contents ol {
    clear: both;
}

.product-collateral {
    padding-right: 1%;
}

.product-collateral:after {
    content: ".";
    display: block;
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden;
}

.product-collateral .padder {
    padding: 0px 10px;
    color: #626262;
    margin-top: 35px;
}

#product_tabs_description_tabbed_contents h2, #product_tabs_related_tabbed_contents .block-title {
    display: none;
}

.padder h6 {
    color: #000;
    font-size: 14px;
    margin-bottom: 10px;
    display: none;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
}

/* Rating */
.no-rating {
    margin: 0 0 10px;
}

.ratings {
}

.ratings strong {
    float: left;
    margin: 1px 3px 0 0;
}

.ratings .rating-links {
    margin: 0;
    display: none;
}

.ratings .rating-links .separator {
    margin: 0 2px;
}

.ratings dt {
}

.ratings dd {
}

.rating-box {
    width: 69px;
    height: 13px;
    font-size: 0;
    line-height: 0;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/bkg_rating.png) 0 0 repeat-x;
    text-indent: -999em;
    overflow: hidden;
}

.rating-box .rating {
    float: left;
    height: 13px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/bkg_rating.png) 0 100% repeat-x;
}

.ratings .rating-box {
    display: inline-block;
    margin-bottom: 5px;
}

.product-view .product-shop .ratings .rating-box {
    margin-bottom: 0;
}

.ratings .amount {
    display: none;
}

.ratings-table th,
.ratings-table td {
    font-size: 11px;
    line-height: 1.15;
    padding: 3px 0;
}

.ratings-table th {
    font-weight: bold;
    padding-right: 8px;
}

/* Availability */
.availability {
    margin: 0;
}

.availability span {
    font-weight: 700;
}

.availability.in-stock span {
}

.availability.out-of-stock span {
}

.availability-only {
    padding: 8px 20px;
    border: 2px solid #ff0000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #ff0000;
    display: inline-block;
    background-color: #fff;
}

.availability-only span,
.availability-only a {
}

.availability-only a {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/i_availability_only_arrow.gif) 100% 0 no-repeat;
    cursor: pointer;
    padding-right: 15px;
    text-decoration: none;
}

.availability-only .expanded {
    background-position: 100% -15px;
}

.availability-only strong {
    color: #be2c00;
}

.availability-only-details {
    margin: 0 0 7px;
}

.availability-only-details th {
    background: #d2d6d9;
    font-size: 10px;
    padding: 0 8px;
}

.availability-only-details td {
    background: #ebf0f3;
    border-bottom: 1px solid #fff;
    font-size: 11px;
    padding: 2px 8px 1px;
}

.availability-only-details tr.odd td.last {
    color: #d95e00;
    font-weight: bold;
}

.product-view .product-shop .availability {
}

.product-view .product-shop .availability span {
    font-weight: normal;
    color: green;
}

.product-view .product-shop .availability.out-of-stock span {
    color: #ff0000
}

/* Email to a Friend */
.email-friend {
    margin: 0;
}

/* Alerts */
.alert-price {
    margin: 0;
    font-size: 11px;
}

.alert-stock {
    margin: 0;
    font-size: 11px;
}

/********** < Product Prices */
.price {
    white-space: nowrap !important;
}

.price-box {
    margin: 5px 0;
}

.price-box .price {
    font-weight: 700;
    font-size: 18px;
}

.price-box .price.old-price {
    font-size: 16px;
    color: #989797;
    font-style: italic;
}

/* Regular price */
.regular-price {
}

.regular-price .price {
}

.block .regular-price,
.block .regular-price .price {
}

/* Old price */
.old-price {
    margin: 0;
    text-decoration: line-through;
}

.old-price .price-label {
    white-space: nowrap;
    color: #999;
}

.old-price .price {
    font-weight: normal;
    color: #c76200;
    font-size: 14px;
    text-decoration: line-through;
}

/* Special price */
.special-price {
    margin: 0;
}

.special-price .price-label {
    font-size: 13px;
    font-weight: bold;
    white-space: nowrap;
    color: #cd5033;
}

.special-price .price {
    font-size: 15px;
    font-weight: normal;
    color: #c76200;
}

/* Minimal price (as low as) */
.minimal-price {
    margin: 0;
}

.minimal-price .price-label {
    font-weight: bold;
    white-space: nowrap;
}

.minimal-price-link {
    display: block;
    margin: 3px 0;
}

.minimal-price-link .label {
    color: #1e7ec8;
}

.minimal-price-link .price {
    font-weight: normal;
    color: #1e7ec8;
    font-size: 13px;
}

/* Excluding tax */
.price-excluding-tax {
    display: block;
    color: #999;
}

.price-excluding-tax .label {
    white-space: nowrap;
    color: #999;
}

.price-excluding-tax .price {
    font-size: 13px;
    font-weight: normal;
    color: #c76200;
}

/* Including tax */
.price-including-tax {
    display: block;
    color: #999;
}

.price-including-tax .label {
    white-space: nowrap;
    color: #999;
}

.price-including-tax .price {
    font-size: 13px;
    font-weight: bold;
    color: #c76200;
}

/* Configured price */
.configured-price {
    margin: 0;
}

.configured-price .price-label {
    font-weight: bold;
    white-space: nowrap;
}

.configured-price .price {
    font-weight: bold;
}

/* FPT */
.weee {
    display: block;
    font-size: 11px;
    color: #444;
}

.weee .price {
    font-size: 11px;
    font-weight: normal;
}

/* Excl tax (for order tables) */
.price-excl-tax {
    display: block;
}

.price-excl-tax .label {
    display: block;
    white-space: nowrap;
}

.price-excl-tax .price {
    display: block;
}

/* Incl tax (for order tables) */
.price-incl-tax {
    display: block;
}

.price-incl-tax .label {
    display: block;
    white-space: nowrap;
}

.price-incl-tax .price {
    display: block;
    font-weight: bold;
}

/* Price range */
.price-from {
    margin: 0;
}

.price-from .price-label {
    font-weight: bold;
    white-space: nowrap;
}

.price-to {
    margin: 0;
}

.price-to .price-label {
    font-weight: bold;
    white-space: nowrap;
}

/* Price notice next to the options */
.price-notice {
    padding-left: 10px;
    color: #999;
}

.price-notice .price {
    font-weight: bold;
}

/* Price as configured */
.price-as-configured {
    margin: 0;
}

.price-as-configured .price-label {
    font-weight: bold;
    white-space: nowrap;
}

.price-box-bundle {
    padding: 0 0 10px 0;
}

.price-box-bundle .price-box {
    margin: 0 !important;
    padding: 0 !important;
}

/********** Product Prices > */

/* Tier Prices */
.product-pricing,
.tier-prices {
    margin: 10px 0;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.tier-prices li {
    line-height: 1.4;
    padding: 2px 0 2px 0px;
}

.tier-prices .benefit {
    font-style: italic;
    font-weight: bold;
}

.tier-prices .price {
    font-weight: bold;
}

.tier-prices-grouped li {
    padding: 2px 0;
    color: #e26703;
}

.tier-prices-grouped li .price {
    font-weight: bold;
}

/* Add to Links */
.add-to-links {
}

.add-to-links li {
    list-style: none;
    display: inline-block;
}

.add-to-links li.rating-stars {
    display: block;
}

.add-to-links .separator {
    display: none;
}

.add-to-links li a.link-wishlist {
    font-size: 0;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    line-height: normal;
}

.add-to-links li a.link-wishlist:before {
    content: "\f004";
    font-family: "FontAwesome";
    font-size: 14px;
    vertical-align: middle;
    display: block;
    padding: 8px 11px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    border: 2px solid #ccc;
    line-height: 20px;
    background-color: #fff;
}

.add-to-links li a.link-wishlist:hover:before {
    background: #00A1EA;
    color: #fff;
    border-color: #00A1EA;
}

.add-to-links li a.link-compare {
    font-size: 0;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    line-height: normal;
}

.add-to-links li a.link-compare:before {
    content: "\f1fe";
    font-family: "FontAwesome";
    font-size: 14px;
    vertical-align: middle;
    display: block;
    padding: 8px 11px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    border: 2px solid #ccc;
    line-height: 20px;
    background-color: #fff;
}

.add-to-links li a.link-compare:hover:before {
    background: #00A1EA;
    color: #fff;
    border-color: #00A1EA;
}

.add-to-links li .actions {
    display: inline-block;
    vertical-align: top;
}

.products-list .add-to-links li a.link-wishlist {
    font-size: 14px;
    margin-right: 15px;
}

.products-list .add-to-links li a.link-wishlist:before {
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    background: none;
    padding: 0;
    margin-right: 10px;
    display: inline-block;
}

.products-list .add-to-links li a.link-wishlist:hover:before {
    color: #989797;
}

.products-list .add-to-links li a.link-compare {
    font-size: 14px;
}

.products-list .add-to-links li a.link-compare:before {
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    background: none;
    padding: 0;
    margin-right: 10px;
    display: inline-block;
}

.products-list .add-to-links li a.link-compare:hover:before {
    color: #989797;
}

.product-options-bottom .add-to-cart .input-content {
    float: left;
}

/* Add to Cart */
.add-to-cart label {
    float: left;
    margin-right: 25px;
    font-weight: normal;
    margin-top: 10px;
    font-size: 17px;
}

.add-to-cart .qty {
    width: 60px !important;
    border: none;
    background: #fff;
    font-size: 16px;
    text-align: center;
    height: 24px;
    line-height: 24px;
    display: block;
    float: left;
    padding: 7px 5px;
    color: #777;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    margin: 0 10px;
}

.qty-arrows {
    float: left;
}

.qty-increase {
    width: 35px;
    height: 35px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/quantity.png) no-repeat scroll 6px 2px #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    margin-top: 2px;
    float: left;
}

.qty-increase:hover {
    background-color: #ddd;
}

.qty-decrease {
    width: 35px;
    height: 35px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/quantity.png) no-repeat scroll 6px -31px #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    margin-top: 2px;
    float: left;
}

.qty-decrease:hover {
    background-color: #ddd;
}

.add-to-cart button.button {
    float: left;
}

.add-to-cart .paypal-logo {
    clear: left;
    margin: 0;
    text-align: right;
}

.add-to-cart .paypal-logo .paypal-or {
    clear: both;
    display: block;
    margin: 5px 60px 5px 0;
}

.product-view .add-to-cart .paypal-logo {
    margin: 0;
}

.product-view .product-shop .add-to-box {
    margin: 10px 0 30px;
}

.add-to-box .add-to-cart {
}

.add-to-box .or {
    float: left;
    font-weight: bold;
    margin: 0 7px;
    color: #666;
}

.add-to-box .add-to-links {
    float: left;
    margin: 0;
    text-align: left;
}

.add-to-box .add-to-links li {
    margin-right: 10px;
}

.add-to-box .add-to-links li .separator {
    display: none !important;
}

.add-to-cart .input-content {
    float: left;
}

.product-view {
}

.product-essential h2 {
    display: none;
}

.product-collateral {
    margin-bottom: 50px;
    margin-top: 50px;
}

.product-collateral h2, .related-products .block-subtitle, .box-tags h3 {
    font-weight: normal;
    font-size: 15px;
    border-bottom: 1px solid #dedede;
    padding: 0 0 10px;
    margin: 0 0 15px;
}

.product-collateral .box-collateral {
    margin: 0 0 25px;
}

.related-products .block-subtitle {
    margin-top: 10px;
    display: none;
}

/* Product Images */
.product-view .product-img-box {
    float: left;
    width: 400px;
}

.col3-layout .product-view .product-img-box {
    float: none;
    margin: 0 auto;
}

.product-view .product-img-box .product-image {
    margin: 0px;
    border: 1px solid #ddd;
    position: relative;
    z-index: 1;
}

.product-view .product-img-box .product-image #wrap {
}

.product-view .product-img-box .product-image-zoom {
    position: relative;
    width: 400px;
    height: 400px;
    overflow: hidden;
    z-index: 9;
    border: 1px solid #eee;
}

.product-view .product-img-box .product-image-zoom img {
    position: absolute;
    left: 0;
    top: 0;
    cursor: move;
}

.product-view .product-img-box .zoom-notice {
    font-size: 11px;
    margin: 0 0 5px;
    text-align: center;
}

.product-view .product-img-box .zoom {
    position: relative;
    z-index: 9;
    height: 18px;
    margin: 0 auto 13px;
    padding: 0 28px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/slider_bg.gif) 50% 50% no-repeat;
    cursor: pointer;
}

.product-view .product-img-box .zoom.disabled {
    -moz-opacity: .3;
    -webkit-opacity: .3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; /*IE8*/
    opacity: .3;
}

.product-view .product-img-box .zoom #track {
    position: relative;
    height: 18px;
}

.product-view .product-img-box .zoom #handle {
    position: absolute;
    left: 0;
    top: -1px;
    width: 9px;
    height: 22px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/magnifier_handle.gif) 0 0 no-repeat;
}

.product-view .product-img-box .zoom .btn-zoom-out {
    position: absolute;
    left: 2px;
    top: 0;
}

.product-view .product-img-box .zoom .btn-zoom-in {
    position: absolute;
    right: 2px;
    top: 0;
}

.product-view .product-img-box .more-views h2 {
    font-size: 11px;
    border-bottom: 1px solid #ccc;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.product-view .product-img-box .more-views ul {
    margin-left: -9px
}

.product-view .product-img-box .more-views li {
    float: left;
    margin: 0 0 8px 9px;
}

.product-view .product-img-box .more-views li a {
    float: left;
    width: 56px;
    height: 56px;
    border: 2px solid #ddd;
    overflow: hidden;
}

.product-image-popup {
    margin: 0 auto;
}

.product-image-popup .buttons-set {
    float: right;
    clear: none;
    border: 0;
    margin: 0;
    padding: 0;
}

.product-image-popup .nav {
    font-weight: bold;
    margin: 0 100px;
    text-align: center;
}

.product-image-popup .image {
    display: block;
    margin: 10px 0;
}

.product-image-popup .image-label {
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 10px;
}

/* Product Shop */
.product-view .product-shop {
    float: right;
    width: 443px;
}

.col1-layout .product-view .product-shop {
    float: left;
    width: 64%;
    margin-left: 0
}

.col3-layout .product-view .product-shop {
    float: none;
    width: auto;
}

.product-view .product-shop .product-name {
    margin: 0 0 5px;
}

.product-view .product-shop .product-name h1 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.product-view .product-shop .availability {
    float: right;
    margin: 0 0 10px;
    text-align: right;
}

.product-view .product-shop .short-description {
    margin: 10px 0;
    font-size: 13px;
    color: #626262;
}

.product-view .product-shop .price-box {
    margin: 35px 0 20px;
}

.product-view .product-shop .price-box .price {
    font-size: 30px;
}

.product-view .product-shop .price-box .price.old-price {
    font-size: 20px;
}

.product-view .product-shop .add-to-links {
    margin: 0px 0;
    font-size: 13px;
}

.product-view .product-shop .add-to-links li {
    display: inline;
}

.product-view .product-shop .add-to-links li .separator {
    display: none;
}

.product-view .product-shop .add-to-links a.link-wishlist {
    margin-right: 15px;
    font-size: 14px;
}

.product-view .product-shop .add-to-links a.link-wishlist:before {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    padding: 0;
    margin-right: 10px;
    border: none;
    background: none;
    display: inline-block;
}

.product-view .product-shop .add-to-links a.link-wishlist:hover:before {
    color: #989797;
}

.product-view .product-shop .add-to-links a.link-wishlist:hover {
    background-position: -220px -412px;
}

.product-view .product-shop .add-to-links a.link-compare {
    font-size: 14px;
    margin-right: 15px;
}

.product-view .product-shop .add-to-links a.link-compare:before {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    padding: 0;
    margin-right: 10px;
    border: none;
    background: none;
    display: inline-block;
}

.product-view .product-shop .add-to-links a.link-compare:hover:before {
    color: #989797;
}

.product-view .product-shop .add-to-links a.link-compare:hover {
    background-position: -220px -450px;
}

.product-view .product-shop .ratings .rating-links {
    display: inline-block;
    margin-left: 10px;
}

.email-addto-box {
    margin-bottom: 10px;
    margin-top: 3%;
}

.email-addto-box .email-friend {
    float: left;
    margin-right: 5px;
}

.email-addto-box .email-friend a {
    margin-right: 15px;
}

.email-addto-box .email-friend a:before {
    content: "\f0e0";
    font-family: "FontAwesome";
    font-size: 14px;
    margin-right: 10px;
}

.email-addto-box .email-friend a:hover {
}

#prev-next-links {
    float: right;
    margin-top: -42px;
    width: 40px;
}

#prev-next-links a {
    height: 21px;
    width: 13px;
    display: block;
    margin-bottom: 0;
    text-decoration: none;
}

#prev-next-links a#link-previous-product {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -201px 4px transparent;
    float: left;
}

#prev-next-links a#link-previous-product:before {
    color: #999;
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 28px;
}

#prev-next-links a#link-previous-product:hover:before {
    color: #000000;
}

#prev-next-links a#link-next-product {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -231px 4px transparent;
    float: right;
}

#prev-next-links a#link-next-product:before {
    color: #999;
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 28px;
}

#prev-next-links a#link-next-product:hover:before {
    color: #000000;
}

#upsell-product-table {
    margin-top: 70px;
    position: relative;
    margin-bottom: 100px;
}

#upsell-product-table .customNavigation a {
    top: 40%;
}

#upsell-product-table .customNavigation a.prev {
    left: -120px;
}

#upsell-product-table .customNavigation a.next {
    right: -120px;
}

/* Product Options */
.product-options {
    margin: 0;
    padding: 0 0 10px;
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

.product-options dt {
    padding: 10px 0 0;
    font-weight: normal;
}

.product-options dt label {
    font-weight: normal;
}

.product-options dt label.required em {
    color: #DD4B39;
    margin-left: 5px;
}

.product-options dd .qty-holder {
    display: block;
    padding: 10px 0 0;
}

.product-options dd .qty-holder label {
    vertical-align: middle;
}

.product-options dt .qty-disabled {
    background: none;
    border: 0;
    padding: 3px;
}

.product-options dd {
    padding: 5px 0px 10px;
    margin: 0 0 5px;
}

.product-options dl.last dd.last {
    border-bottom: 0;
    padding-bottom: 5px;
    margin-bottom: 0;
}

.product-options dd input.input-text {
    width: 98%;
}

.product-options dd input.datetime-picker {
    width: 150px;
}

.product-options dd .time-picker {
    display: -moz-inline-box;
    display: inline-block;
    padding: 2px 0;
    vertical-align: middle;
}

.product-options dd textarea {
    width: 98%;
    height: 8em;
}

.product-options dd select {
    width: 98%;
}

.product-options dd .multiselect option {
    padding: 5px 5px;
}

.product-options ul.options-list {
    margin-right: 5px;
}

.product-options ul.options-list li {
    line-height: 1.5;
    padding: 5px 0;
}

.product-options ul.options-list input.radio {
    margin-top: 3px;
    margin-right: 9px;
}

.product-options ul.options-list input.checkbox {
    margin-top: 3px;
    float: left;
}

.product-options ul.options-list .label {
    display: inline;
}

.product-options ul.options-list label {
    font-weight: normal;
}

.product-options ul.validation-failed {
    padding: 0 7px;
}

.product-options p.note {
    margin: 0;
    font-size: 11px;
}

.product-options p.required {
    position: absolute;
    right: 0px;
    top: 0px;
}

.product-options-bottom {
    padding: 0px 0px;
}

.product-options-bottom .product-pricing,
.product-options-bottom .tier-prices {
    margin: 0;
    padding: 0 0 10px;
    border: 0;
    background: 0;
    color: #e26703;
}

.product-options-bottom .tier-prices li {
    background: 0;
    padding: 2px 0;
}

.product-options-bottom .tier-prices .price,
.product-options-bottom .tier-prices .benefit {
    color: #e26703;
}

.product-options-bottom .price-box {
    float: left;
    margin: 0;
    padding: 0;
}

.product-options-bottom .add-to-links {
    clear: both;
    padding: 5px 0 0;
    text-align: right;
}

.col3-layout .product-options-bottom .price-box {
    float: none;
    padding: 0 0 5px;
    width: 100%;
}

.product-options-bottom .price-label {
    float: left;
    padding-right: 5px;
}

.product-options-bottom .price-tax {
    float: left;
}

.product-options-bottom .add-to-cart {
    float: left;
    width: 100%;
}

.product-shop .product-options-bottom {
    margin: 0 0 10px;
}

.product-shop .product-options-bottom .price-box {
    float: none;
    margin: 0 0 5px;
    display: none;
}

.product-shop .product-options-bottom .price-label {
    float: none;
    padding-right: 0;
}

.product-shop .product-options-bottom .price-tax {
    float: none;
}

.product-shop .product-options-bottom .add-to-cart-box {
    float: left;
    padding-top: 12px;
}

.product-shop .product-options-bottom .add-to-links {
    padding: 5px 0 0;
    text-align: left;
    display: none;
}

/* Grouped Product */
.product-view .grouped-items-table .price-box {
    margin: 0;
    padding: 0;
}

/* Block: Description */
.product-view .box-description {
}

/* Block: Additional */
.product-view .box-additional .data-table th,
.product-view .box-additional .data-table td {
    line-height: 1.25;
}

/* Block: Upsell */
/*.product-view .box-up-sell h2 {  padding:0 0 10px; margin:0 0 8px; }
*/
.product-view .box-up-sell .products-grid .product-image {
    text-align: center;
}

.product-view .box-up-sell .products-grid .ratings .rating-box {
    float: none;
    display: block;
    margin: 0 0 3px;
}

/* Block: Tags */
.product-view .box-tags {
    margin: 0;
}

.product-view .box-tags h3 {
}

.product-view .box-tags .product-tags {
    display: block;
    margin: 0 0 15px;
}

.product-view .box-tags .product-tags li {
    display: inline;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/bkg_pipe1.gif) 100% 4px no-repeat;
    padding: 0 7px 0 4px;
}

.product-view .box-tags .product-tags li.first {
    padding-left: 0;
}

.product-view .box-tags .product-tags li.last {
    background: none;
    padding-right: 0;
}

.product-view .box-tags .form-add label {
    display: block;
    margin: 0 0 5px;
}

.product-view .box-tags .form-add .input-box {
    float: left;
}

.product-view .box-tags .form-add input.input-text {
    width: 300px;
    margin-right: 5px;
    padding: 10px;
}

.product-view .box-tags .form-add button.button span {
}

.product-view .box-tags .note {
    margin: 3px 0 0;
    padding: 0 0 0px;
    font-size: 12px;
}

/* Block: Reviews */
.product-view .box-reviews dl {
    margin: 15px 0;
}

.product-view .box-reviews dt a,
.product-view .box-reviews dt span {
    font-weight: bold;
}

.product-view .box-reviews dd {
    margin: 0 0 15px;
}

.product-view .box-reviews dd small {
    font-style: italic;
}

.product-view .box-reviews .form-add {
    margin: 15px 0 0;
}

.product-view .box-reviews .form-add h3 {
    font-size: 13px;
    font-weight: normal;
}

.product-view .box-reviews .form-add h3 span {
    font-weight: bold;
}

.product-view .box-reviews .form-add h4 {
    font-size: 12px;
}

.product-view #product-review-table {
    max-width: 180px;
    margin: 15px 0;
}

.product-view #product_tabs_review_tabbed_contents .form-list .input-box {
    max-width: 500px;
    width: 100%;
}

.product-view #product_tabs_review_tabbed_contents .form-list textarea {
    width: 95%;
}

.product-view .box-reviews .form-add .data-table td {
    text-align: center;
}

.product-view .box-reviews .form-add .form-list {
    margin: 15px 0 0;
}

.product-view .box-reviews .form-add .form-list .input-box {
    width: 360px;
}

.product-view .box-reviews .form-add .form-list input.input-text,
.product-view .box-reviews .form-add .form-list textarea {
    width: 354px;
}

/* Send a Friend */
.send-friend .form-list {
    width: 615px;
    overflow: hidden;
}

.send-friend .form-list li {
    margin-right: -15px;
}

.send-friend .form-list li p {
    margin: 0 15px 0 0;
}

.send-friend .form-list .field {
    width: 315px;
}

.send-friend .form-list .input-box {
    width: 300px;
}

.send-friend .form-list input.input-text,
.send-friend .form-list textarea {
    width: 294px;
}

.send-friend .form-list li.wide .input-box {
    width: 612px;
}

.send-friend .form-list li.wide textarea {
    width: 609px;
}

.send-friend .buttons-set .limit {
    float: right;
    margin: 0 7px 0 0;
    font-size: 11px;
    line-height: 21px;
}

/* ======================================================================================= */

/* Content Styles ================================================================= */
.product-name {
    margin: 0;
    font-size: 1em;
    font-weight: normal;
}

.product-name a, .product-review .product-name {
    font-size: 14px;
    text-decoration: none;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.product-name a:hover {
}

/* Product Tags */
.tags-list {
    display: block;
    border: 1px solid #EDEDED;
    background: #FBFBFB;
    padding: 10px;
}

.tags-list li {
    display: inline !important;
    margin: 0 4px 0 0;
}

.tags-list li a {
}

/* Advanced Search */
.advanced-search .form-list label {
    width: 160px;
    padding-right: 10px;
}

.advanced-search .form-list .input-box,
.advanced-search .form-list .input-range {
    float: left;
    clear: none;
}

.advanced-search-amount {
    margin: 0 0 10px;
}

.advanced-search-summary {
    margin: 10px 0;
    border: 1px solid #e9d7c9;
    background: #fff6f1;
    padding: 10px;
}

.advanced-search-summary ul {
    float: left;
    width: 49%;
}

.advanced-search-summary strong {
    color: #E17C24;
    padding-left: 15px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/i_search_criteria.gif) 0 3px no-repeat;
}

.advanced-search-summary p {
    clear: both;
    font-weight: bold;
    margin: 0;
}

/* CMS Home Page */
.cms-home .subtitle {
}

.cms-index-index .subtitle {
}

/* Sitemap */
.page-sitemap .links {
    text-align: right;
    margin: 20px 0 0;
    float: right;
}

.page-sitemap .links a {
    text-decoration: none;
    position: relative;
}

.page-sitemap .links a:hover {
    text-decoration: underline;
}

.page-sitemap .sitemap {
    margin: 12px;
}

.page-sitemap .sitemap a {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/subcat_arrow.png") no-repeat scroll 3px center transparent;
    padding-left: 12px;
}

.page-sitemap .sitemap a:hover {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/subcat_arrow_hover.png") no-repeat scroll 3px center transparent;
}

.page-sitemap .sitemap li {
    margin: 5px 0;
}

.page-sitemap .sitemap li.level-0 {
    margin: 10px 0 0;
    font-weight: bold;
}

.page-sitemap .sitemap li.level-0 a {
    color: #1e7ec8;
}

.contacform {

}

.googlemap {
    float: right;
    margin-top: 10px;
    width: 50%;
}

.contacform .form-list li.wide .input-box {
    width: 100%;
}

.contacform .form-list li.wide textarea {
    width: 97%;
}

.contacform .fieldset {
    margin-top: 10px;
}

/* RSS */
.rss-title h1 {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/i_rss-big.png) 0 4px no-repeat;
    padding-left: 27px;
}

.rss-table .link-rss {
    display: block;
    line-height: 1.55;
    background-position: 0 4px;
}

/* ======================================================================================= */

/* Shopping Cart ========================================================================= */
.cart .page-title {
    border-bottom: 0;
    margin: 0px;
}

.cart .page-title h1 {
    margin: 10px 0 0;
}

/* Checkout Types */
.cart .page-title .checkout-types li {
    margin: 0 0 5px;
}

.cart .title-buttons .checkout-types {
    float: right;
}

.cart .title-buttons .checkout-types li {
    float: left;
    margin: 0 0 5px 0px;
}

.cart .checkout-types .paypal-or {
    margin: 0 8px;
    line-height: 2.3;
}

.cart .totals .checkout-types .paypal-or {
    clear: both;
    display: block;
    padding: 8px 55px 0 0;
    line-height: 1.0;
    font-size: 11px;
}

/* Shopping Cart Table */
.cart-table th {
    padding: 2px 10px;
}

.cart-table td {
    padding: 10px;
}

.cart-table .product-name {
    margin: 0 0 5px;
}

.cart-table .item-msg {
    margin: 5px 0;
    font-size: 11px;
    font-weight: bold;
    color: #df280a;
}

.cart-table tfoot td {
    padding: 12px 10px;
}

.cart-table .btn-continue {
    float: left;
}

.cart-table .btn-empty span,
.cart-table .btn-continue span,
.cart-table .btn-update span {
}

.cart-table .btn-update,
.cart-table .btn-empty {
    float: right;
}

.cart-table .btn-update {
    margin-left: 10px;
}

/* Shopping Cart Collateral boxes */
.cart .cart-collaterals {
    padding: 35px 0 0;
    overflow: auto;
    margin-bottom: 50px;
}

.cart .cart-collaterals .col1-set {
    width: 470px;
    float: left;
}

.cart .cart-collaterals .col2-set {
    width: 665px;
    float: right;
}

.cart .crosssell {
    margin-bottom: 10px;
}

.crosssell_product {
    position: relative;
}

.cart .crosssell ul {
    margin-top: 70px;
}

.cart .crosssell .product-image {
}

.cart .crosssell .link-compare {
    font-weight: normal;
}

/* Discount Codes & Estimate Shipping and Tax Boxes */
.cart .discount,
.cart .shipping {
    border: 1px solid #ddd;
    padding: 20px 20px;
    margin: 0 0 35px;
}

.cart .discount .buttons-set,
.cart .shipping .buttons-set {
    margin: 10px 0 0;
    border: 0;
    padding: 0;
    text-align: left;
}

.cart .discount .buttons-set button.button,
.cart .shipping .buttons-set button.button {
    float: none;
    margin-left: 0;
}

.shopping_CMS_main1 {
    margin-bottom: 10px;
    clear: both;
}

.shopping_CMS_main1 img {
    max-width: 100%;
}

.cart .discount .input-box {
    margin: 8px 0 0;
    width: 260px;
}

.cart .discount input.input-text {
    width: 254px;
}

.cart .shipping .sp-methods {
    margin: 10px 0 0;
    padding: 5px 0 0;
}

/* Shopping Cart Totals */
.cart .totals {
    float: right;
    width: 305px;
    background: #FBFBFB;
    border: 1px solid #DBDEE1;
    margin-bottom: 10px;
}

.cart .totals table {
    width: 100%;
    margin: 7px 0;
}

.cart .totals td {
    padding: 1px 15px 1px 7px;
}

.cart .totals tr.last td {
}

.cart .totals tfoot th {
    padding: 5px 15px 5px 7px;
}

.cart .totals tfoot td {
    padding-top: 5px;
    padding-bottom: 5px;
}

.cart .totals tfoot th strong,
.cart .totals tfoot td strong {
    font-size: 20px;
}

.cart .totals .checkout-types {
    font-size: 13px;
    padding: 0px;
    text-align: right;
}

.cart .totals .checkout-types li {
    clear: both;
    margin: 10px 10px;
}

.cart .totals .checkout-types li:last-child {
    background: #ddd;
    padding: 7px;
    text-align: center;
    border-top: 1px solid #fff;
    margin: 0;
}

/* Options Tool Tip */
.item-options dt {
    font-weight: bold;
    float: left;
    margin-right: 10px;
}

.item-options dd {
    padding-left: 0px;
    margin: 0 0 5px;
}

.truncated {
    cursor: help;
    position: relative;
}

.header .block .block-content li .truncated a {
    color: #000;
}

.truncated a.dots {
    cursor: help;
}

.truncated a.details {
    cursor: help;
    color: #fff;
}

.truncated .truncated_full_value {
    position: absolute;
    z-index: 999;
}

.truncated .truncated_full_value .item-options {
    position: absolute;
    top: -99999em;
    left: -99999em;
    z-index: 999;
    width: 250px;
    padding: 8px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.col-left .truncated .truncated_full_value .item-options, .col-right .truncated .truncated_full_value .item-options {
    background-color: #fff;
    border: 1px solid #ddd;
}

.truncated .truncated_full_value .item-options > p {
    font-weight: bold;
    text-transform: uppercase;
}

.truncated .show .item-options {
    top: -20px;
    left: 50%;
    width: 100px;
    border: 1px solid #ddd;
}

.col-left .truncated .show .item-options {
    left: 0px;
    top: 0px;
}

.col-right .truncated .show .item-options {
    left: -240px;
    top: 7px;
}

/* ======================================================================================= */

/* Checkout ============================================================================== */
/********** < Common Checkout Styles */
/* Shipping and Payment methods */
.sp-methods {
    margin: 0 0 8px;
}

.sp-methods dt {
    margin: 13px 0 5px;
    font-weight: bold;
}

.sp-methods dd {
}

.sp-methods dd li {
    margin: 5px 0;
}

.sp-methods label {
    font-weight: normal;
}

.sp-methods .price {
    font-weight: bold;
}

.sp-methods .form-list {
    margin-top: 15px;
    padding-left: 0;
}

.sp-methods .form-list li {
    margin: 0 0 30px;
}

.sp-methods select.month {
    width: 154px;
    margin-right: 10px;
    margin-bottom: 5px;
}

.sp-methods select.year {
    width: 96px;
}

.sp-methods input.cvv {
    width: 3em !important;
}

.sp-methods .checkmo-list li {
    margin: 0 0 5px;
}

.sp-methods .checkmo-list label {
    width: 135px;
    padding-right: 10px;
    text-align: right;
}

.sp-methods .checkmo-list address {
    float: left;
}

.sp-methods .centinel-logos a {
    margin-right: 3px;
}

.sp-methods .centinel-logos img {
    vertical-align: middle;
}

.sp-methods .release-amounts {
    margin: 0.5em 0;
}

.sp-methods .release-amounts button {
    float: left;
    margin: 5px 10px 0 0;
}

.please-wait {
    float: right;
}

.please-wait img {
    vertical-align: middle;
}

.cvv-what-is-this {
    font-size: 11px;
    cursor: help;
    margin-left: 10px;
}

/* Tooltip */
.tool-tip {
    border: 1px solid #7BA7C9;
    background: #EAF6FF;
    padding: 15px 20px;
    position: absolute;
    z-index: 9999;
}

.tool-tip .btn-close {
    margin: -9px -14px 0;
    text-align: right;
}

.tool-tip .btn-close a {
    display: block;
    margin: 0 0 0 auto;
    width: 15px;
    height: 15px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/btn_window_close.gif) 100% 0 no-repeat;
    text-align: left;
    text-indent: -999em;
    overflow: hidden;
}

.tool-tip .tool-tip-content {
    padding: 5px;
}

/* Gift Messages */
.gift-messages h3 {
    font-weight: normal;
}

.gift-messages p.control {
}

.gift-messages-form {
    position: relative;
}

.gift-messages-form label {
    float: none !important;
    position: static !important;
}

.gift-messages-form h4 {
    font-weight: bold;
}

.gift-messages-form .whole-order {
    margin: 0 0 25px;
}

.gift-messages-form .item {
    margin: 0 0 10px;
}

.gift-messages-form .item .product-img-box {
    float: left;
    width: 75px;
}

.gift-messages-form .item .product-image {
    margin: 0 0 7px;
}

.gift-messages-form .item .number {
    margin: 0;
    text-align: center;
}

.gift-messages-form .item .details {
    margin-left: 90px;
}

.gift-messages-form .item .details .product-name {
    margin: 0 0 10px;
}

.gift-messages-form .item .details .form-list .field {
    width: 255px;
}

.gift-messages-form .item .details .form-list .input-box {
    width: 240px;
}

.gift-messages-form .item .details .form-list input.input-text {
    width: 234px;
}

.gift-messages-form .item .details .form-list li.wide .input-box {
    width: 500px;
}

.gift-messages-form .item .details .form-list li.wide textarea {
    width: 98%;
}

.gift-message-link {
    font-size: 11px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/bkg_collapse-gm.gif) 100% 6px no-repeat;
    padding-right: 7px;
}

.gift-message-link.expanded {
    background-position: 100% -40px;
}

.gift-message-row {
    background: #f2efe9;
}

.gift-message-row .btn-close {
    float: right;
    width: 16px;
    height: 16px;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/btn_gm-close.gif) 0 0 no-repeat;
    font-size: 0;
    line-height: 0;
    text-indent: -999em;
    overflow: hidden;
}

/* Checkout Agreements */
.checkout-agreements li {
    margin: 30px 0;
}

.checkout-agreements .agreement-content {
    overflow: auto;
    height: 12em;
    padding: 10px;
    background-color: #fbfaf6;
    border: 1px solid #bbb6a5;
}

.checkout-agreements .agree {
    margin: 0;
    padding: 10px 0 10px 11px;
}

.checkout-agreements .agree input.checkbox {
    margin-right: 6px;
}

.checkout-agreements .agree label {
    font-weight: bold;
    color: #666;
}

.opc .checkout-agreements {
    border: 1px solid #d9dde3;
    border-width: 0 1px;
    padding: 5px 30px;
}

.opc .checkout-agreements li {
    margin: 20px 0 0;
}

.opc .checkout-agreements .agreement-content {
    background-color: #fff;
    border-color: #e4e4e4;
    padding: 5px;
}

.opc .checkout-agreements .agree {
    padding-left: 6px;
}

/* Centinel */
.centinel {
}

.centinel .authentication {
    border: 1px solid #ddd;
    background: #fff;
}

.centinel .authentication iframe {
    width: 99%;
    height: 400px;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
}

.opc .centinel {
    border: 1px solid #bbb6a5;
    border-width: 0 1px 1px;
    padding: 10px 30px;
}

/* Generic Info Set */
.info-set {
    border: 1px solid #bbb6a5;
    margin: 0 0 25px;
    padding: 20px;
}

.info-set h2 {
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 10px;
}

.info-set h3,
.info-set h4 {
    font-size: 13px;
    font-weight: bold;
    color: #E26703;
}

.info-set h2 a,
.info-set h3 a,
.info-set h4 a {
    font-weight: normal;
}

.info-set h2.legend {
    margin: -20px -20px 15px;
    padding: 5px 10px;
    background: #f9f3e3;
    border-bottom: 1px solid #bbafa0;
    position: relative;
}

.info-set h3.legend {
    margin: 0 0 10px;
    color: #0a263c;
}

.info-set .divider {
    margin: 0 -20px;
    padding: 25px 0;
    position: relative;
}

.info-set .box {
    margin: 0 0 15px;
}

.info-set .box h2 {
    color: #e26703;
}

.info-set .data-table .product-name {
    font-size: 1em !important;
    font-weight: bold !important;
    color: #1e7ec8 !important;
}

.info-set .data-table .product-name a {
    font-weight: bold !important;
}

.info-set .data-table .item-options {
    margin: 5px 0 0;
}

/********** Common Checkout Styles > */

/* One Page Checkout */
.block-progress {
    border: 0;
    margin: 0;
}

.block-progress dt {
    margin: 0 0 10px;
    padding: 5px 0px;
}

.block-progress dd {
    padding: 10px 0px;
    margin: 0 0 10px;
}

.block-progress dt.complete {
    margin: 0;
    border-bottom: 1px solid #DDDDDD;
}

.block-progress dd.complete {
}

.block-progress p {
    margin: 0;
}

.block-progress .cards-list dt {
    background: none;
    border: 0 none;
    color: inherit;
    font-size: 12px;
    margin: 5px 0;
    padding: 0;
}

.block-progress .cards-list dd {
    border: 0 none;
    margin: 0;
    padding: 0;
}

.block-progress .cards-list .info-table th {
    font-weight: normal;
}

/* show/hide "change" link for progress step depend on complete status
 * should be placed in .css file */
#checkoutSteps {
    margin-bottom: 15px;
}

.opc-block-progress dt.complete a,
.opc-block-progress dt.complete .separator {
    display: inline;
}

.opc-block-progress dt.complete a {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/edit.png") no-repeat scroll 0 0;
    padding-left: 20px;
    font-size: 12px;
}

.opc-block-progress dt a,
.opc-block-progress dt .separator {
    display: none;
}

.opc .buttons-set {
    margin-top: 0;
    padding-top: 15px;
    border: none;
}

.opc .buttons-set p.required {
    margin: 0;
    padding: 0 0 10px;
}

.opc .buttons-set .back-link small {
    display: none;
}

.opc .buttons-set.disabled button.button {
    display: none;
}

.opc .buttons-set .please-wait {
    height: 21px;
    line-height: 21px;
}

.opc .ul {
    list-style: disc outside;
    padding-left: 18px;
}

.opc {
    position: relative;
}

.opc li.section {
    border-top: 1px solid #DDDDDD;
}

.opc li.section:last-child {
    border-bottom: 1px solid #DDDDDD;
}

.opc .step-title {
    border-width: 0 1px;
    border-style: solid;
    border-color: #ddd;
    background: #FFF;
    padding: 10px 10px;
    text-align: left;
}

.opc .step-title .number {
    float: left;
    background: #fff;
    border: 1px solid #ddd;
    padding: 0 5px;
    margin: 0 5px 0 0;
    color: #000;
}

.opc .step-title h2 {
    float: left;
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
}

.opc .step-title a {
    display: none;
    float: right;
    line-height: 16px;
    color: #fff;
}

.opc .allow .step-title {
    cursor: pointer;
}

.opc .allow .step-title .number {
    background: #fff;
    border-color: #ddd;
}

.opc .allow .step-title h2 {
}

.opc .allow .step-title a {
    display: block;
    color: #fff;
}

.opc .active .step-title {
    background: #00A1EA;
    border: 1px solid #00A1EA;
    color: #fff;
    cursor: default;
}

.opc .active .step-title .number {
    background: #00A1EA;
    border-color: #fff;
    color: #fff;
}

.opc .active .step-title h2 {
    color: #fff;
}

.opc .allow .step-title:hover {
}

.opc .active .step-title a {
    display: none;
}

.opc .step {
    border: 1px solid #DDDDDD;
    border-top: 0;
    padding: 15px 30px;
    position: relative;
    margin-bottom: -1px;
}

.opc .step .tool-tip {
    right: 30px;
}

#opc-login .buttons-set {
    border-top: 0;
}

#opc-login h3 {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
    text-transform: capitalize;
    font-weight: normal;
}

#opc-login h4 {
    font-size: 1em;
    font-weight: bold;
    margin: 0;
}

#opc-shipping_method .buttons-set {
    border-top: 0;
}

.opc .gift-messages-form {
    background: none repeat scroll 0 0 #FAFAFA;
    border: 1px solid #DDDDDD;
    margin: 0;
    padding: 0;
}

.opc .gift-messages-form .inner-box {
    padding: 10px;
    height: 260px;
    overflow: auto;
}

#opc-review .step {
    border: 0;
    padding: 0;
}

#opc-review .product-name {
}

#opc-review .item-options {
    margin: 5px 0 0;
}

#opc-review .buttons-set {
    padding: 20px 30px;
    border: 1px solid #ddd;
    border-width: 0 1px 1px;
}

#opc-review .buttons-set p {
    margin: 0;
    line-height: 40px;
}

#opc-review .buttons-set .please-wait {
    height: 40px;
    line-height: 40px;
}

#opc-review .authentication {
    margin: 0 auto;
    width: 570px;
}

#opc-review .warning-message {
    color: #222;
    font-weight: bold;
    text-align: center;
    padding: 10px 10px 0;
}

/* Multiple Addresses Checkout */
.checkout-onepage-success h2 {
    border-bottom: none;
}

.checkout-progress {
    padding: 0 90px;
    margin: 10px 0 20px;
}

.checkout-progress li {
    float: left;
    width: 19%;
    margin: 0 3px 0 0;
    border-top: 10px solid #000;
    padding: 2px 0 0;
    font-weight: normal;
    text-align: center;
    color: #000;
}

.checkout-progress li.active {
    border-top-color: #00A1EA;
    color: #00A1EA;
}

.multiple-checkout h3,
.multiple-checkout h4 {
    font-weight: normal;
    margin-bottom: 10px;
}

.multiple-checkout h2 a,
.multiple-checkout h3 a,
.multiple-checkout h4 a {
    font-weight: normal;
    font-size: 13px;
}

.multiple-checkout .data-table .product-name {
    font-size: 1em !important;
    font-weight: bold !important;
    color: #1e7ec8 !important;
}

.multiple-checkout .data-table .item-options {
    margin: 5px 0 0;
}

.multiple-checkout .gift-messages {
    margin: 15px 0 0;
}

.multiple-checkout .tool-tip {
    top: 50%;
    margin-top: -120px;
    right: 20px;
}

.multiple-checkout .col2-set,
.multiple-checkout .col3-set {
    border: 1px solid #EDEDED;
    margin: 0 0 25px;
    padding: 20px;
}

.multiple-checkout .col2-set h2.legend {
    margin: -20px -20px 15px;
    padding: 5px 10px;
    background: #F0F0F0;
    position: relative;
}

.multiple-checkout .col2-set h3.legend {
    margin: 0 0 10px;
    color: #0a263c;
}

.multiple-checkout .col2-set .divider {
    margin: 0 -20px;
    padding: 25px 0;
    position: relative;
}

.multiple-checkout .box {
    margin: 0 0 15px;
}

.multiple-checkout .box h2 {
}

.multiple-checkout .place-order .please-wait {
    float: right;
    padding: 27px 7px 0 0;
}

.multiple-checkout .place-order .grand-total {
    float: right;
    font-size: 1.5em;
    padding: 0px;
    overflow: hidden;
}

.multiple-checkout .place-order .grand-total .inner {
    float: left;
}

.multiple-checkout .place-order .grand-total .inner div {
    display: inline;
}

.multiple-checkout .place-order .grand-total big {
    display: inline;
    margin-right: 12px;
}

.multiple-checkout .place-order .grand-total .price {
    color: #E26703;
}

.multiple-checkout .place-order .grand-total button.button span {
    font-size: 16px;
}

.multiple-checkout .place-order .grand-total button.button span span {
    padding: 0 45px 0 36px;
}

/* Step 1 */

#multiship-addresses-table td {
    padding: 10px;
}

#multiship-addresses-table tfoot td {
    padding: 5px 10px;
}

/* Step 2 */
.multiple-checkout .gift-messages-form .item .details .form-list {
    width: 100%;
}

.multiple-checkout .gift-messages-form .item .details .form-list li {
    margin-right: -15px;
}

.multiple-checkout .gift-messages-form .item .details .form-list .field {
    width: 230px;
}

.multiple-checkout .gift-messages-form .item .details .form-list .input-box {
    width: 215px;
}

.multiple-checkout .gift-messages-form .item .details .form-list input.input-text {
    width: 209px;
}

.multiple-checkout .gift-messages-form .item .details .form-list li.wide .input-box {
    width: 450px;
}

.multiple-checkout .gift-messages-form .item .details .form-list li.wide textarea {
    width: 98%;
}

.checkout-multishipping-shipping .box-sp-methods {
    border: 1px solid #EDEDED;
    background: #FBFBFB;
    padding: 13px;
    position: relative;
}

/* Step 3 */
.checkout-multishipping-billing .multiple-checkout {
    position: relative;
}

/* ======================================================================================= */

/* Account Login/Create Pages ============================================================ */

.account-login .content {
    border-bottom: 0;
}

.account-login .content h2, .fieldset .legend, .box-account .box-head h2, .addresses-list h2,
.multiple-checkout h2, .checkout-onepage-success h2, .order-info-box h2, .sales-order-print .col2-set h2 {
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 14px;
    padding: 0 0 10px;
    text-transform: uppercase;
}

.account-login .buttons-set {
    margin: 0;
}

.account-create {
}

/* Captcha ================================================================================ */
.captcha-note {
    clear: left;
    padding-top: 5px;
}

.captcha-image {
    float: left;
    display: inline;
    margin: 0;
    position: relative;
    width: 258px;
}

.captcha-image .captcha-img {
    border: 1px solid #b6b6b6;
    vertical-align: bottom;
    width: 100%;
}

.registered-users .captcha-image {
    margin: 0;
}

.captcha-reload {
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 2px;
}

.captcha-reload.refreshing {
    animation: rotate 1.5s infinite linear;
    -webkit-animation: rotate 1.5s infinite linear;
    -moz-animation: rotate 1.5s infinite linear;
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0);
    }
    0% {
        -webkit-transform: rotate(-360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -moz-transform: rotate(0);
    }
    0% {
        -moz-transform: rotate(-360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }
    0% {
        transform: rotate(-360deg);
    }
}

/* Remember Me Popup ===================================================================== */
.window-overlay {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/window_overlay.png) repeat;
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 990;
}

.remember-me label {
    float: none;
    margin: 0 6px;
}

.remember-me-popup {
    background: #fff;
    border: 1px solid #ccc;
    left: 50%;
    top: 50%;
    position: absolute;
    margin: -85px 0 0 -200px;
    width: 400px;
    text-align: left;
    -moz-box-shadow: 0 0 6px #ccc;
    -webkit-box-shadow: 0 0 6px #ccc;
    -box-shadow: 0 0 6px #ccc;
    z-index: 1000;
}

.remember-me-popup h3 {
    background: #d9e5ee;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    padding: 5px 10px;
}

.remember-me-popup .remember-me-popup-head {
    position: relative;
}

.remember-me-popup .remember-me-popup-head .remember-me-popup-close {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/btn_window_close.gif) no-repeat;
    display: block;
    position: absolute;
    top: 7px;
    right: 7px;
    height: 15px;
    width: 15px;
    text-indent: -9999em;
}

.remember-me-popup .remember-me-popup-body {
    padding: 10px;
}

.remember-me-popup .remember-me-popup-body a {
    display: inline-block;
    height: 19px;
    border: 1px solid #de5400;
    background: #f18200;
    padding: 0 8px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
}

/* Remember Me Popup ===================================================================== */

/* My Account ============================================================================= */
.my-account .title-buttons .link-rss {
    float: none;
    margin: 0;
}

/********** < Dashboard */
.dashboard .welcome-msg {
    margin: 0 0 15px;
}

.dashboard .col2-set {
    margin: 0 0 15px;
}

/* General Box */
.box-account {
    margin: 0 0 20px;
}

.box-account .col2-set .col-1 {
    border-right: 1px solid #EDEDED;
    float: left;
    padding-right: 10px;
    width: 48.5%;
}

.dashboard .box .box-title {
    border-bottom: 1px solid #DDD;
    margin: 0 0 20px;
    padding: 5px 0px;
    text-align: right;
}

.dashboard .box .box-title h3,
.dashboard .box .box-title h4 {
    float: left;
    font-size: 14px;
    font-weight: normal;
    margin: 0;
}

/* Block: Recent Orders */

/* Block: Account Information */
.dashboard .box-info h4 {
    font-weight: normal;
    text-transform: capitalize;
}

/* Block: Reviews */
.dashboard .box-reviews .box-head h2 {
}

.dashboard .box-reviews li.item {
    margin: 0 0 7px;
}

.dashboard .box-reviews .ratings {
    margin: 7px 0 0;
}

/* Block: Tags */

.dashboard .box-tags .number, .dashboard .box-reviews .number {
    float: left;
    font-weight: bold;
    line-height: 1;
    color: #333;
    margin: 0px;
    padding: 5px 7px;
    background: #ccc;
}

.dashboard .box-tags .details, .dashboard .box-reviews .details {
    margin-left: 30px;
}

.dashboard .box-tags li.item, .dashboard .box-reviews li.item {
    margin: 10px 0 7px;
}

.dashboard .box-tags li.item.last, .dashboard .box-reviews li.item.last {
    margin-bottom: 0;
}

.dashboard .box-tags .tags strong,
.dashboard .box-tags .tags ul,
.dashboard .box-tags .tags ul li {
    display: inline;
}

/********** Dashboard > */

/* Address Book */
.addresses-list h3 {
    font-weight: normal;
    font-size: 14px;
}

.addresses-list address {
    margin: 0 0 3px;
}

.addresses-list p {
    margin: 0;
}

.addresses-list .link-remove {
    color: #646464;
}

.addresses-list .separator {
    margin: 0 3px;
}

.addresses-list li.item {
    padding: 20px 0px;
    margin: 0 0 20px;
    border-bottom: 1px solid #DDD
}

.addresses-list li.empty {
    background: none;
    border: 0;
    padding: 0;
}

.addresses-list .addresses-additional li.item {
    background: none;
    border: 0;
    padding: 0;
}

/* Order View */
.order-info {
    padding: 10px 0px;
    margin: 0 0 20px;
    border-bottom: 1px solid #ddd;
}

.order-info dt,
.order-info dd,
.order-info ul,
.order-info li {
    display: inline;
}

.order-info .current {
    font-weight: bold;
}

.order-info li {
    margin: 0 3px;
}

.order-date {
    margin: 10px 0;
}

.order-info-box, .sales-order-print .col2-set {
    border: 1px solid #ddd;
    padding: 15px 15px;
    margin: 0 0 15px;
}

.order-info-box .box-payment p {
    margin: 0 0 3px;
}

.order-info-box .box-payment th {
    font-weight: bold;
    padding-right: 7px;
}

.order-items {
    width: 100%;
    overflow-x: auto;
}

.order-items h2,
.order-items h3 {
    margin: 0 0 5px;
}

.order-items .product-name {
}

.order-items .link-print {
    color: #1e7ec8;
    font-weight: normal;
}

.order-items .order-links {
    text-align: right;
}

.order-additional {
    margin: 15px 0;
}

/* Order Gift Message */
.gift-message dt strong {
    color: #666;
}

.gift-message dd {
    font-size: 13px;
    margin: 5px 0 0;
}

/* Order Comments */
.order-about dt {
    font-weight: bold;
}

.order-about dd {
    font-size: 13px;
    margin: 0 0 7px;
}

.tracking-table {
    margin: 0 0 15px;
}

.tracking-table th {
    font-weight: bold;
    white-space: nowrap;
}

.tracking-table-popup {
    width: 100%;
}

.tracking-table-popup th {
    font-weight: bold;
    white-space: nowrap;
}

.tracking-table-popup th,
.tracking-table-popup td {
    padding: 1px 8px;
}

/* Order Print Pages */
.page-print .print-head {
    margin: 0 0 15px;
}

.page-print .print-head .logo {
    float: left;
}

.page-print .print-head address {
    float: left;
    margin-left: 15px;
}

.page-print h1 {
    font-size: 16px;
    font-weight: bold;
}

.page-print h2.h2 {
    font-size: 16px;
    font-weight: bold;
}

.page-print .order-date {
    padding: 0 0 10px;
    margin: 0 0 10px;
}

.page-print .col2-set {
    margin: 0 0 10px;
}

/* Price Rewrites */
.page-print .gift-message-link {
    display: none;
}

.page-print .price-excl-tax,
.page-print .price-incl-tax {
    display: block;
    white-space: nowrap;
}

.page-print .cart-price,
.page-print .price-excl-tax .label,
.page-print .price-incl-tax .label,
.page-print .price-excl-tax .price,
.page-print .price-incl-tax .price {
    display: inline;
}

/* My Wishlist */
.my-wishlist .data-table td {
    padding: 10px;
}

.my-wishlist .product-image {
    display: block;
    width: 113px;
    height: 113px;
    margin: 0 0 5px;
}

.my-wishlist textarea {
    display: block;
    width: 97%;
    height: 109px;
    margin-top: 10px;
}

.my-wishlist .buttons-set {
    margin-top: 2em;
}

.my-wishlist .buttons-set button.button {
    float: none;
}

.my-wishlist .buttons-set .btn-add span,
.my-wishlist .buttons-set .btn-share span {
}

#wishlist-table .add-to-links {
    white-space: nowrap;
}

/* My Tags */
.my-tag-edit {
    float: left;
    margin: 0 0 10px;
}

.my-tag-edit .btn-remove {
    float: right;
    margin: 4px 0 0 5px;
}

#my-tags-table {
    clear: both;
}

#my-tags-table td {
    padding: 10px;
}

#my-tags-table .add-to-links {
    white-space: nowrap;
    text-align: center;
    margin-top: 10px;
}

/* My Reviews */
#my-reviews-table td {
    padding: 10px;
}

.product-review .product-img-box {
    float: left;
    width: 300px;
}

.product-review .product-img-box .product-image {
    display: block;
    width: 300px;
    height: 300px;
}

.product-review .product-img-box .label {
    font-size: 11px;
    margin: 0 0 3px;
}

.product-review .product-img-box .ratings .rating-box {
    float: none;
    display: block;
    margin: 0 0 3px;
}

.product-review .product-details {
    margin-left: 310px;
}

.product-review h3 {
    font-size: 12px;
    margin: 0 0 3px;
}

.product-review .ratings-table {
    margin: 0 0 10px;
}

.product-review dt {
    font-weight: bold;
}

.product-review dd {
    font-size: 13px;
    margin: 5px 0 0;
}

/* Billing Agreements */
.billing-agreements .info-box {
    margin: 15px 0;
}

.billing-agreements .form-list li select {
    float: left;
}

.billing-agreements .form-list li button.button {
    float: left;
    margin-left: 10px;
}

.billing-agreements .table-caption {
    font-weight: bold;
    font-size: 13px;
}

/* ======================================================================================= */

/* MAP Popup============================================================================== */
.cart-msrp-totals {
    color: red;
    font-size: 12px !important;
    font-weight: bold;
    margin: 10px 10px 0;
    padding: 10px;
    text-align: right;
    text-transform: uppercase;
}

.map-cart-sidebar-total {
    color: red;
    display: block;
    font-size: 10px;
    font-weight: bold;
    text-align: left;
    padding: 2px 5px;
    text-shadow: 0 1px 0 #fff;
}

.map-popup {
    background: #fff;
    border: 1px solid #aaa;
    margin: 12px 0 0;
    position: absolute;
    -moz-box-shadow: 0 0 6px #ccc;
    -webkit-box-shadow: 0 0 6px #ccc;
    box-shadow: 0 0 6px #ccc;
    text-align: left;
    width: 300px;
    z-index: 100;
}

.map-popup-heading {
    background: #d9e5ee;
    border-bottom: 1px solid #ccc;
    padding: 5px 30px 5px 10px;
    width: 260px;
}

.map-popup-heading h2 {
    font-size: 16px;
    margin: 0;
    text-shadow: 0 1px 0 #f6f6f6;
    overflow: hidden;
    white-space: nowrap;
    word-wrap: break-word;
    text-align: left;
    text-overflow: ellipsis;
}

.map-popup-arrow {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/map_popup_arrow.gif) no-repeat;
    position: absolute;
    left: 50%;
    top: -10px;
    height: 10px;
    width: 19px;
}

.map-popup-close {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/btn_window_close.gif) no-repeat;
    display: block;
    position: absolute;
    top: 8px;
    right: 10px;
    height: 15px;
    width: 15px;
    text-indent: -9999em;
    -moz-box-shadow: 0 0 3px #999;
    -webkit-box-shadow: 0 0 3px #999;
    box-shadow: 0 0 3px #999;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.map-popup-content {
    border-top: 1px solid #eee;
    padding: 10px;
    overflow: hidden;
    text-align: left;
    width: 280px;
}

.map-popup-checkout {
    display: inline;
    float: right;
    text-align: right;
}

.map-popup-checkout span {
    display: block;
    padding-right: 30px;
}

.map-popup-checkout .paypal-logo {
    margin: 0 0 5px;
}

.map-popup-price .price-box,
.map-popup-price .price-box .special-price {
    margin: 0;
    padding: 0;
}

.map-popup-price {
    margin: 5px 0 0;
}

.map-popup-text {
    clear: right;
    margin: 0 10px;
    padding: 10px 0;
    text-align: left;
    word-wrap: break-word;
}

.map-popup-only-text {
    border-top: 1px solid #ddd;
}

/* ======================================================================================= */

/* Footer ================================================================================ */
.footer .store-switcher {
    display: inline;
    margin: 0 5px 0 0;
}

.footer .store-switcher label {
    font-weight: bold;
    vertical-align: middle;
}

.footer .store-switcher select {
    padding: 0;
    vertical-align: middle;
}

.footer a {
    text-decoration: none;
    color: #999;
}

.footer a:hover {
    color: #00A1EA;
}

.footer .bugs {
    margin: 13px 0 0;
    color: #777;
}

.footer .bugs a {
    color: #777;
    text-decoration: underline;
}

.footer .bugs a:hover {
    text-decoration: none;
}

.footer address {
    margin: 7px auto;
    float: none;
}

.footer address a {
    color: #777;
    text-decoration: underline;
}

.footer address a:hover {
    text-decoration: none;
}

.footer ul {
    line-height: 28px;
}

ul.about {
    margin-bottom: 30px;
}

.phoneno {
    color: #3d3d3d;
    font-family: 'Anton', sans-serif;
    font-size: 45px;
    letter-spacing: 1px;
    line-height: 40px;
    margin-top: 20px;
}

.social li {
    display: inline;
}

.footer_bottom ul.links {
    float: none;
    display: inline-block;
    margin: 0 auto 0px;
    text-align: center;
}

.footer li {
    padding: 0 0 8px 0;
}

.footer .social li a {
    color: #4d4d4d;
}

.footer .social li a:hover {
    color: #00A1EA;
}

.footer_bottom li {
    display: inline;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/bkg_pipe1.png) 100% 70% no-repeat;
    padding: 0 15px 0 10px;
}

.footer ul.payment_block li {
    background: none;
    padding: 0;
    margin-right: 5px;
}

.footer ul.links li.last {
    background: none;
}

.footer-container .bottom-container {
    margin: 0 0 5px;
}

.ie7 .footer_top li {
    display: block;
    padding-bottom: 7px;
    padding-left: 0px;
}

.ie7 .footer_top ul {
    display: block;
}

.ie7 .social_block ul li {
    padding-bottom: 0px;
}

.footer-container .block-subscribe {
    margin: 0 auto;
}

.footer .mobile_togglemenu {
    display: none;
}

.footer_top {
    padding: 90px 0 100px;
    overflow: hidden;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
}

.footer_bottom {
    clear: both;
    overflow: hidden;
    padding: 0px;
    text-align: center;
    margin-top: 15px;
    padding-bottom: 25px;
}

#footer .footer-area {
    float: left;
    width: 50%;
    text-align: center;
    padding-bottom: 3%;
}

#footer .footer-area:last-child {
    margin-right: 0;
}

#footer #block_4 {
    margin-right: 0;
}

#footer h6, #footer .block .block-title strong {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: none;
    line-height: 24px;
    text-transform: uppercase;
    font-family: 'Anton';
}

#footer .footer_map h6 {
    display: none;
}

.social_block ul li {
    float: left;
    height: 35px;
    width: 35px;
    margin: 0 10px 10px 0;
    padding: 0;
    cursor: pointer;
}

.social_block ul li.facebook {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -5px -289px transparent;
}

.social_block ul li.twitter {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -45px -289px transparent;
}

.social_block ul li.rss {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -85px -289px transparent;
}

.social_block ul li.linkin {
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -125px -289px transparent;
}

.social_block ul li.facebook:hover {
    background-position: -5px -326px
}

.social_block ul li.twitter:hover {
    background-position: -45px -325px
}

.social_block ul li.rss:hover {
    background-position: -85px -325px
}

.social_block ul li.linkin:hover {
    background-position: -125px -325px
}

#footer .block {
    border: none;
    margin-bottom: 10px;
}

#footer .block .block-title {
    background: none;
    padding: 0;
    line-height: 20px;
}

#footer .block-subscribe .block-content {
    background: none;
    border: none;
    padding: 0;
}

#footer .block-subscribe input.input-text {
    width: 213px;
}

#footer .mobile_togglemenu {
    cursor: pointer;
    display: block;
    font-size: 15px;
    margin-right: 0;
    margin-top: -20px;
    overflow: hidden;
    padding: 0 0 4px 7px;
    text-decoration: none;
    width: 99%;
    position: relative;
}

#footer .mobile_togglemenu:before, .padder h5.mobile_togglemenu:before, .mobile_togglecolumn:before {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 16px;
    position: absolute;
    color: #fff;
    right: 0;
    padding: 2px 5px;
    background: #00A1EA;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    line-height: normal;
}

.padder h5.mobile_togglemenu {
    cursor: pointer;
    display: block;
    font-size: 15px;
    margin-right: 0;
    margin-top: -24px;
    overflow: hidden;
    padding: 0 0 4px 7px;
    text-decoration: none;
    width: 100%;
    position: relative;
}

#footer .active .mobile_togglemenu, .padder .active .mobile_togglemenu {
}

#footer .active .mobile_togglemenu:before, .padder .active .mobile_togglemenu:before, .selected .mobile_togglecolumn:before {
    content: "\f106";
    font-family: "FontAwesome";
}

.toggle .mobile_togglecolumn {
    cursor: pointer;
    display: none;
    margin-top: -42px;
    overflow: hidden;
    padding: 0 0 20px;
    width: 100%;
    position: relative;
}

.active .mobile_togglecolumn {
}

.top_button {
    font-size: 0;
    height: 34px;
    width: 34px;
    background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/back_to_top.png") no-repeat scroll 0 0;
    z-index: 999;
    display: none;
    position: fixed;
    right: 15px;
    bottom: 15px;
}

.social li a i {
    font-size: 16px;
    margin-right: 9px;
}

/* ======================================================================================= */

/* Sample Data============================================================================ */
.home-callout {
    margin-bottom: 12px;
}

.home-callout img {
    display: block
}

.home-spot {
    float: left;
    width: 470px;
    margin-left: 20px;
}

.best-selling h3 {
    margin: 12px 0 6px 0;
    color: #e25203;
    font-size: 1.2em;
}

.best-selling table {
    border-top: 1px solid #ccc;
}

.best-selling tr.odd {
    background: #eee url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/best_selling_tr_odd_bg.gif) 0 100% repeat-x;
}

.best-selling tr.even {
    background: #fff url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/best_selling_tr_even_bg.gif) 0 100% repeat-x;
}

.best-selling td {
    width: 50%;
    border-bottom: 1px solid #ccc;
    padding: 8px 10px 8px 8px;
    font-size: 11px;
}

.best-selling .product-img {
    float: left;
    border: 2px solid #dcdcdc;
}

.best-selling .product-description {
    margin-left: 107px;
    line-height: 1.3em;
}

.best-selling a.product-name,
.home-spot .best-selling a.product-name:hover {
    color: #203548;
}

/* ======================================================================================= */

/* Clears ================================================================================ */
.clearer:after,
.header-container:after,
.header-container .top-container:after,
.header:after,
.header .quick-access:after,
#nav:after,
.main:after,
.footer:after,
.footer-container .bottom-container:after,
.col-main:after,
.col2-set:after,
.col3-set:after,
.col3-layout .product-options-bottom .price-box:after,
.col4-set:after,
.search-autocomplete li:after,
.block .block-content:after,
.block .actions:after,
.block li.item:after,
.block-poll li:after,
.block-layered-nav .currently li:after,
.page-title:after,
.products-grid:after,
.products-list li.item:after,
.box-account .box-head:after,
.dashboard .box .box-title:after,
.box-reviews li.item:after,
.box-tags li.item:after,
.pager:after,
.sorter:after,
.ratings:after,
.add-to-box:after,
.add-to-cart:after,
.product-essential:after,
.product-collateral:after,
.product-view .product-img-box .more-views ul:after,
.product-view .box-tags .form-add:after,
.product-view .product-shop .short-description:after,
.product-view .box-description:after,
.product-options .options-list li:after,
.product-options-bottom:after,
.product-review:after,
.cart:after,
.cart-collaterals:after,
.cart .crosssell li.item:after,
.opc .step-title:after,
.checkout-progress:after,
.multiple-checkout .place-order:after,
.group-select li:after,
.form-list li:after,
.form-list .field:after,
.buttons-set:after,
.page-print .print-head:after,
.advanced-search-summary:after,
.gift-messages-form .item:after,
.send-friend .form-list li p:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden;
}

/* ======================================================================================= */

.guest-select {
    width: 305px !important;
}

/* Default Width  Start*/

.grid_default_width {
    width: 300px;
}

.featured_default_width {
    width: 100%;
}

.newproduct_default_width {
    width: 355px;
}

.bestseller_default_width {
    width: 300px;
}

.special_default_width {
    width: 300px;
}

.testimonial_default_width {
    width: 100%;
}

.slider_default_width {
    width: 100%;
}

.additional_default_width {
    width: 100px;
}

.blog_default_width {
    width: 360px
}

.brand_default_width,
.manufacture-product li.slider-item,
.manufacture-product li.product-items {
    width: 130px;
}

.related_default_width,
.related-products li.slider-item,
.related-products li.product-items {
    width: 290px;
}

.upsell_default_width,
.box-up-sell li.slider-item,
.box-up-sell li.product-items {
    width: 290px;
}

.crosssell_default_width,
.crosssell li.slider-item,
.crosssell li.product-items {
    width: 290px;
}

/* Default Width  End*/

/* ============================================ *
 * Configurable Swatches
 * ============================================ */
/* Clears */
.clearfix:after,
.configurable-swatch-list:after,
.product-view .product-options .swatch-attr:after {
    content: '';
    display: table;
    clear: both;
}

/* General Swatch Styling */
.swatch-link,
.swatch-label {
    display: block;
    font-size: 14px;
    text-align: center;
    color: #636363;
    text-decoration: none;
    box-sizing: content-box;
}

.swatch-link {
    border: 1px solid #cccccc;
    margin: 0 0 3px;
}

.swatch-link img {
    border-radius: 2px;
}

.swatch-link:hover {
    cursor: pointer;
    text-decoration: none;
}

.swatch-link .x {
    display: none;
    text-indent: -999em;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/bg_x.png) center no-repeat transparent;
    z-index: 10;
}

.swatch-link.has-image .swatch-label {
    position: relative;
}

.swatch-link.has-image img {
    position: absolute;
    top: 0;
    left: 0;
}

.swatch-label {
    border: 1px solid #fff;
    margin: 0;
    white-space: nowrap;
    background: #f4f4f4;
}

.configurable-swatch-list {
    margin: 10px 0 5px -3px;

    clear: both;
    -webkit-transform: translateZ(0px);
}

.configurable-swatch-list li {
    float: left;

    margin: 0 0 0 3px;
}

.products-grid .configurable-swatch-list li {
    display: inline-block;
    float: none;
    margin: 0;
    vertical-align: top;
}

.configurable-swatch-list .not-available .x {
    display: block;
}

.configurable-swatch-list .not-available .swatch-link {
    border-color: #ededed;
    position: relative;
}

.configurable-swatch-list .not-available .swatch-link.has-image img {
    opacity: 0.4;

}

.configurable-swatch-list .not-available .swatch-label {
    color: #aaa;
    background: #fff;
}

.configurable-swatch-list .wide-swatch .swatch-label {
    padding: 0 6px;
}

.configurable-swatch-list .not-available a:focus {
    outline: 0;
}

#narrow-by-list dd .configurable-swatch-list li {
    margin: 0 0 0 3px;
    width: 47%;
}

#narrow-by-list dd .swatch-link {
    border: none;
    line-height: 25px;
    margin-right: 2px;
    text-align: left;
}

#narrow-by-list dd .swatch-link.has-image {
    line-height: inherit;
}

#narrow-by-list dd .swatch-link:hover .swatch-label {
    border-color: #00A1EA;
}

#narrow-by-list dd .swatch-label {
    background: #fff;
    border: 1px solid #ddd;
    display: block;
    float: left;
    line-height: 1.5em;
    margin: 0 5px 0 0;
    padding: 1px 5px;
    white-space: nowrap;
}

#narrow-by-list dd .swatch-label img {
    border: 1px solid #fff;
    border-radius: 3px;
    box-sizing: content-box;
}

#narrow-by-list dd .has-image .swatch-label {
    padding: 0;
}

@media only screen and (max-width: 770px) {
    #narrow-by-list dd .configurable-swatch-list li:nth-child(odd) {
        clear: left;
    }
}

.currently .swatch-current {
    position: relative;
}

.currently .swatch-current .btn-remove {
    margin-top: -10px;
    position: absolute;
    right: 0;
    top: 50%;
}

.currently .swatch-current span {
    display: block;
    float: left;
}

.currently .swatch-link {
    display: inline-block;
    margin: 0 0 0 3px;
}

.currently .swatch-link:hover {
    border-color: #cccccc;
    cursor: default;
}

/* Other Swatch States */
.configurable-swatch-list .hover .swatch-link,
.configurable-swatch-list .selected .swatch-link,
.swatch-link:hover {
    border-color: #3399cc;
}

.configurable-swatch-box {
    background: none !important;
}

.configurable-swatch-box select.swatch-select {
    display: none;
}

.configurable-swatch-box .validation-advice {
    margin: 0 0 5px;
    background: #df280a;
    padding: 2px 5px !important;
    font-weight: bold;
    color: #fff !important;
    float: left;
    display: block;
    border-radius: 3px;
}

.product-view .product-img-box .product-image img {
    max-width: 100%;
    max-height: 750px;
    margin: 0px auto;
    display: none;
}

.product-view .product-img-box .product-image-zoom {
    z-index: 0;
}

.product-view .product-image-thumbs img {
    width: 100% !important;
    height: auto;
    border: 1px solid #eee;
}

.zoomWindow {
    display: block;
}

.zoomContainer {
    z-index: 99;
}

.product-image-zoom.zoom-available .gallery-image {
    display: none;
}

.product-view .product-img-box .product-image .gallery-image.visible {
    display: block;
}

.product-image-thumbs.mycarousel.jcarousel-list.jcarousel-list-vertical {
    min-height: 400px;
}

#image-color-name {
    bottom: 20px;
    font-size: 40px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
}

.product-img-box .product-carousel .slider-item {
    text-align: center;
    margin: 5px 0px;
}

.product-carousel .slider-wrapper-outer {
    background: #EFEFEF;
}

.thumb-link {
    display: inline-block;
}

/* end configurable swtaches */

.cart-price {
    padding-right: 7px;
}

/*Shop Now CMS*/

.Shopnow-text-cms {
    background-color: #00A1EA;
    padding: 88px 0 90px;
    text-align: center;
}

.Shopnow-text-cms .container-width {
}

.Shopnow-text-cms .text {
    color: #fff;
    display: inline;
    font-size: 20px;
    font-style: italic;
    letter-spacing: 2px;
}

.Shopnow-text-cms .button {
    display: inline;
    margin-left: 30px;
    text-align: center;
}

.Shopnow-text-cms .button a {
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    border: 2px solid #000;
    font-weight: bold;
    padding: 8px 40px;
    text-transform: uppercase;
    color: #fff;
    background-color: #000;
}

.Shopnow-text-cms .button a:hover {
    background-color: transparent;
    border-color: #fff;
}

/*End Shop Now CMS*/

/*Parallax CMS*/

.parallax {
    margin: 0 auto 0;
    position: relative;
    width: 95%;
    text-align: center;
    clear: both;
    background-size: cover;
}

.catalog-category-view .parallax {

}

.testimonial-container {
    padding: 5px 0;
    position: relative;
}

.testimonial_inner {
    position: relative;
}

#testimonial .customNavigation {
    position: absolute;
    top: 57%;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;

}

#testimonial:hover .customNavigation {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
}

#testimonial .slider-controls {
    margin-top: 0px;
}

.testimonial-container .image-block {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    width: 92px;
    height: 92px;
    position: relative;
}

.testimonial-container .image-block:before {
    content: "";
    border: 7px solid rgba(176, 225, 247, 0.7);
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.testimonial-container .post-content-inner {
    padding: 0;
    margin-top: 15px;
}

.testimonial-container .image-block img {
    width: 100%;
}

.testimonial-container .designation {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 18px;
}

.testimonial-container .post-description {
    color: #000000;
    line-height: 25px;
    margin: 13px auto;
    width: 80%;
    margin-top: 11px;
}

.testimonial-container .post-author a {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    color: #000;
    letter-spacing: 1px;
}

#testimonial .customNavigation a.prev {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png) no-repeat scroll -5px -355px;
    height: 65px;
    left: 30px;
    width: 35px;
}

#testimonial .customNavigation a.prev:hover {
    background-position: -5px -429px;
}

#testimonial .customNavigation a.next {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png) no-repeat scroll -55px -355px;
    height: 65px;
    right: 30px;
    width: 35px;
}

@media only screen and (max-width: 1280px) and (min-width: 1200px) {
    #testimonial .customNavigation a.next {
        right: 30px !important;
    }
    #testimonial .customNavigation a.prev {
        left: 30px !important;
    }
}

@media only screen and (max-width: 1200px) {
    #testimonial .customNavigation a.next {
        right: 10px !important;
    }
    #testimonial .customNavigation a.prev {
        left: 10px !important;
    }
}

#testimonial .customNavigation a.next:hover {
    background-position: -55px -429px;
}

/*End Parallax CMS*/

/* Home Slider CMS */

.homeslider_cms {
    height: auto;
    overflow: hidden;
    width: 100%;
    background-color: #FAFAFA;
}

.homeslider_cms .main_heading, .homecms-tabs .main_heading {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 3px;
    line-height: 32px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    color: #000;
}

.homeslider_cms .title {
    margin-bottom: 113px;
    margin-top: 90px;
    position: relative;
    text-align: center;
}

.homeslider_cms .main_heading::before, .homecms-tabs .main_heading::before {
    background: #ffffff;
    bottom: -44px;
    color: #00A1EA;
    content: "\f00d";
    font-family: fontawesome;
    font-size: 19px;
    height: 35px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
    width: 35px;
    z-index: 1;
}

.homeslider_cms .main_heading::after, .homecms-tabs .main_heading::after {
    border-bottom: 1px solid #d1d1d1;
    bottom: -26px;
    content: "";
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 140px;
}

.inner-block-top {
    margin: 0 auto 80px;
    text-align: center;
    width: 100%;
}

.homepage-slider-inner {
    position: relative;
    margin-top: 100px;
}

.homepage-slider-inner img {
    max-width: 100%;
}

.homeslider_cms .features {
    cursor: pointer;
    display: inline-block;
    width: 47%;
}

.homeslider_cms .features.div-left {
    float: left;
    width: 26%;
}

.homeslider_cms .features.div-right {
    float: right;
    width: 26%;
}

.homeslider_cms .features .image {
    height: 64px;
    margin: 0 auto 15px;
    width: 70px;
    display: block;
}

.homeslider_cms .features.div-left > div, .homeslider_cms .features.div-right > div {
    margin-bottom: 125px;
}

.homeslider_cms .features .text {
    color: #626262;
    font-weight: 300;
    margin: 15px auto 0;
    text-align: center;
    width: 300px;
    line-height: 24px;
}

.homeslider_cms .heading span {
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
}

.homeslider_cms .features > div:hover .heading span {
    color: #989797;
}

.homeslider_cms .features.div-left .first .image.cms_img1 {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -95px 10px;
}

.homeslider_cms .features.div-left .first:hover .image.cms_img1 {
    background-position: -95px -58px;
}

.homeslider_cms .features.div-left .second .image.cms_img2 {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -95px -130px;
}

.homeslider_cms .features.div-left .second:hover .image.cms_img2 {
    background-position: -95px -198px;
}

.homeslider_cms .features.div-left .third .image.cms_img3 {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -95px -263px;
}

.homeslider_cms .features.div-left .third:hover .image.cms_img3 {
    background-position: -95px -331px;
}

.homeslider_cms .features.div-right .first .image.cms_img1 {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -95px -402px;
}

.homeslider_cms .features.div-right .first:hover .image.cms_img1 {
    background-position: -95px -470px;
}

.homeslider_cms .features.div-right .second .image.cms_img2 {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -95px -535px;
}

.homeslider_cms .features.div-right .second:hover .image.cms_img2 {
    background-position: -95px -604px;
}

.homeslider_cms .features.div-right .third .image.cms_img3 {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -95px -675px;
}

.homeslider_cms .features.div-right .third:hover .image.cms_img3 {
    background-position: -95px -743px;
}

.homeslider_cms .slider-controls {
    margin-top: 180px;
}

.homeslider_cms .customNavigation {
    display: block;
    position: absolute;
    top: 45%;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    display: none;
}

.homeslider_cms:hover .customNavigation {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
}

.homeslider_cms .customNavigation a {
    top: auto;
}

.homeslider_cms .customNavigation a.prev {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png) no-repeat scroll -5px -355px;
    border: none;
    height: 65px;
    left: 0;
    width: 35px;
}

.homeslider_cms .customNavigation a.prev:hover {
    background-position: -5px -429px
}

.homeslider_cms .customNavigation a.next {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png) no-repeat scroll -55px -355px;
    border: none;
    height: 65px;
    right: 0;
    width: 35px;
}

.homeslider_cms .customNavigation a.next:hover {
    background-position: -55px -429px
}

/*End  Home Slider CMS*/

/* Home Tab CMS */

.homecms-tabs .title {
    margin-bottom: 116px;
    position: relative;
    text-align: center;
    margin-top: 95px;
}

#homecms_tab > ul {
    margin-bottom: 55px;
    padding: 0;
    text-align: center;
}

#homecms_tab li {
    display: inline-block;
    margin: 0 0px 0 15px;
}

#homecms_tab li a {
    border-radius: 50px;
    padding: 8px 33px;
    background-color: #F2F2F2;
    border: 2px solid #F2F2F2;
    color: #000000;
    line-height: 36px;
    text-transform: uppercase;
    font-weight: 600;
}

#homecms_tab li a.selected, #homecms_tab li a:hover {
    background-color: #00A1EA;
    border-color: #00A1EA;
    color: #ffffff;
}

.homecms .to-left {
    float: left;
    width: 48%;
}

.homecms .to-right {
    float: right;
    width: 52%;
    margin-top: 0px;
    text-align: right;
}

.homecms .to-left > div {
    float: left;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

.homecms .first-image-block, .homecms .second-image-block, .homecms .third-image-block {
    float: left;
    height: 117px;
    margin-right: 20px;
    width: 70px;
    display: block;
}

.homecms .to-left > div .tab_border {
    display: none
}

.homecms .to-left > div:hover .tab_border {
    border-bottom-style: solid;
    border-bottom-width: 2px;
    position: absolute;
    top: 97px;
    width: 70px;
    display: block;
}

.homecms .to-left > div:hover .tab_border {
    border-bottom-color: #00A1EA;
    top: 100px;
    color: #00A1EA;
}

.homecms .first-static-block:hover .first-image-block, .homecms .second-static-block:hover .second-image-block, .homecms .third-static-block:hover .third-image-block {
    background-color: #00A1EA;
}

.first-block-content, .second-block-content, .third-block-content {
    margin-top: 16px;
    overflow: hidden;
}

.homecms .main-title {
    font-weight: bold;
    letter-spacing: 0.5px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.homecms .sub-title {
    color: #626262;
    font-weight: 300;
    letter-spacing: 0.5px;
    overflow: hidden;
    line-height: 24px;
    font-size: 14px;
    clear: none;
    padding: 0;
    margin: 0;
}

.homecms .first-image-block div.image, .homecms .second-image-block div.image, .homecms .third-image-block div.image {
    display: block;
    height: 50px;
    margin: 15px auto 0;
    width: 44px;
}

.homecms #tab-1 .first-image-block div.image {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -21px 15px;
}

.homecms #tab-1 .first-static-block:hover .first-image-block div.image {
    background-position: -21px -71px;
}

.homecms #tab-1 .second-image-block div.image {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -21px -158px;
}

.homecms #tab-1 .second-static-block:hover .second-image-block div.image {
    background-position: -21px -242px;
}

.homecms #tab-1 .third-image-block div.image {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -21px -324px;
}

.homecms #tab-1 .third-static-block:hover .third-image-block div.image {
    background-position: -21px -410px;
}

.homecms #tab-2 .first-image-block div.image {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -21px -493px;
}

.homecms #tab-2 .first-static-block:hover .first-image-block div.image {
    background-position: -21px -577px;
}

.homecms #tab-2 .second-image-block div.image {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -21px -660px;
}

.homecms #tab-2 .second-static-block:hover .second-image-block div.image {
    background-position: -21px -745px;
}

.homecms #tab-2 .third-image-block div.image {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -21px -831px;
}

.homecms #tab-2 .third-static-block:hover .third-image-block div.image {
    background-position: -21px -913px;
}

.homecms #tab-3 .first-image-block div.image {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -21px -997px;
}

.homecms #tab-3 .first-static-block:hover .first-image-block div.image {
    background-position: -21px -1080px;
}

.homecms #tab-3 .second-image-block div.image {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -21px -1165px;
}

.homecms #tab-3 .second-static-block:hover .second-image-block div.image {
    background-position: -21px -1250px;
}

.homecms #tab-3 .third-image-block div.image {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/icon.png) no-repeat scroll -21px -1329px;
}

.homecms #tab-3 .third-static-block:hover .third-image-block div.image {
    background-position: -21px -1410px;
}

.main-image-block img {
    max-width: 100%;
}

/* End Home Tab CMS */

/* Video CMS */

.video-wrapper {
    position: relative;
    margin: 140px 0 85px;
    clear: both;
    height: 530px;
    float: left;
    width: 100%;
    overflow: hidden;
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/video-bg1.jpg) no-repeat center center;
    background-color: #cdcdcd;
}

.wrapper_inner {
    padding: 0px 0 0px;
    position: relative;
    z-index: 1;
    float: left;
    width: 100%;
    overflow: visible !important;
}

.wrapper_inner:before {
    content: "";
    position: absolute;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}

.video-box {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png) no-repeat scroll -8px -252px;
    font-size: 0;
    height: 80px;
    text-align: center;
    width: 80px;
    position: relative;
    z-index: 99;
    display: inline-block;
    margin-bottom: 30px;
}

.video-wrapper .subheading {
    color: #ecebe9;
    font-size: 28px;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    text-align: center;
}

.video-wrapper .main_heading {
    color: #fff;
    font-size: 50px;
    letter-spacing: 2px;
    margin: 30px 0 20px;
    padding: 0;
    position: relative;
    line-height: 50px;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Anton', sans-serif;
}

#my-video {
    left: 0;
    right: 0;
    width: 100%;
    height: 530px;
}

.video-text {
    position: absolute;
    z-index: 999;
    left: 0;
    right: 0;
    padding-top: 155px;
    text-align: center;
}

.video-wrapper video::-webkit-media-controls {
    display: none !important;
}

/* Video CMS */

/* Blog CMS */

.blog_title:before {
    background: #ffffff;
    bottom: -53px;
    color: #00A1EA;
    content: "\f00d";
    font-family: fontawesome;
    font-size: 19px;
    height: 35px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    text-align: center;
    width: 35px;
    z-index: 1;
}

.blog_title:after {
    border-bottom: 1px solid #d1d1d1;
    bottom: -34px;
    content: "";
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 140px;
}

.blog_title {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    font-weight: normal;
    letter-spacing: 3px;
    line-height: 32px;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 110px;
}

#blog-carousel {
    margin: 0 0px 110px;
    overflow: hidden;
    padding: 10px 0;
}

.blog-left .blog-image img {
    /*    width: 370px;
    height: 200px;*/
    padding: 0;
    max-width: 100%;
    display: inline-block;
}

.post-image-hover {
    height: 100%;
    position: absolute;
    top: 0;
    transition: all 0.2s ease-out 0s;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    width: 100%;
}

.blog-image .post_hover {
    left: 0;
    margin: 0 auto;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 35%;
}

.blog-left .blog-image .zoom {
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    color: #fff;
    display: inline-block;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    padding: 12px 19px;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    z-index: 10;
    position: relative;
}

.blog-left .blog-image .zoom:before {
    content: "\f00e";
    font-family: "FontAwesome";
    font-size: 14px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.blog-left .blog-image .readmore_link {
    border: 2px solid #e5e5e5;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -khtml-border-radius: 50%;
    color: #fff;
    display: inline-block;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
    padding: 12px 19px;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    z-index: 10;
    margin-left: -52px;
    transition-delay: 0.1s;
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    position: relative;
}

.blog-left .blog-image .readmore_link:before {
    content: "\f0c1";
    font-family: "FontAwesome";
    font-size: 14px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.blog-left .blog-image .zoom:before, .blog-left .blog-image .readmore_link:before {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
}

.blog-left .blog-image .zoom:hover, .blog-left .blog-image .readmore_link:hover {
    color: #00A1EA;
    border-color: #00A1EA;
}

.blog-left {
    float: left;
    margin: 0 0 20px;
    position: relative;
}

.blog-right {
    float: left;
}

#blog-carousel .product-block {
    margin: 0px 15px;
}

#blog-carousel .product-block {
    background: none;
    border: none;
}

#blog-carousel .slider-controls {
    display: none !important;
}

.date-time {
    color: #626262;
    float: left;
    font-size: 13px;
    font-weight: 300;
    text-align: center;
    width: 19%;
}

.date-time .day {
    float: left;
    font-size: 45px;
    font-weight: bold;
    line-height: 52px;
    width: 100%;
    color: #00A1EA;
}

.blog-right .post-inner {
    border-left: 1px solid #e5e5e5;
    float: left;
    margin-left: 5px;
    overflow: hidden;
    padding-left: 15px;
    width: 70%;
    padding-bottom: 0px;
    margin-top: 10px;
    /* padding-top: 5px; */
}

.blog-right .post-inner h4 {
    margin: 0 0 10px;
    /*display:none;*/
}

.blog-right .post-inner h4 a {
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #000;
}

.blog-right .post-inner h4 a:hover {
    color: #989797;
}

.blog-desc {
    color: #626262;
    letter-spacing: 0.5px;
    line-height: 22px;
    text-transform: initial;
}

#blog-carousel .product-block:hover .post-image-hover {
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
}

.blog-left .icon.zoom .fa, .blog-left .icon.readmore_link .fa {
    font-size: 14px;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.product-block:hover .blog-left .zoom, .product-block:hover .blog-left .readmore_link {
    margin: 0 5px;
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
}

.product-block:hover .blog-left .post_hover {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -kkhtml-opacity: 1;
    transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.blog_inner {
    position: relative;
    margin: 0 -15px;
}

.blog_inner .customNavigation {
    position: absolute;
    top: 55%;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
}

.blog_inner:hover .customNavigation {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
}

.blog_inner .customNavigation a.prev {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png) no-repeat scroll -5px -355px;
    height: 65px;
    left: -55px;
    width: 35px;
}

.blog_inner .customNavigation a.prev:hover {
    background-position: -5px -429px;
}

.blog_inner .customNavigation a.next {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png) no-repeat scroll -55px -355px;
    height: 65px;
    right: -55px;
    width: 35px;
}

.blog_inner .customNavigation a.next:hover {
    background-position: -55px -429px;
}

/* End Blog CMS */

/* Newsletter CMS */

.newshead {
    font-size: 24px;
    font-weight: bold;
    padding-left: 10px;
    text-transform: uppercase;
    color: #00A1EA;
}

.sub_text {
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 15px;
    color: #999;
}

.block-subscribe ul {
    margin-bottom: 35px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    display: inline-block;
    float: none;
    margin-top: 30px;
    padding: 0;
    position: relative;
    width: 652px;
}

.newstext {
    color: #fff;
}

/* End Newsletter CMS */

.new-products, .special-products, .bestseller-products {
    position: relative;
    width: 1050px;
}

.related-products {
    position: relative;
}

.new-products-outer, .bestseller-products-outer, .special-products-outer {
    background: #f7f7f7;
    padding: 85px 0 105px;
}

.new-products-inner, .special-products-inner, .bestseller-products-inner {
    margin: 0 -21px;
}

.new-products-outer .product-carousel, .new-products-outer .products-grid, .special-products-outer .product-carousel, .special-products-outer .products-grid, .bestseller-products-outer .product-carousel, .bestseller-products-outer .products-grid,
.related-products .products-grid, .related-products .product-carousel {
    margin-top: 95px;
}

.new-products .category-title h2:before, .bestseller-products .category-title h2:before, .special-products .category-title h2:before, .crosssell > h2:before {
    background: #f7f7f7;
}

.new-products .customNavigation, .special-products .customNavigation, .bestseller-products .customNavigation, .crosssell_product .customNavigation, .related-products .customNavigation {
    position: absolute;
    top: 60%;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
}

.related-products .customNavigation {
    top: 50%;
}

.new-products:hover .customNavigation, .special-products:hover .customNavigation, .bestseller-products:hover .customNavigation, .crosssell_product:hover .customNavigation, .related-products:hover .customNavigation {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
}

.new-products .customNavigation a.prev, .special-products .customNavigation a.prev, .bestseller-products .customNavigation a.prev, .featured-products .customNavigation a.prev, #upsell-product-table .customNavigation a.prev, .crosssell_product .customNavigation a.prev, .related-products .customNavigation a.prev {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png) no-repeat scroll -5px -355px;
    height: 65px;
    width: 35px;
}

.new-products .customNavigation a.prev:hover, .special-products .customNavigation a.prev:hover, .bestseller-products .customNavigation a.prev:hover, .featured-products .customNavigation a.prev:hover, #upsell-product-table .customNavigation a.prev:hover, .crosssell_product .customNavigation a.prev:hover {
    background-position: -5px -429px;
}

.new-products .customNavigation a.next, .special-products .customNavigation a.next, .bestseller-products .customNavigation a.next, .featured-products .customNavigation a.next, #upsell-product-table .customNavigation a.next, .crosssell_product .customNavigation a.next, .related-products .customNavigation a.next {
    background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png) no-repeat scroll -55px -355px;
    height: 65px;
    width: 35px;
}

.new-products .customNavigation a.next:hover, .special-products .customNavigation a.next:hover, .bestseller-products .customNavigation a.next:hover, .featured-products .customNavigation a.next:hover, #upsell-product-table .customNavigation a.next:hover, .crosssell_product .customNavigation a.next:hover, .related-products .customNavigation a.next:hover {
    background-position: -55px -429px;
}

.new-products .customNavigation a.prev, .special-products .customNavigation a.prev, .bestseller-products .customNavigation a.prev, .crosssell_product .customNavigation a.prev, .related-products .customNavigation a.prev {
    left: -120px;
}

.new-products .customNavigation a.next, .special-products .customNavigation a.next, .bestseller-products .customNavigation a.next, .crosssell_product .customNavigation a.next, .related-products .customNavigation a.next {
    right: -120px;
}

.new-products-outer .product-carousel .product-block, .new-products-outer .products-grid .product-block, .special-products .product-carousel .product-block, .special-products .products-grid .product-block, .bestseller-products .product-carousel .product-block, .bestseller-products .products-grid .product-block, .related-products .product-carousel .product-block, .related-products .products-grid .product-block {
    margin: 5px 21px;
}

.featured-products a.product-image {
    float: left;
    margin-right: 95px;
    width: 43%;
    position: relative;
}

.featured-products .product-details {
    float: left;
    width: 47%;
    text-align: left;
}

#featured-carousel .product-block {
    margin: 150px 0 0;
}

.featured-products .product-name a {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
}

.featured-products .price {
    color: #000;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 29px;
    margin-top: 5px;
}

.featured-products .product-details .desc {
    color: #626262;
    font-size: 13px;
    font-weight: 300;
    line-height: 24px;
}

.featured-products .product-carousel .add-to-links, .featured-products .products-grid .add-to-links {
    position: static;
    margin-top: 20px;
}

.featured-products .product-details a.link-wishlist {
    font-size: 14px;
    margin-right: 10px;
}

.featured-products .product-details a.link-wishlist:before {
    padding: 0;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    margin-right: 8px;
    display: inline-block;
}

.featured-products .product-details a.link-wishlist:hover:before {
    background: none;
    color: #989797;
}

.featured-products .product-details a.link-compare {
    font-size: 14px;
}

.featured-products .product-details a.link-compare:before {
    padding: 0;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -khtml-border-radius: 0;
    margin-right: 8px;
    display: inline-block;
}

.featured-products .product-details a.link-compare:hover:before {
    background: none;
    color: #989797;
}

.featured-products h2.product-name {
    margin-bottom: 20px;
}

.featured-products .grid_rating {
    margin-bottom: 10px;
}

.featured-products .price-box {
    margin-bottom: 30px;
}

.featured-products .actions {
    margin-top: 20px;
}

.actions .out-of-stock {
    padding: 8px 20px;
    border: 2px solid #ff0000;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -khtml-border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #ff0000;
    display: inline-block;
    background-color: #fff;
}

.featured-products {
    position: relative;
    margin-bottom: 150px;
    clear: both;
}

.featured-products .customNavigation, .box-up-sell .customNavigation {
    position: absolute;
    opacity: 0;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    -khtml-opacity: 0;
}

.featured-products .customNavigation {
    top: 60%;
}

.box-up-sell .customNavigation {
    top: 40%;
}

.featured-products:hover .customNavigation, .box-up-sell:hover .customNavigation {
    opacity: 1;
    -webkit-opacity: 1;
    -moz-opacity: 1;
    -khtml-opacity: 1;
}

.featured-products .customNavigation a.prev {
    left: -120px;
}

.featured-products .customNavigation a.next {
    right: -120px;
}

.featured-products .product-block-inner .new-label {
    right: 30px
}

.featured-products .product-block-inner .sale-label {
    left: 30px
}

.featured-products .product-image-inner {
    width: 43%;
    float: left;
    margin-right: 80px;
}

#gmap_canvas img {
    max-width: none !important;
    background: none !important
}

.availability {
    display: none;
}

.product-options dl {
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 25px;
    padding-left: 2%;
    border: 1px solid #DEE4EF;
    background: #EFEFEF;
}

.product-shop .sku {
    display: none;
}

.product-shop .required {
    display: none;
}

.product-img-box .price-box {
    text-align: center;
    padding-top: 34px;
}

.product-img-box .price-box .price {
    font-size: 4em;
}

.tm-checkbox {
    margin-right: 1%;
}

.breadcrumbs {
    display: none;
}

#testimonial .slider-controls {
    display: none !important;
}

.products-list .price-box {
    float: left;
}

.products-list .list-price-add p {
    float: right;
}

@media only screen and (max-width: 760px) {
    .list-price-add {
        width: 50%;
        margin: auto;
    }
}

@media only screen and (max-width: 400px) {
    .list-price-add {
        width: 100%;
        margin: auto;
    }
    .main {
        margin-left: 5px;
        margin-right: 5px;
    }
}
.products-list .price-box {
    margin-top: 9px;
}

.products-list .price-box .price {
    font-size: 1.8em;
    padding-left: 4px;
}

.cart {
    margin-right: 10px;
}

.btn-continue span span, .btn-continue span, .btn-empty span, .btn-empty span span, .btn-update span, .btn-update span span {
    background: #00A1EA !important;
}

.btn-checkout span, .btn-checkout span span {
    background: rgb(141, 210, 153) !important;
    border: 2px solid rgb(141, 210, 153) !important;
    color: black;
}

@media only screen and (min-width: 1640px) {
    .col1-layout .product-view .product-shop {
        width: 64%;
        margin-left: 6%;
    }
}

@media only screen and (max-width: 1260px) {
    .col1-layout .product-view .product-shop {
        width: 55%;
    }
}

@media only screen and (max-width: 1080px) {
    .col1-layout .product-view .product-shop {
        width: 48%;
    }
}

@media only screen and (max-width: 1640px) {
    .product-view .tabs li {
        margin-right: 15px;
        display: inline-block;
        margin-right: 4px;
    }

    .product-options {
        margin-top: 17px;
    }
}

@media only screen and (max-width: 979px) {
    .product-view .product-img-box .product-image-zoom {
        margin: 0 auto;
        width: inherit;
        float: none;
        min-height: 304px;
    }

    .product-view .product-shop .product-name h1 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
        padding-bottom: 10px;
        margin-top: 10px;
        padding-top: 10px;
        text-transform: uppercase;
        text-align: center;
    }
}

@media only screen and (max-width: 979px) {
    .product-view .product-img-box .product-image-zoom {
        margin: auto;
    }

    .product-view .product-shop .product-name h1 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
        padding-bottom: 10px;
        margin-top: 10px;
        padding-top: 10px;
        text-transform: uppercase;
        text-align: center;
    }
}

@media only screen and (max-width: 770px) {

    .products-list .product-image {
        float: none !important;
    }

    .products-list li .list-left {
        float: none !important;
        text-align: center;
    }

    .products-list li .list-center {
        text-align: center;
    }
}

.footer {
    padding: 30px;
}

.review-product-view h1 {
    font-size: 36px;
}

#customer-reviews li, .review-product-view .post-content-inner {
    border-radius: 25px;
    padding: 2%;
    margin: auto;
    margin-bottom: 20px;
    border: 1px solid #DEE4EF;
    background: #EFEFEF;
}

@media only screen and (max-width: 1290px) {

}

.review-product-view .post-content-inner {
    width: 100%;
}

.review-product-view .post-content-inner .post-author {
    width: 100%;
    text-align: center;
    margin-bottom: 1%;
}

.catalog-product-view .product-domain {
    margin-bottom: 5px;
    border-radius: 25px;
    padding-left: 2%;
    margin-top: 6%;
    padding-top: 20px;
    padding-bottom: 20px
    border: 1px solid #DEE4EF;
    background: #EFEFEF;
}

.catalog-product-view .product-image-gallery {
    left: 1%;
    position: relative;
}

.catalog-product-view .product-image, .product-view .product-img-box .product-image-zoom {
    display: block;
    clear: both;
    padding: 5px;
    margin-bottom: 5px;
    padding-left: 0%;
    margin-left: 0%;
    border: none;
}

.catalog-product-view .product-domain .fieldset {
    width: 40%;
}

.catalog-product-view .product-domain .examples {
    width: 59%;
}

#product_tabs_description_tabbed_contents {
    margin-bottom: 5px;
    border-radius: 25px;
    padding: 2%;
    border: 1px solid #DEE4EF;
    background: #EFEFEF;
}

@media only screen and (max-width: 1300px) {
    .catalog-product-view .product-domain {
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 60px;
    }

    .catalog-product-view .product-domain .examples {
        display: none;
    }

    .catalog-product-view .product-domain .fieldset {
        width: 100%;
    }
}

@media only screen and (max-width: 980px) {
    #product_tabs_description_tabbed_contents {
        border: none;
        margin-bottom: 0px;
        border-radius: 0px;
        background: none;
        padding: 0;
    }
}

.add-to-cart button.button {
    margin: auto;
    width: 100%;
    padding-left: 20%;
    padding-right: 20%;
    margin-top: 3%;
}

.masonary-container {
    width: 100%;
}

.masonary-container .item {
    border: 1px solid black;
}

.feature-section {
    margin-bottom: 5px;
    border-radius: 25px;
    padding: 2%;
    border: 1px solid #DEE4EF;
    background: #EFEFEF;
}

@media only screen and (max-width: 767px) {
    .header, .main, .footer, .container-width, .cms-index-index .messages {
        margin: 0 !important;
    }

    .catalog-category-view .main, .catalog-product-view .main {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .main-container {
        margin-left: 10px;
        margin-right: 10px;
    }
}

pre {
overflow: auto;
background: #87cefa;
padding-top: 5px;
padding-bottom: 5px;
}


/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magento.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magento.com for more information.
 *
 * @category    design
 * @package     base_default
 * @copyright   Copyright (c) 2006-2016 X.commerce, Inc. and affiliates (http://www.magento.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

/* Widgets =============================================================================== */
.widget { display:inline; }
.widget .widget-title { clear:both; padding:15px 0 0; margin:0 0 7px; }
.widget .widget-title h2 { font-size:15px; font-weight:bold; color:#e25203; }

.widget .mini-products-images-list .product-image { display:block; width:76px; height:76px; border:1px solid #a9a9a9; margin:0 auto; }
.widget .mini-products-images-list li.item { float:left; width:77px; height:77px; }

/* Widget: Catalog New Proructs List */
.widget-new-products { display:block; }
.col-main .widget-new-products { margin:7px 0; }
.widget-new-products .products-grid .product-image,
.widget-new-products .products-list .product-image { width:85px; height:85px; }
.widget-new-products .products-list .product-shop { margin-left:100px; }
.sidebar .widget-new-products .block { font-size:11px; line-height:1.25; }
.sidebar .widget-new-products .block-title strong { background:url(https://www.proxiblue.com.au/skin/frontend/base/default/images/widgets/i_widget-new.gif) 0 1px no-repeat; padding-left:21px; color:#dc5033; }

/* Widget: Recently Viewed Proructs */
.widget-viewed { display:block; }
.col-main .widget-viewed { margin:7px 0; }
.widget-viewed .products-grid .product-image,
.widget-viewed .products-list .product-image { width:85px; height:85px; }
.widget-viewed .products-list .product-shop { margin-left:100px; }
.sidebar .widget-viewed .block { font-size:11px; line-height:1.25; }
.sidebar .widget-viewed .block-title strong { background:url(https://www.proxiblue.com.au/skin/frontend/base/default/images/widgets/i_block-list.gif) 0 0 no-repeat; padding-left:21px; }

/* Widget: Recently Compared Proructs */
.widget-compared { display:block;}
.col-main .widget-compared { margin:7px 0; }
.widget-compared .products-grid .product-image,
.widget-compared .products-list .product-image { width:85px; height:85px; }
.widget-compared .products-list .product-shop { margin-left:100px; }
.sidebar .widget-compared .block { font-size:11px; line-height:1.25; }
.sidebar .widget-compared .block-title strong { background:url(https://www.proxiblue.com.au/skin/frontend/base/default/images/widgets/i_block-list.gif) 0 0 no-repeat; padding-left:21px; }

/* Widget: CMS Static Block */
.widget-static-block {}
.sidebar .widget-static-block { display:block; margin:0 0 15px; }

/* Widgets: Links Common Styles */
.top-container .widget a { padding:0 0 0 7px; }

.bottom-container .widget a { padding:0 3px; }

/* Widget: Catalog Product Link */
.widget-product-link-inline { display:inline; }

.col-main .widget-product-link { display:block; text-align:right; margin:7px 0; }
.col-main .widget-product-link a { background:url(https://www.proxiblue.com.au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding-right:15px; }

.sidebar .widget-product-link { display:block; margin:0 0 15px; padding:0 10px; }
.sidebar .widget-product-link a { background:url(https://www.proxiblue.com.au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding:0 15px 0 0; }

/* Widget: Catalog Category Link */
.widget-category-link-inline { display:inline; }

.col-main .widget-category-link { display:block; text-align:right; margin:7px 0; }
.col-main .widget-category-link a { background:url(https://www.proxiblue.com.au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding-right:15px; }

.sidebar .widget-category-link { display:block; margin:0 0 15px; padding:0 10px; }
.sidebar .widget-category-link a { background:url(https://www.proxiblue.com.au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding:0 15px 0 0; }

/* Widget: CMS Page Link */
.widget-cms-link-inline { display:inline; }

.col-main .widget-cms-link { display:block; text-align:right; margin:7px 0; }
.col-main .widget-cms-link a { background:url(https://www.proxiblue.com.au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding-right:15px; }

.sidebar .widget-cms-link { display:block; margin:0 0 15px; padding:0 10px; }
.sidebar .widget-cms-link a { background:url(https://www.proxiblue.com.au/skin/frontend/base/default/images/widgets/i_widget-link.gif) 100% 4px no-repeat; padding:0 15px 0 0; }
/* ======================================================================================= */

/** /!!! core css Should not edit !!!/**/

.lSSlideOuter {
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lightSlider:before, .lightSlider:after {
    content: " ";
    display: table;
}
.lightSlider {
    overflow: hidden;
}
.lSSlideWrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
}
.lSSlideWrapper > .lightSlider:after {
    clear: both;
}
.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform,height;
    -moz-transition-property: -moz-transform,height;
    transition-property: transform,height;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade {
    position: relative;
}
.lSSlideWrapper .lSFade > * {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9;
    margin-right: 0;
    width: 100%;
}
.lSSlideWrapper.usingCss .lSFade > * {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade > *.active {
    z-index: 10;
}
.lSSlideWrapper.usingCss .lSFade > *.active {
    opacity: 1;
}
/** /!!! End of core css Should not edit !!!/**/

/* Pager */
.lSSlideOuter .lSPager.lSpg {
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
}
.lSSlideOuter .lSPager.lSpg > li {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px;
}
.lSSlideOuter .lSPager.lSpg > li a {
    background-color: #222222;
    border-radius: 30px;
    display: inline-block;
    height: 8px;
    overflow: hidden;
    text-indent: -999em;
    width: 8px;
    position: relative;
    z-index: 99;
    -webkit-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #428bca;
}
.lSSlideOuter .media {
    opacity: 0.8;
}
.lSSlideOuter .media.active {
    opacity: 1;
}
/* End of pager */

/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
    list-style: none outside none;
    padding-left: 0;
    margin: 0;
    overflow: hidden;
    transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lSSlideOuter .lSPager.lSGallery li {
    overflow: hidden;
    -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
    transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    height: auto;
    max-width: 100%;
}
.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
    content: " ";
    display: table;
}
.lSSlideOuter .lSPager.lSGallery:after {
    clear: both;
}
/* End of Gallery*/

/* slider actions */
.lSAction > a {
    width: 32px;
    display: block;
    top: 50%;
    height: 32px;
    background-image: url('https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/controls.png');
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    margin-top: -16px;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
}
.lSAction > a:hover {
    opacity: 1;
}
.lSAction > .lSPrev {
    background-position: 0 0;
    left: 10px;
}
.lSAction > .lSNext {
    background-position: -32px 0;
    right: 10px;
}
.lSAction > a.disabled {
    pointer-events: none;
}
.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
}


/* vertical */
.lSSlideOuter.vertical {
    position: relative;
}
.lSSlideOuter.vertical.noPager {
    padding-right: 0px !important;
}
.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    right: 0;
    top: 0;
}
.lSSlideOuter.vertical .lightSlider > * {
    width: 100% !important;
    max-width: none !important;
}

/* vertical controlls */
.lSSlideOuter.vertical .lSAction > a {
    left: 50%;
    margin-left: -14px;
    margin-top: 0;
}
.lSSlideOuter.vertical .lSAction > .lSNext {
    background-position: 31px -31px;
    bottom: 10px;
    top: auto;
}
.lSSlideOuter.vertical .lSAction > .lSPrev {
    background-position: 0 -31px;
    bottom: auto;
    top: 10px;
}
/* vertical */


/* Rtl */
.lSSlideOuter.lSrtl {
    direction: rtl;
}
.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
    padding-left: 0;
    list-style: none outside none;
}
.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
    padding-right: 0;
}
.lSSlideOuter .lightSlider > *,  .lSSlideOuter .lSGallery li {
    float: left;
}
.lSSlideOuter.lSrtl .lightSlider > *,  .lSSlideOuter.lSrtl .lSGallery li {
    float: right !important;
}
/* Rtl */

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
@keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd 0.3s;
    animation: topEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd 0.3s;
    animation: bottomEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
/*/  GRab cursor */
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}
.postWrapper {
    padding-bottom: 25px;
    clear: both;
}

.postTitle {
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #DDDDDD;
    margin-bottom: 15px;
}

.postTitle h1 {
    font-size: 20px;
    font-weight: normal;
    margin: 0px;
    padding: 0px;
}

.postTitle h2 {
    font-size: 20px;
    font-weight: normal;
    margin: 0px;
    padding: 0px;
}

.postTitle h3 {
    font-size: 10px;
    margin: 0px;
    padding-top: 2px;
    padding-right: 0px;
    padding-bottom: 2px;
    padding-left: 0px;
}

.postContent {
    padding-bottom: 10px;
}

.postContent ul{
    list-style: disc outside;
    margin-bottom: 1.5em;
}

.postContent ul li{
    margin-left: 2em;
}

.postContent ol{
    list-style: decimal outside;
    margin-bottom: 1.5em;
}

.postContent ol li{
    margin-left: 2em;
}

.postDetails {

}

.postBookmarks {
    padding-bottom: 10px;
}

.postBookmarks h4 {

    font-size: 12px;
    font-weight: bold;
}

.postBookmarks a.bm {
    display: inline-block;
}

.postBookmarks img {
    display: inline;
}

.commentWrapper {
    padding-bottom: 15px;
}

.commentTitle {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 15px;
}

.commentTitle div {
    font-size: 20px;
    font-weight: normal;
    margin: 0;
    padding: 0;
    color: #0a263c;
    line-height: 1.35;
}

.commentContent {
    padding-bottom: 0px;
}

.commentDetails {
    margin-bottom: 5px;
    padding: 0px;
}

.commentDetails h4.username {
    display: inline;
}

.postError {
    font-size: 16px;
}

.tags {
    font-weight: bold;
    padding-bottom: 10px;
}

.tags UL {
    display: inline;
}

.tags UL LI {
    font-weight: normal;
    display: inline;
    padding-right: 6px;
}

.tags h4 {
    font-size: 12px;
    font-weight: bold;
}

.menu-tags, .menu-categories, .menu-recent {
    margin: 5px 9px;
}

.menu-tags h5, .menu-categories h5, .menu-recent h5 {
    font-size: 11px;
}

.block-blog .menu-tags UL LI {
    display: inline;
    padding: 2px;
    margin-left: 10px;
}

.block-blog .menu-categories UL LI {
    margin-left: 10px;
}

.block-blog .menu-recent UL LI {
    margin-left: 10px;
}

.block-blog .menu-recent UL LI a, .block-blog .menu-categories UL LI a, .block-blog .menu-tags UL LI a {
    font-size: 11px;
}

.tagcloud {
    /* text-align:center; */
}

.tag-count-1 {
    font-size: 1em !important;
}

.tag-count-2 {
    font-size: 1.2em !important;
}

.tag-count-3 {
    font-size: 1.4em !important;
}

.tag-count-4 {
    font-size: 1.6em !important;
}

.tag-count-5 {
    font-size: 1.8em !important;
}

.tag-count-6 {
    font-size: 2em !important;
}

.tag-count-7 {
    font-size: 2em !important;
}

.tag-count-8 {
    font-size: 2em !important;
}

.tag-count-9 {
    font-size: 2em !important;
}

.tag-count-10 {
    font-size: 2em !important;
}

.block-blog .head h4 {
    padding-left: 20px;
}

.block-blog .block-title strong {
    background-image: url(https://www.proxiblue.com.au/skin/frontend/base/default/aw_blog/images/icon_blog.png);
    background-repeat: no-repeat;
    padding-left: 21px;
    text-align: left;
}

.postWrapper .poster {
    display: inline;
}

.input-box.aw-blog-comment-area {
    width: 100%;
}

.widget-latest .title {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.35;
    margin: 0 0 5px;
}

.widget-latest li {
    font-size: 12px;
    padding: 5px 10px;
}

.block-blog .menu-categories {
    margin: 0;
    padding: 5px 9px;
}

A.awblog_current_comment {
    text-decoration: none !important;
    font-weight: bold !important;
}
.tm-hide { opacity: 0; filter:alpha(opacity=0); }
.tm-checkbox {
	background: url('https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png') -5px -94px no-repeat;
	display:inline-block;
	width:17px;
	height:17px;vertical-align: middle;
}

.tm-radio { background: url('https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png') -5px -55px no-repeat;	
	display: inline;
	padding:0px;
   	height:17px; 
    vertical-align: middle;
   }

.tm-checked { background-position:-78px -94px; }
.tm-selected { background-position: -78px -55px; }


.tm-checkbox-green {
	background: url('https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/sprite.png') 0 1px no-repeat;
	display:inline-block;
}
.tm-checked-green { background-position: 0 -18px; }
.tm-checkbox, .tm-radio {}
.ie7 .tm-checkbox{ display:inline; }
/* -------------
 * Selects
 * ------------- */
/* Custom Select*/
.sbHolder{
	border: solid 1px #ddd; 
	position: relative;
	width: auto; 
	padding:4px 25px 4px 7px;
	text-align:left;
	background-color: #fff;
	z-index:99;
}
.sbHolder:focus .sbSelector{
	
}
.sbSelector{
	outline: none;
	overflow: hidden;	 
	top: 0;	 
	display:block;
	color: #999;
}
.sbSelector:link, .sbSelector:visited, .sbSelector:hover{
 
	outline: none;
	text-decoration: none;
}
.sbToggle{
	background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/arrow-down.png") no-repeat scroll center center transparent;
	display: block; 
	outline: none;
	position: absolute;
	right: 4px;
    top: 7px;
	height:15px;
	width:15px;
}
 
.sbToggleOpen{
	background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/arrow-up.png") no-repeat scroll center center transparent;
} 
.sbOptions{
	background-color: #fff;
	border: solid 1px #ddd;
	list-style: none;
	right: -1px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 26px !important;
    width: 100%;
	z-index: 1;
	overflow-y: auto;
	border-top: 1px solid #00A1EA;
}
.sbOptions li{
	padding: 0 7px;
	margin:0;
}
.sbOptions a{	 
	display: block;
	outline: none;
	padding: 4px 0 4px 3px;
	text-decoration:none;
}
 

/* display none until init */
.product-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
#column-left .product-carousel, #column-right .product-carousel { display:block;}
#column-left .customNavigation, #column-right .customNavigation { display:none;}
.product-carousel .slider-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
	-webkit-perspective: 1000;
}
.product-carousel .slider-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.product-carousel .slider-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.product-carousel .slider-item{
	float: left;
}
.slider-controls .slider-page,
.slider-controls .slider-buttons div{
	cursor: pointer;
}
.slider-controls {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.slider-controls .slider-page {
    display: inline-block;
    margin: 0 4px;
}

.slider-controls .slider-page span {
    background-color: #fff;
    border: 2px solid #000;
    cursor: pointer;
    display: block;
    font-size: 0;
    height: 7px;
    overflow: hidden;
    text-indent: -9999px;
    transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
    width: 7px;
}


.slider-controls .slider-page.active span, .slider-controls .slider-page:hover span {
    background-color: #00A1EA;
}

/* mouse grab icon */
.grabbing { 
    cursor:url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/grabbing.png") 8 8, move;
}

/* fix */
.product-carousel  .slider-wrapper,
.product-carousel  .slider-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
}
.customNavigation    { text-align: center; position:absolute;width:100%}
.customNavigation a{
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	display: block;
    float: right;
    height: 22px;
    position: absolute;
    top: -34px;
    width: 22px;
}

.customNavigation a.prev {
  	background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -234px 2px transparent;
    right: 85px;
}
.customNavigation a.prev:hover 	{ background-position: -234px -27px; text-decoration:none;}
.customNavigation a.next {
	background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -204px 2px transparent;
    right:28px;
}
.customNavigation a.next:hover 	{ background-position: -204px -27px; text-decoration:none;}
 

/* Responsive menu Css Start */
.nav-responsive span { display:inline-block;}
.nav-responsive { cursor:pointer; display:none;  float: left; width: 100%;}
#nav-mobile  ul  li{ list-style:none; position:relative;}
.nav-responsive .expandable{
background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -60px -25px transparent;
height: 20px;
margin-right: 10px;
margin-top:12px;
width: 27px;
float: left;
margin-left: 10px;
} 
.responsive-menu { padding:0; position:relative;}

.responsive-menu #nav-mobile{ 
	position:absolute; 
	z-index:999;  
	display:none; 
	margin-top:0px; 
	padding:2%;
	width:96%; 
	list-style:none;
	top:60px;
	border-top: 1px solid #00A1EA;
}
.responsive-menu #nav-mobile ul{padding-left:10px;}
.nav-responsive div,
.responsive-menu .hitarea {
	background: none;
	height: 20px;
	width: 20px; 
	float: right;
	cursor: pointer;
	margin-right: 10px;
	margin-top: 7px;
}
.responsive-menu .expandable .collapsable-hitarea{ 
	background:url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -85px -169px transparent;		 
} 
.responsive-menu .expandable-hitarea { 
	background:url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -85px -130px transparent;		 
} 
.responsive-menu .collapsable-hitarea { 
	background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -85px -169px transparent;		
} 

/* Responsive menu Css End */


/*RESPONSIVE TABLE*/
.table-responsive { display:none; visibility:hidden;}	
.tm_responsive_container,
.tm_responsive_container_footer{ width:auto; overflow:hidden;}

.tm_responsive_group{
	float:left; 
    margin: 5px 0;
    padding: 3%;
    width: 94%; 
	border:1px solid #ddd;
	background:#fff  
}
.tm_responsive_row label{
  width: 100px;
  display:block;
  float:left;
  font-weight: bold;
}
.tm_responsive_row span{
  width: 250px;
  display:block;
  float:left;
}
.tm_responsive_row{
 overflow:hidden;
 border-bottom: 1px solid #ddd;
 padding:10px 0;
}
.tm_responsive_row span .separator{ display:none; }
/*RESPONSIVE TABLE*/

/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

 
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav { list-style: none;} 

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider .slides{ padding:0; }
.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden; list-style:none !important; max-width: 100%; width:100%; background-size: cover; background-repeat:no-repeat;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; display: none;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} 
html[xmlns] .slides {display: block;} 
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}


/* FlexSlider Default Theme
*********************************/
.flexslider {position: relative; clear:both; margin:0 0 0px 0; overflow:hidden; background-color: #000;}
.flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .flex-viewport {max-height: 300px;}
.flexslider .slides { margin:0; }

/* Direction Nav */
.flex-direction-nav {display:none; margin:0 !important; z-index:999; }
.flex-direction-nav  li{ list-style:none;}
.flexslider:hover .flex-direction-nav { display:block;  margin:0 !important;  }
.flex-direction-nav li a.flex-next
{ 
	background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/Slider-arrow.png) no-repeat scroll -43px 2px transparent;
    font-size: 0;
    height: 40px ;
    position: absolute;
    right: 25px;
    top: 50%;
    width: 40px;
	z-index:99;
}

.flex-direction-nav li a.flex-prev
{ 
	background: url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/Slider-arrow.png) no-repeat scroll 3px 2px transparent;
    height: 40px;
    left: 25px;
    position: absolute;
    top:50%;
    width: 40px;
	font-size:0;
	z-index:99;
}

.flex-direction-nav li a.flex-prev:hover { background-position:3px -43px;} 
.flex-direction-nav li a.flex-next:hover { background-position:-43px -43px;}

/* Control Nav */
.flex-control-nav {
	position: absolute;
    bottom: 15px;
    right: 0;
    margin: 0 auto;
    padding: 0;
    z-index: 999;
    left: 0;
    text-align: center;
}
.flex-control-nav li {    
	margin: 0 4px;
    float: none;
    font-size: 0;
    display: inline-block;
}
.flex-control-paging li a {
    cursor: pointer;
    display: block;
    height: 8px;
    text-indent: -9999px;
    width: 8px;
	font-size:0;
	border: 2px solid #000;
	background-color: #fff;
	transform:rotate(45deg);
	-webkit-transform:rotate(45deg);
	-moz-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	-o-transform:rotate(45deg);
}
.flex-control-paging li a:hover ,.flex-control-paging li a.flex-active{background-color: #00A1EA;}
.flex-control-paging li a.flex-active{  cursor: default; }

.flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.flex-control-thumbs img:hover {opacity: 1;}
.flex-control-thumbs .flex-active {opacity: 1; cursor: default;}


/* display none until init */
.product-carousel{
	display: none;
	opacity:1!important;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
#column-left .product-carousel, #column-right .product-carousel { display:block;}
#column-left .customNavigation, #column-right .customNavigation { display:none;}

#column-left .banners-slider-carousel .customNavigation,
#column-right .banners-slider-carousel .customNavigation{ display:block;}

.product-carousel .slider-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
	-webkit-perspective: 1000;
}
.product-carousel .slider-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
	border: 1px solid #636975;
	border-radius: 25px;
}
.product-carousel .slider-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.product-carousel .slider-item{
	float: left;
}
.slider-controls .slider-page,
.slider-controls .slider-buttons div{
	cursor: pointer;
}
.slider-controls {
	-webkit-tap-highlight-color: transparent;
}


#featured-carousel .slider-controls,#special-carousel .slider-controls,#bestseller-carousel .slider-controls,#newproduct-carousel .slider-controls,#related-carousel .slider-controls,
#upsell-carousel .slider-controls,#crosssell-carousel .slider-controls,#additional-carousel .slider-controls{
display:none !important;
}

/* mouse grab icon */
 
.grabbing { 
    cursor:url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/grabbing.png") 8 8, move;
}


/* fix */
.product-carousel  .slider-wrapper,
.product-carousel  .slider-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
	list-style:none;
}
.customNavigation    { text-align: center; position:relative;width:100%}
.customNavigation a{
	-webkit-tap-highlight-color:transparent;
	display: block;
    float: right;
    height: 22px;
    position: absolute;
    top: -45px;
    width: 22px; 
	 text-indent: -9999px;
	 cursor:pointer;
	 z-index:999;
} 
.customNavigation a.prev {
  	background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -206px 2px  transparent;
    right:35px;
}
.customNavigation a.prev:hover { background-position: -206px -27px; text-decoration:none; }
.customNavigation a.next {
	background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/sprite.png") no-repeat scroll -236px 2px transparent;
    right:10px;
}
.customNavigation a.next:hover 	{ background-position: -236px -27px; text-decoration:none; }

/**************** additional carousel start *******************/
.additional-carousel .product-carousel{ width:auto; margin:20px 15px; }

.additional-carousel .customNavigation a{width:20px; height:25px;}
.additional-carousel .customNavigation a.prev {
	background:none;
    left:0px;
	top:40px;
	z-index:999;  
	text-indent: 0px;
	cursor:pointer;
}

.additional-carousel .customNavigation a.prev:before {color: #999;
    content: "\f104";
    font-family: "FontAwesome";
    font-size: 35px;}

.additional-carousel .customNavigation a.prev:hover:before{
color:#000;
}

.additional-carousel .customNavigation a.prev:hover { background-position: -203px -295px; text-decoration:none; z-index:999;}
.additional-carousel .customNavigation a.next {
	background:none;
    right:0px;
	top:40px;
	cursor:pointer;
	z-index:999; 
	text-indent: 0px;
}

.additional-carousel .customNavigation a.next:before{ color: #999;
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 35px;
}

.additional-carousel .customNavigation a.next:hover:before{
color:#000;
}

.additional-carousel .customNavigation a.next:hover { background-position: -233px -295px; text-decoration:none; z-index:999;}
.additional-carousel .slider-item { float: left;  width: 90px; }
.additional-carousel .slider-item .product-block{ clear: both; overflow: hidden;}

/**************** additional carousel End *******************/

.product-info .product-image .customNavigation    { text-align: center; position:absolute; width:100%; z-index:9;}
.product-info .product-image .customNavigation a{
	-webkit-tap-highlight-color: transparent;
	display: block;
    float: right;
    height: 20px;
    position: absolute;
    top: -34px;
    width: 16px;
}

.product-info .product-image .customNavigation a.prev {
  	background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/image/megnor/sprite.png") no-repeat scroll -11px -60px transparent;
    left:-3px;
	top:35px;
}
.product-info .product-image .customNavigation a.prev:hover 	{ background-position: -11px -90px; text-decoration:none;}
.product-info .product-image .customNavigation a.next {
	background: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/image/megnor/sprite.png") no-repeat scroll -43px -60px transparent;
	right:-3px;
	top:35px;
}
.product-info .product-image .customNavigation a.next:hover 	{ background-position: -43px -90px; text-decoration:none;}


#additional-carousel {
    margin: 15px auto;
    display: inline-block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
}

.product-image-thumbs {text-align:center;}

/* ========cloud-zoom============*/

/* This is the moving lens square underneath the mouse pointer. */
.cloud-zoom-lens {
    border: 4px solid #888;
    margin:-4px;    /* Set this to minus the border thickness. */
    background-color:#fff;
    cursor:move;
 
}

/* This is for the title text. */
.cloud-zoom-title {
    
    position:absolute !important;
    background-color:#000;
    color:#fff;
    padding:3px;
    width:100%;
    text-align:center;
    font-weight:bold;
    font-size:10px;
    top:0px;
}
/* This is the zoom window. */
.cloud-zoom-big {
    border:4px solid #ccc;
    overflow:hidden;
	 
}
/* This is the loading message. */
.cloud-zoom-loading {
    color:white;
    background:#222;
    padding:3px;
    border:1px solid #000;
}
.product-image .mousetrap {
    z-index:999 !important;
} 

/**
 * Lightbox
 */ 
/* ColorBox Core Style
-------------------------------------------------------------- */
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; }
.cboxIframe{width:100%; height:100%; display:block; border:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box;}

/* ColorBox skin.
   The following styles are ordered & tabbed
   in a way that represents the nesting of the generated HTML.
-------------------------------------------------------------- */
#cboxOverlay{background:url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/overlay.png) repeat 0 0;}
#colorbox{}
    #cboxContent{background:#fff; overflow:hidden; border:none;/*10px solid #333*/ padding:10px; }
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:40px; /*10px above buttons*/ }
        #cboxTitle{position:absolute; bottom:17px;text-align:center; width:100%; color:#999999;}
        #cboxCurrent{position:absolute; bottom:17px; left:80px; color:#999999;}
        #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
		
		#cboxPrevious,
		#cboxNext { position:absolute; background:url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/slider-arrows.png) no-repeat #ddd; width:30px; height:30px; text-indent:-9999px; }
		#cboxPrevious:hover,
		#cboxNext:hover { background-color:#333; }
        #cboxPrevious{bottom:10px; left:10px; background-position:-10px -10px;}
        #cboxPrevious:hover{background-position:-10px -60px;}
        #cboxNext{bottom:10px; left:40px; background-position:-60px -10px;}
        #cboxNext:hover{background-position:-60px -60px;}
		
        #cboxLoadingOverlay{background:url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/loading_background.png) no-repeat center center;}
        #cboxLoadingGraphic{background:url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/loading.gif) no-repeat center center;}
		
        #cboxClose{position:absolute; bottom:10px; right:10px; background:url(https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/close-button.png) -10px -10px no-repeat #ddd; width:30px; height:30px; text-indent:-9999px;}
        #cboxClose:hover{background-position:-10px -60px; background-color:#333;}

#cboxNext,
#cboxPrevious,
#cboxClose {
	transition:			background-color 300ms ease-in-out, background-position 300ms ease-in-out;
	-moz-transition:	background-color 300ms ease-in-out, background-position 300ms ease-in-out;
	-webkit-transition:	background-color 300ms ease-in-out, background-position 300ms ease-in-out;
	-o-transition:		background-color 300ms ease-in-out, background-position 300ms ease-in-out;
}
.zoom-btn-small {
    background-color: rgba(255, 255, 255, 0.7);
    bottom: 0px;
    color: #333333;
    line-height: 2.6666em;
    padding: 0 1em;
    position: absolute;
    right: 0px;
    z-index: 100;
}


#advancedmenu {
    position:relative;        
	margin:0 auto;
 	z-index:9;
}
div.menu {
    float: left;
}
div.menu.act {
   background:none;
}
div.menu.active {
	background:none;
	color:#00A1EA; 
}

div.menu.active .parentMenu a:before,div.hidden_menu:hover .parentMenu a:before,#nav .level-top:hover > a:before,.custom_menu:hover > a:before,div.menu .subparentMenu:hover > a:before,#nav li:hover > a:before{width:100%; opacity:1; -webkit-opacity:1; -moz-opacity:1; -khtml-opacity:1;}

div.megnor-advanced-menu-popup { 
  	background:#fff;
	position:absolute;
	display: none;
	text-align:left; 
	border:none;
	top:60px;
	transition:all 0.3s ease 0s;
	-webkit-transition:all 0.3s ease 0s;
	-moz-transition:all 0.3s ease 0s;
	-ms-transition:all 0.3s ease 0s;
	-o-transition:all 0.3s ease 0s;
	padding:15px 15px;
	border: 1px solid #ddd;
}

.megnor-advanced-menu-popup_inner{}
div.menu a, div.megnor-advanced-menu-popup a {   display:block; }
div.megnor-advanced-menu-popup a		
{ 
	padding:5px 10px;
	text-transform:none;
	
}
 div.megnor-advanced-menu-popup a:hover{}
div.megnor-advanced-menu-popup a.actParent {
    color: #4D4D4D;
}
div.megnor-advanced-menu-popup a.act {
    color: #A52A2A;
}
div.column {
    float:left;
    width:180px; /* column width */
    padding:5px;
}
div.itemSubMenu {
    margin-left:10px;
}
.clearBoth {
    clear:both;
}

div.megnor-advanced-menu-popup .block1{ }
div.megnor-advanced-menu-popup .block2{ padding:5px;}
#advancedmenu .megnor-advanced-menu-popup .itemMenu  a	{ font-weight:normal;  font-size: 13px;}
#advancedmenu .level1 > a.itemMenuName {
    font-size: 14px;
    color: #000;
}
.itemSubMenu .itemMenu 
{
	margin-left:0px;
}
.itemSubMenu .itemMenu a.itemMenuName
{
    color: #999; 
    font-weight: normal;
    padding: 2px 0 2px 0px;
}
.itemSubMenu .itemMenu a:hover	{color: #000;}

#advancedmenu .level-top.hidden_menu{
position:relative;
}

#advancedmenu .level-top.hidden_menu .category-wrapper {
    display: none;
    background: #fff;
    left: 0;
    margin: 0px;
    position: absolute;
    right: auto;
    top: 60px;
    padding: 10px 20px;
}

#advancedmenu .level-top.hidden_menu:hover .category-wrapper{ display: block;}

#advancedmenu .level-top.hidden_menu .category-wrapper div.menu .parentMenu a{padding:5px;}

#advancedmenu .level-top.hidden_menu .category-wrapper div.menu .parentMenu a:before{content:initial;}


/* Custom Menu */

.custom_menu {position:relative; float:left;}
.custom_menu > a{
	color: #000;
    font-size: 14px;
    font-weight: 500;
	padding: 12px 0px 29px;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
}
.custom_menu > a:hover{cursor:pointer;}
.custom_menu:hover .customblock_inner {display: block;} 
.customblock_inner{ background: #fff; display: none; border:1px solid #ddd;  min-width:506px; overflow: visible; position: absolute;  top: 60px !important;  z-index: 9; padding:15px 15px; text-align:left;}
.customblock_inner .custom_menu_inner{display: block;}
.static-block1{ float:left; padding:5px;}
.customblock_inner .custom_menu_inner .static-block1 > a {
    color: #000;
    font-size: 14px;
    padding-bottom: 10px;
    text-transform: capitalize;
    display: block;
	padding-top: 0;
}
.customblock_inner .custom_menu_inner .custom-link a {
    color: #999;
    font-size: 13px;
    font-weight: normal;
    padding: 2px 0;
    text-transform: capitalize;
	display:block;
}
.customblock_inner .custom_menu_inner .custom-link a:hover{ color:#000;}
.custom_banner{float:right;}
.menu .parentMenu a span {
    display: inline-block;
	padding:0px 0px;
    position: relative;
}

/* End Custom Menu */


/*Advance Menu More*/

.subparentMenu:hover .subparentmenu-hover {display: block;}
.subparentmenu-hover {
    background: #fff;
    border:1px solid #ddd;
    display: none;
    position: absolute; 
	z-index:9;
	width:200px;
	top:60px;
}
.subparentmenu-hover div.menu a {
    color: #999;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    text-align: left;
    text-transform: uppercase;
	margin:0;
}
.subparentmenu-hover div.menu a:hover{ color:#000 !important;}
.super-sub {  padding: 15px 0;  position: relative;}
.subparentmenu-hover div.megnor-advanced-menu-popup {
    left: auto !important;
    padding: 0px 0;
    right: -202px !important;
    top: auto !important;
    width: 200px;
	margin-top:-20px;
}
.subparentmenu-hover div.megnor-advanced-menu-popup .megnor-advanced-menu-popup_inner{ padding:15px 15px; float:left;}
.subparentmenu-hover div.megnor-advanced-menu-popup .megnor-advanced-menu-popup_inner div.itemSubMenu { padding:0 0 10px;}
.subparentmenu-hover div.menu { background: transparent;  float: none;}
.subparentmenu-hover .menu { width: 100%;}

.subparentmenu-hover div.menu .parentMenu a:before{content:initial;}

/*End Advance Menu More*/


/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/fonts/fontawesome-webfont.eot?v=4.4.0');src:url('https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/fonts/fontawesome-webfont.eot?#iefix&v=4.4.0') format('embedded-opentype'),url('https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/fonts/fontawesome-webfont.woff2?v=4.4.0') format('woff2'),url('https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/fonts/fontawesome-webfont.woff?v=4.4.0') format('woff'),url('https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/fonts/fontawesome-webfont.ttf?v=4.4.0') format('truetype'),url('https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}


@media only screen and (min-width: 1350px) and (max-width: 1410px) {

.featured-products .customNavigation a.prev,.new-products .customNavigation a.prev,#upsell-product-table .customNavigation a.prev,.special-products .customNavigation a.prev,.bestseller-products .customNavigation a.prev,.crosssell_product .customNavigation a.prev,.related-products .customNavigation a.prev{left:-70px;}

.featured-products .customNavigation a.next,.new-products .customNavigation a.next, #upsell-product-table .customNavigation a.next,.special-products .customNavigation a.next,.bestseller-products .customNavigation a.next,.crosssell_product .customNavigation a.next,.related-products .customNavigation a.next{right:-70px;}

.flex-direction-nav li a.flex-prev,.flex-direction-nav li a.flex-next{top:45%;}

}

@media only screen and (min-width: 1280px) and (max-width: 1350px) {

.featured-products .customNavigation a.prev,.new-products .customNavigation a.prev,#upsell-product-table .customNavigation a.prev,.special-products .customNavigation a.prev,.bestseller-products .customNavigation a.prev,.crosssell_product .customNavigation a.prev,.related-products .customNavigation a.prev{left:-40px;}

.featured-products .customNavigation a.next,.new-products .customNavigation a.next,#upsell-product-table .customNavigation a.next,.special-products .customNavigation a.next,.bestseller-products .customNavigation a.next,.crosssell_product .customNavigation a.next,.related-products .customNavigation a.next{right:-40px;}

.flex-direction-nav li a.flex-prev,.flex-direction-nav li a.flex-next{top:45%;}

.blog_inner .customNavigation a.prev{left:-40px;}

.blog_inner .customNavigation a.next{right:-40px;}

.customblock_inner{right:0;}

#nav li.hidden_menu .shown-sub ul.shown-sub{
	right: 202px;
    left: auto;
}

}

@media only screen and (min-width: 1200px) and (max-width: 1280px) {

.header, .main,.col-main, .footer,.container-width,.cms-index-index .messages{  }

.col-main{width:844px;}

.col-left{width:209px;}

.col-right{width:209px;}

.featured-products .customNavigation a.prev,.new-products .customNavigation a.prev,#upsell-product-table .customNavigation a.prev,.special-products .customNavigation a.prev,.bestseller-products .customNavigation a.prev,.crosssell_product .customNavigation a.prev,.related-products .customNavigation a.prev{left:-40px;}

.featured-products .customNavigation a.next,.new-products .customNavigation a.next,#upsell-product-table .customNavigation a.next,.special-products .customNavigation a.next,.bestseller-products .customNavigation a.next,.crosssell_product .customNavigation a.next,.related-products .customNavigation a.next{right:-40px;}

.blog_inner .customNavigation a.prev {left:-35px;}

.blog_inner .customNavigation a.next {right:-35px;}

.blog-right .post-inner{width:68%;}

.phoneno{font-size:43px;}

.product-view .product-img-box .product-image-zoom{}

#upsell-product-table .customNavigation a{top:0;}

.googlemap{width:49%; overflow:auto;}

.flex-direction-nav li a.flex-prev,.flex-direction-nav li a.flex-next{top:45%;}

.cart .cart-collaterals .col2-set{width:635px;}

.cart .cart-collaterals .col1-set{width: 435px}

#testimonial .customNavigation a.prev{left:-40px;}

#testimonial .customNavigation a.next{right:-40px;}

.featured-products .product-image-inner{margin-right:65px;}

.new-products-inner,.special-products-inner,.bestseller-products-inner{margin:0 auto}

.customblock_inner{right:0;}

#nav li.hidden_menu .shown-sub ul.shown-sub{
	right: 202px;
    left: auto;
}

}


@media only screen and (min-width: 1024px) and (max-width: 1200px) {

.header, .main,.col-main, .footer,.container-width,.cms-index-index .messages{  }

.col-main{width: 747px;}

.col-left{width: 186px;}

.col-right{width: 186px;}

.featured-products .customNavigation a.prev,.new-products .customNavigation a.prev,#upsell-product-table .customNavigation a.prev,.special-products .customNavigation a.prev,.bestseller-products .customNavigation a.prev,.crosssell_product .customNavigation a.prev,.related-products .customNavigation a.prev{left:-10px;}

.featured-products .customNavigation a.next,.new-products .customNavigation a.next,#upsell-product-table .customNavigation a.next,.special-products .customNavigation a.next,.bestseller-products .customNavigation a.next,.crosssell_product .customNavigation a.next,.related-products .customNavigation a.next{right:-10px;}

.blog_inner .customNavigation a.prev {left:0px;}

.blog_inner .customNavigation a.next {right:0px;}

.blog-right .post-inner{}

.phoneno{font-size:43px;}

div.menu .parentMenu a, div.menu .subparentMenu a,#nav > li{margin-right:30px}

.Shopnow-text-cms .text{font-size:18px;}

.phoneno{font-size:38px;}

.social li a i{margin-right:5px;}

.homeslider_cms .features .text{width:260px;}

.main-image-block img{max-width:100%;}

#testimonial .customNavigation a.prev {left:-10px;}

#testimonial .customNavigation a.next {right:-10px;}

#footer .footer-area{margin-right:110px}

.product-view .product-img-box .product-image-zoom{}

.product-view .product-img-box{margin-right:35px;}

.googlemap{width:49%; overflow:auto;}

.flex-direction-nav li a.flex-prev,.flex-direction-nav li a.flex-next{top:35%;}

.cart .cart-collaterals .col2-set{width: 615px;}

.cart .cart-collaterals .col1-set{width: 335px}

.cart .discount, .cart .shipping{padding:15px 15px;}

.new-products-inner,.special-products-inner,.bestseller-products-inner{margin:0 auto}

.featured-products .product-image-inner{margin-right:65px;}

.cart .totals{width:285px;}

.mini-products-list .product-details{width: 56%;}

.customblock_inner{right:0;}

#nav li.hidden_menu .shown-sub ul.shown-sub{
	right: 202px;
    left: auto;
}

}




/* Media for 980px to 1023px */
/* 980px <= width < 1023px */

@media only screen and (min-width: 980px) and (max-width: 1023px) {

.header, .main,.col-main, .footer,.container-width,.cms-index-index .messages{  }

.col-main { float:left; width:715px;}
.col-left { float:left; width:178px;}
.col-right { float:right; width:178px; }
 
.col3-layout .col-main { width:520px; margin-left:10px; }
.col3-layout .col-wrapper { float:left; width:720px; }
.block-banner img{ max-width:100%; }
#footer .mobile_togglemenu{ display:none;  }
#footer .footer-area{ margin-right:95px; }
.cart .cart-collaterals .col1-set , .cart .cart-collaterals .col2-set , .cart .totals{ width:100%; }

div.menu .parentMenu a, div.menu .subparentMenu a,#nav > li{margin-right:20px}

.homeslider_cms .features .text{width:200px}

.Shopnow-text-cms .text{font-size:17px;}

.featured-products .customNavigation a.prev,.new-products .customNavigation a.prev,#upsell-product-table .customNavigation a.prev,.special-products .customNavigation a.prev,.bestseller-products .customNavigation a.prev,.crosssell_product .customNavigation a.prev,.related-products .customNavigation a.prev{left:-10px;}

.featured-products .customNavigation a.next,.new-products .customNavigation a.next,#upsell-product-table .customNavigation a.next,.special-products .customNavigation a.next,.bestseller-products .customNavigation a.next,.crosssell_product .customNavigation a.next,.related-products .customNavigation a.next{right:-10px;}

.blog_inner .customNavigation a.prev {left:0;}

.blog_inner .customNavigation a.next {right:0;}

#testimonial .customNavigation a.prev {left:-15px;}

#testimonial .customNavigation a.next {right:-15px;}

.blog-right .post-inner{}

.featured-products a.product-image{margin-right:90px;}

.phoneno{font-size:35px}

.social li a i{font-size: 15px; margin-right: 5px;}

.product-view .product-img-box .product-image-zoom{}

.product-view .product-img-box{margin-right:35px;}

.new-products-inner,.special-products-inner,.bestseller-products-inner{margin:0 auto}

.customblock_inner{right:0;}

#nav li.hidden_menu .shown-sub ul.shown-sub{
	right: 200px;
    left: auto;
}

.mini-products-list .product-details{width:55%;}

}


@media only screen and (max-width: 979px){

.header, .main, .footer,.container-width,.cms-index-index .messages{ width:725px; }
.footer{ padding:0; }
.col-main , .col3-layout .col-wrapper{ width:549px;}
.col3-layout .col-main{ width:374px; }  
.col-left,.col-right { width:165px; margin-top: 30px;}
 
 #advancedmenu{ display:none; }
.advanced_nav{ display:block; }
#zoom-btn , .mousetrap {display:none !important; }
#zoom1 {cursor:default !important; }
 
.header .quick-access{ }
.footer .mobile_togglemenu{ display:block; }
#footer ul{ display:none; margin-bottom:10px; }
#footer .footer-area{ width:100%; margin-right:0; margin-bottom: 20px;}
.products-list li .list-center{}
.product-view .product-shop{ width: 100%; }
.cart .cart-collaterals .col2-set, .cart .totals{ width:100%; }
.checkout-progress{ padding: 0 10px; }
.form-list li.wide select , .form-list li.wide .input-box {width: 400px;}
.gift-messages-form .item .details .form-list li.wide .input-box , .form-list li.wide input.input-text{ width:100%; }
.col1-layout .product-view .product-shop{ width: 100%;}
.product-view .product-img-box{margin:0 auto; min-height: 400px; float: none;}
.product-view .product-img-box .product-image-zoom{}
.padder h6 { display:block; padding:3px;line-height: 25px; }
.product-view .tabs{ display:none !important; }
.contacform{ width:100%; margin-bottom:10px; padding:0; margin-right:0; border:none; }
.googlemap{ width:100%;margin-bottom:10px;  }
.block-banner img , .category-image img{ max-width:100%;}
.toolbar .pager .pager_right{ float:left; margin-top:15px; clear:both; }
.footer_bottom ul.links{display:block;text-align:center; float:none; margin-bottom:5px; }
.footer address{ float:none;text-align:center; clear:both; }
.product-collateral .padder{ padding-left:0; padding-right:0; }
.padder ol{ display:none; margin-bottom: 15px;}
.padder > div{ display:block !important;  }
#footer .block-subscribe input.input-text{ width:98%; }
.block-subscribe .block-title strong {}
.multiple-checkout .gift-messages-form .item .details .form-list li.wide .input-box{ width:90%; }
.nav-container{text-align:left; width:440px;}
#footer .footer_map h6{display:block;}
.footer_top{padding-bottom:50px}
#footer h6{margin-bottom:15px;}
.homeslider_cms .features .text{width:185px;}
.Shopnow-text-cms .button{margin-left:10px;}
.Shopnow-text-cms .button a{padding:8px 20px;}
.Shopnow-text-cms .text{font-size:14px; letter-spacing:1.5px;}
.new-products .customNavigation a.prev,.featured-products .customNavigation a.prev,#upsell-product-table .customNavigation a.prev,.special-products .customNavigation a.prev,.bestseller-products .customNavigation a.prev,.crosssell_product .customNavigation a.prev,.related-products .customNavigation a.prev{left:0;}
.new-products .customNavigation a.next,.featured-products .customNavigation a.next,#upsell-product-table .customNavigation a.next,.special-products .customNavigation a.next,.bestseller-products .customNavigation a.next,.crosssell_product .customNavigation a.next,.related-products .customNavigation a.next{right:0;}

#testimonial .customNavigation a.prev{left:-20px;}
#testimonial .customNavigation a.next{right:-20px;}

.blog_inner .customNavigation a.prev{left:-15px;}
.blog_inner .customNavigation a.next{right:-15px;}

.featured-products .product-image-inner{margin-right:50px;}

.blog-right .post-inner{}
.new-products .customNavigation, .special-products .customNavigation, .bestseller-products .customNavigation,.crosssell_product .customNavigation,.related-products .customNavigation{top:60%;}


.col-main{ margin-bottom:10px; }
.col-left ,.col-right  ,.col-main{ width:100%;}
.toggle .mobile_togglecolumn {
    display: block;
}
.col-left .block-content ,.col-right .block-content{ display:none; }
.col3-layout .col-wrapper , .col-main , .col3-layout .col-main{  width:100%;}

.cart-table .btn-empty span, .cart-table .btn-continue span, .cart-table .btn-update span{padding:6px 10px;}
.cart .title-buttons .checkout-types{float:left; clear:both;}


.block{margin:0 0 20px;}

.new-products-inner,.blog_inner,.special-products-inner,.bestseller-products-inner{margin: 0 auto;}

.homecms .to-right{margin-top:0px;}

.flexslider .slides img{display:block;}

.tm_headerlinkmenu:hover .toggle{top:52px;}

#header-cart:hover #panel{top:97px;}

.mini-products-list .product-details{/*width:auto;*/}
}
 
/* Landscape phone to portrait tablet */
@media only screen and (max-width: 767px) {

.header, /*.nav-inner,*/ .main,  .footer,.container-width,.cms-index-index .messages { width:auto;  margin:0 15px;  }
.cms-index-index .messages{margin:0 15px !important; top:150px; }
.col-left ,.col-right  ,.col-main{ width:100%;}
.col-main{ margin-bottom:10px; }
.col-left .block-content ,.col-right .block-content{ display:none; }
.col3-layout .col-wrapper , .col-main , .col3-layout .col-main{  width:100%;}
.toggle .mobile_togglecolumn {
    display: block;
}
.block-banner{ display:none; }


/********** Header Setting *************/
.header .logo{  margin: 0 auto;
    text-align: center;
    text-decoration: none !important;
   float:none;}
.header .quick-access{
position: absolute;
right: 0;
top: 80px;
z-index: 999;
margin-top:10px;
}
.header .form-search input.input-text{ }

.header_top{ }
.header .welcome-msg{ }
.header .links{  }
.tm_headerlinks_inner{ }
.header .links { }
.header .links li{  }
.header .links li a{ }
.header .links li a:hover{  } 

.header a.logo{float: none; display:inline-block;}

.header .tm_top_currency , .header .form-language{ }
.header .tm_top_currency , .header .form-language {} 
.form-language .sbHolder, .tm_top_currency .sbHolder{  }
.form-language .sbHolder > a, .tm_top_currency .sbHolder > a{ }
.form-language .sbHolder .sbOptions, .tm_top_currency .sbHolder .sbOptions{  }
.header-cart , .tm_headerlinkmenu {

}
.tm_headerlinkmenu{}
.cart_mini_right{}
.header .header-cart #panel{ top:70px; }
.cart_mini_right .price{ display:none;}

/********** Header Setting *************/
.products-list li .list-center {    margin-top: 15px;    width: 100%;}
.col2-set .col-1 , .col2-set .col-2,.box-account .col2-set .col-1{  width:100%; overflow: auto;}
.box-account .col2-set .col-1{ padding-right:0; border:none; margin-bottom:15px;}
.order-info-box .col-1{ margin-bottom:15px; }
.product-view .product-img-box { margin:0 auto 20px; float:none;}
.product-shop{ width:100% !important;}
.header .form-language label , .header .tm_top_currency label {  }

#super-table{ clear:both; }
#new-wishlist-table .add-to-cart-alt button.button span{ width:auto !important;  }
.form-list li.wide textarea{ width:100%; }
.form-list li.fields .name-firstname{ margin-bottom:10px; }

#testimonial .customNavigation a.next{right: 0px;}

#testimonial .customNavigation a.prev{left: 0px;}

.blog_inner .customNavigation,#testimonial .customNavigation,.new-products .customNavigation, .special-products .customNavigation, .bestseller-products .customNavigation,.featured-products .customNavigation, .box-up-sell .customNavigation,.homeslider_cms .customNavigation,.related-products .customNavigation{opacity:1; -webkit-opacity:1; -moz-opacity:1; -khtml-opacity:1;}

.Shopnow-text-cms .text{font-size:20px; display:inline-block;}

.Shopnow-text-cms .button{display:inline-block; margin: 20px auto 0;}

.Shopnow-text-cms .button a{padding:8px 40px;}

.homecms .to-left{width:100%; margin-bottom:30px;}

.homecms .to-right{width:auto; float: none; text-align: center; margin-top: 0;}

.main-image-block img{display:inline-block;}

.homeslider_cms .features.div-left,.homeslider_cms .features.div-center,.homeslider_cms .features.div-right{width:33.33%;}

.nav-container{width:100%; float:left;}

#homecms_tab li{margin-left:5px;}

#homecms_tab > ul{float:left; margin-bottom:25px;}

.cms-index-index .header-container{position: relative; border-bottom: 1px solid #fff; background: #fff;}

.nav-responsive{box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; padding-right:150px;}

.header{padding:5px 0 0;}

.responsive-menu #nav-mobile{top:56px;}

.tm_headerlinkmenu:hover .toggle{top: 47px;}

#header-cart:hover #panel{top: 47px}

.header .form-search:hover input.input-text{}

.block-subscribe ul{width:435px;}

.block-subscribe .actions button.button span span{padding:16px 25px 17px;}

.block-subscribe input.input-text{width:235px;}

.featured-products .product-image-inner{
	margin-left: auto;
    width: 80%;
    float: none;
    margin-right: auto;
    display: inline-block;
}

.featured-products .product-details{width:100%; margin-top:20px; text-align:center;}

.featured-products{margin-bottom:150px;}

.blog_inner .customNavigation a.prev{left:0;}

.blog_inner .customNavigation a.next{right:0;}

.homeslider_cms .features .text{width:auto;}

.blog-right .post-inner{width:65%;}

.product-carousel .add-to-links, .products-grid .add-to-links{bottom:15px;}

button.button span, .back-link a{padding:7px 10px;}

.add-to-links li a.link-wishlist:before{padding: 7px 9px;}

.add-to-links li a.link-compare:before{padding: 7px 9px;}

.block{margin-bottom:20px;}

.product-view .product-img-box .product-image-zoom{width:100%; height:400px;}

.form-list .field.name-lastname{clear:both;}

.my-wishlist .buttons-set button.button{float:left;}

.fieldset .legend{clear:both;}

.flex-direction-nav{display:block;}

.image-slider.flexslider .flex-direction-nav{display:none}

.cart-table .btn-update{margin-left:5px;}

.cart-table .btn-empty span, .cart-table .btn-continue span, .cart-table .btn-update span{padding:5px 4px;}

.block-subscribe .validation-advice{bottom:-30px;}

.products-grid{margin:0 }

.cart .cart-collaterals .col1-set{width:100%;}

.date-time{
width:25%;
}

}


@media only screen and (max-width: 640px){

.pager .pager_right .sort-by{ float:left; clear:both; margin-top:10px;}
.pager .limiter{margin-left:0px;}
.sales-order-history .pager{padding:10px 0px;}
.sales-order-history .pager .limiter {clear: both; float: left;  margin-top: 10px;	margin-right:10px;}
.sales-order-history .pager .pages { float: left;  margin: 10px 0 0;}
.send-friend .form-list .field{float:none;}
.send-friend .form-list{width:90%;}
.send-friend .form-list li.wide .input-box{width:100%;}
#add_recipient_button{float:left; clear:both; margin-top:0px;}
.buttons-set button.button{float:left; clear:both; margin-top:10px; margin-left:0;}
.pager .pages{float:left; margin:0px; padding-right:10px; padding-bottom: 10px;}
.toolbar .pager .pager_right .limiter{float:left; margin-left:0px;}
.multiple-checkout .place-order .grand-total{padding:0;}

.page-title{float:left; width: 100%;}

.breadcrumbs{float:left;}

}

/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
@media only screen and (min-width: 480px) and (max-width: 767px) {
.form-list li.wide .input-box{width: 260px;}
.form-list li.wide input.input-text{ width: 250px;}
}

/* Landscape phones and down */
@media only screen and (max-width: 479px) {
.form-list .field , .form-list .input-box ,.form-list li.wide .input-box { width:100% !important; }
.form-list input.input-text , .form-list li.wide textarea, .form-list select , .tm_responsive_row select , 
.product-view .box-tags .form-add input.input-text{width:90% !important; }
.cart_mini_right{ display:none; }
.cart-label{  }
.checkout-progress{ padding:0 50px; }
.checkout-progress li{width:100% ;margin:0 0px 5px 0;}
.cart_mini_right .price{ display:none; }
.tm_responsive_row label , .tm_responsive_row span{width:100% ;margin:0 0px 5px 0;  }
.tm_responsive_row span .separator{ display:none;}
.gift-messages-form .item .details{ margin-left:0; margin-top:15px; }
.product-view .product-img-box{ width:290px; }
.product-view .product-img-box .product-image-zoom{}
.product-view .product-img-box .product-image img{ width:100%; }
.email-addto-box .email-friend{ float:none; margin-bottom:8px; }
.googlemap iframe{ width:100%  !important; }
.col3-set .col-1 , .col3-set .col-2 , .col3-set .col-3 { width:100%; margin-bottom:10px; }
.my-wishlist textarea{ width:90%; }
#my-tags-table td , #my-reviews-table td{ display:block; }
.additional-carousel .slider-item .product-block img{ margin:0 auto; text-align:center; display:block;  }
.product-view .product-shop .availability{ float:none; text-align:left; }
#product-review-table .nobr{  white-space: normal !important; }
#product-review-table td , .data-table thead th{  padding: 5px 3px; }
#product-review-table{ margin:10px 0; }
.buttons-set .back-link{ margin-bottom:10px; margin-right:10px; }
.buttons-set button.button{ float:left; margin-left:0; }
.pager .limiter{ margin-bottom:10px; }
.pager .pager_right .sort-by{  }
.products-list li .list-right{ width:100%; }
.page-popup .link-print{clear:both; float:left;}
#homecms_tab > ul{
	float: left;
    text-align: center;
    width: 100%;
}
#homecms_tab li{    
	margin-right: auto;
    display: block;
    margin-bottom: 15px;
    margin-left: auto;
}

.homeslider_cms .features.div-left, .homeslider_cms .features.div-center, .homeslider_cms .features.div-right{width:100%; margin-bottom:10px;}

.blog-left,.blog-right{float:none; display:inline-block;}

#blog-carousel{text-align:center;}

.blog-right{text-align:left;}

.header .form-search input.input-text{}

.header .form-search .search-wrapper.active{width:135px;}

.tm_headerlinkmenu .toggle{width:180px;}

.header .header-cart #panel{width:240px; min-width:240px;}

.video-wrapper .main_heading{font-size:40px;}

.video-wrapper .subheading{font-size:25px;}

.newshead{font-size:20px;}

.block-subscribe ul{width:295px;}

.block-subscribe input.input-text{width:95px;}

.footer_map > div,#gmap_canvas{width:290px !important;}

#testimonial .slider-controls{margin-top:0;}

.homeslider_cms .main_heading, .homecms-tabs .main_heading,.category-title h2, .category-title h2 a, .crosssell h2{font-size:28px;}

.products-list .product-image img{max-width:100%;}

.product-view .product-img-box .product-image-zoom{}

.product-view .product-shop .ratings .rating-links{display:block; margin:0;}

.title-buttons button.button{float:left; clear:both;}

.buttons-set button.button span{font-size:12px;}

.link-reorder{float: left;
    clear: both;
}
.link-print{float:left;}

.page-title .separator{float:left;}

.buttons-set .back-link a{font-size:12px;}

.multiple-checkout .place-order .grand-total button.button{margin-top:20px}

#opc-review .buttons-set{padding:10px 20px;}

.flex-direction-nav li a.flex-prev,.flex-direction-nav li a.flex-next{top:40%;}

.new-products-inner{margin:0 auto;}

.products-list li .list-left{margin-right:0;}

#my-tags-table .add-to-links{text-align:left;}

.add-to-cart button.button{clear:both; margin:15px 0 0;}

.mini-products-list .product-image{margin-right:10px;}
}

/* Mobile Landscape Size to Mobile Portrait (devices and browsers) */
@media only screen and (min-width: 320px) and (max-width: 479px) { }
@media only screen and (max-width: 319px){
.header-cart .right_arrow{ padding:0; background:none; }
.cart .discount .input-box { width:100% !important; }
#footer .block-subscribe input.input-text , .form-list textarea , .cart .discount input.input-text{  width:95%;}
.checkout-progress{ padding:0 10px; } 
.opc .step{ padding:15px 15px; } 
.product-view .product-img-box , .product-view .product-img-box .product-image img{ width:100%; } 
.product-view .product-shop .add-to-links li{ display:block;margin-bottom:8px; }
.product-view .product-shop .availability{ float:none; text-align:left; }
.my-wishlist .buttons-set button.button{ margin:5px 0; text-align:left;}
#product-review-table thead{ display:none; }
.form-language .sbHolder, .tm_top_currency .sbHolder{float:none; text-align:center; padding:0; }
.form-language .sbHolder .sbToggle , .tm_top_currency .sbHolder .sbToggle { display:none; }
}

@media only screen and (max-width:240px) {}

@media only screen and (max-width: 767px) {
    .header .quick-access {
        position: absolute;
        right: 24px;
        top: 97px;
        z-index: 999;
        margin-top: 10px;
    }
}

/*
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel {
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper {
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight {
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
.owl-carousel .owl-item {
	float: left;
}
.owl-controls .owl-page, .owl-controls .owl-buttons div {
	cursor: pointer;
}
.owl-controls .owl-buttons div {
	position: absolute;
	top:40%;
}
.owl-controls .owl-buttons .owl-prev {
	left: 10px;
}
.owl-controls .owl-buttons .owl-next {
	right: 10px;
}
.owl-controls {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* mouse grab icon */
.grabbing {
	cursor: url("https://www.proxiblue.com.au/skin/frontend/templatemela/MAG100216_2/images/megnor/grabbing.png") 8 8, move;
}
/* fix */
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
}
/* OpenCart Code */
.owl-carousel {
	z-index: 1;
}
.owl-wrapper-outer {

}
.owl-carousel .owl-buttons div {
	height:21px;
	width:13px;
}
.owl-carousel:hover .owl-buttons div {

}
.owl-carousel .owl-buttons .owl-prev {
	left: 0px;
}

.owl-carousel .owl-buttons .owl-prev:before{
content: "\f104";
font-family:"FontAwesome";
font-size: 35px;
color:#999;
}

.owl-carousel .owl-buttons .owl-prev:hover:before{
color:#000;
}

.owl-carousel .owl-buttons .owl-next {
	right: 0px;
}

.owl-carousel .owl-buttons .owl-next:before{
content: "\f105";
font-family:"FontAwesome";
font-size: 35px;
color:#999;
}

.owl-carousel .owl-buttons .owl-next:hover:before{
color:#000;
}

.owl-carousel .owl-buttons div i {
	font-size: 40px;
	margin: 0px 0 0;
}
.owl-pagination {
	text-align: center;
	bottom: 20px;
	position: absolute;
	left: 0;
    right: 0;
}
.owl-controls .owl-page {
	display: inline-block;
	margin: 0px 4px;
}
.owl-controls .owl-page span {
	display: block;
    width: 7px;
    height: 7px;
    border: 2px solid #000;
    background-color: #fff;
    transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}
.owl-controls .owl-page.active span {
	background-color: #00A1EA;
}

