/* CSS Document */ :root {
    --block-padding: 40px;
    --tablet-padding: 16px;
    --phone-padding: 8px;
    --centered-width: 1400px;
    --white: #ffffff;
    --color1: #f07d02; /*ORANGE*/
    --color2: #1b4b82; /*DARK BLUE*/
    --color3: #f0f0f0; /*LIGHT GREY*/
}
* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 15px;
    color: #525252;
    /*color: #ffffff;*/
    font-weight: 300;
}
body {
    background-color: var(--color2);
}
p {
    margin: 0 0 20px 0;
    font-weight: 300;
    line-height: 22px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: text-bottom;
}
a {
    color: #656565;
    text-decoration: none;
    border: none;
    font-weight: 600;
}
a:hover {
    text-decoration: underline;
}
h1, h2, h3, h4 {
    font-weight: normal;
}
h1 {
    margin: 0 0 12px 0;
    font-size: 40px;
    font-weight: 400;
    color: var(--color2);
    font-weight: 600;
}
h2 {
    margin: 0 0 15px 0;
    font-size: 25px;
    line-height: 26px;
    font-weight: 700;
    color: var(--color2);
}
h3, h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
}
img {
    border: none;
}
ul {
    float: left;
    width: auto;
    margin: 0;
}
hr {
    border: 1px solid #e0dede;
    margin: 5px 0px 5px 0px;
}
.highlight {
    font-weight: 400;
    font-size: 21px;
    line-height: 26px;
    color: var(--color2);
}
/***MAIN BLOCKS****/
.fw-bg {
    position: relative;
    float: left;
    width: 100%;
}
.phoo_row_wrapper {
    position: relative;
    float: left;
    width: 100%;
}
.phoo_row {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
    padding: 0;
    background-size: cover;
    background-position: top center;
}
.page-pad .fw-wrapper {
    height: var(--block-padding);
}
/*********************/
.w960-centered .fw-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--centered-width);
    height: auto;
    margin: 0 auto 0 auto;
    padding: var(--block-padding) 0 0 var(--block-padding);
}
.w960-centered .fw-wrapper .block {
    position: relative;
    float: left;
    padding: 0 var(--block-padding) var(--block-padding) 0;
}
/*********************/
.full-width .fw-wrapper {
    position: relative;
    width: calc(100% + var(--block-padding));
    height: auto;
    padding: 0;
}
.full-width .fw-wrapper .block {
    position: relative;
    float: left;
    padding: 0 var(--block-padding) var(--block-padding) 0;
}
/*********************/
.block img.left {
    float: left;
    margin: 0 var(--block-padding) var(--block-padding) 0;
}
.block img.right {
    float: right;
    margin: 0 0 var(--block-padding) var(--block-padding);
}
.block .inner {
    /*position: relative;*/
}
/*********************/
.phoo_row.bg-white {
    background-color: var(--white);
}
.phoo_row.bg-color2 {
    background-color: var(--color2);
}
.phoo_row.bg-color2 * {
    color: #FFFFFF;
}
.phoo_row.bg-color3 {
    background-color: var(--color3);
}
/*********************/
.spacer {
    position: relative;
    float: left;
    width: 100%;
}
.wrapper {
    position: relative;
    float: left;
    width: 100%;
}
.hidden {
    display: none;
}
.fl-l {
    float: left;
}
.fl-r {
    float: right;
}
.w-auto {
    width: auto;
}
.highlight {
    font-size: 20px;
    font-weight: 400;
}
.centered {
    text-align: center;
}
.no-alias {
    image-rendering: optimizeSpeed; /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges; /* Firefox                        */
    image-rendering: -o-crisp-edges; /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated; /* Chrome */
    image-rendering: optimize-contrast; /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor; /* IE8+                           */
}
.heightFix {
    float: left;
    width: 1px;
    height: 480px;
    margin: 0px 0px 0px -1px;
}
.fl {
    float: left;
}
.fr {
    float: right !important;
}
.m-r6 {
    margin-right: 6px;
}
.m-b14 {
    margin-bottom: 14px;
}
.p-b6 {
    padding-bottom: 20px;
}
.p-r14 {
    padding-right: 14px;
}
.p-l20px {
    padding-left: 20px;
}
.p-r20px {
    padding-right: 20px;
}
.ta-r {
    text-align: right;
}
.green {
    color: #17cb5f;
}
.orange {
    color: #F57E0A;
}
.blue_grad {
    background: rgba(150, 224, 255, 1);
    background: -moz-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(0, 153, 219, 1) 28%, rgba(0, 153, 219, 1) 70%, rgba(2, 97, 138, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(150, 224, 255, 1)), color-stop(28%, rgba(0, 153, 219, 1)), color-stop(70%, rgba(0, 153, 219, 1)), color-stop(100%, rgba(2, 97, 138, 1)));
    background: -webkit-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(0, 153, 219, 1) 28%, rgba(0, 153, 219, 1) 70%, rgba(2, 97, 138, 1) 100%);
    background: -o-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(0, 153, 219, 1) 28%, rgba(0, 153, 219, 1) 70%, rgba(2, 97, 138, 1) 100%);
    background: -ms-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(0, 153, 219, 1) 28%, rgba(0, 153, 219, 1) 70%, rgba(2, 97, 138, 1) 100%);
    background: linear-gradient(to bottom, rgba(150, 224, 255, 1) 0%, rgba(0, 153, 219, 1) 28%, rgba(0, 153, 219, 1) 70%, rgba(2, 97, 138, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#96e0ff', endColorstr='#02618a', GradientType=0);
}
.orange_grad, .font_group_select.selected {
    background: rgba(255, 224, 184, 1);
    background: -moz-linear-gradient(top, rgba(255, 224, 184, 1) 0%, rgba(248, 145, 1, 1) 28%, rgba(248, 145, 1, 1) 74%, rgba(156, 89, 2, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255, 224, 184, 1)), color-stop(28%, rgba(248, 145, 1, 1)), color-stop(74%, rgba(248, 145, 1, 1)), color-stop(100%, rgba(156, 89, 2, 1)));
    background: -webkit-linear-gradient(top, rgba(255, 224, 184, 1) 0%, rgba(248, 145, 1, 1) 28%, rgba(248, 145, 1, 1) 74%, rgba(156, 89, 2, 1) 100%);
    background: -o-linear-gradient(top, rgba(255, 224, 184, 1) 0%, rgba(248, 145, 1, 1) 28%, rgba(248, 145, 1, 1) 74%, rgba(156, 89, 2, 1) 100%);
    background: -ms-linear-gradient(top, rgba(255, 224, 184, 1) 0%, rgba(248, 145, 1, 1) 28%, rgba(248, 145, 1, 1) 74%, rgba(156, 89, 2, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 224, 184, 1) 0%, rgba(248, 145, 1, 1) 28%, rgba(248, 145, 1, 1) 74%, rgba(156, 89, 2, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe0b8', endColorstr='#9c5902', GradientType=0);
}
.go_btn_blue_grad, #updateText {
    background: rgba(150, 224, 255, 1);
    background: -moz-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(0, 153, 219, 1) 11%, rgba(0, 153, 219, 1) 89%, rgba(2, 97, 138, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(150, 224, 255, 1)), color-stop(11%, rgba(0, 153, 219, 1)), color-stop(89%, rgba(0, 153, 219, 1)), color-stop(100%, rgba(2, 97, 138, 1)));
    background: -webkit-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(0, 153, 219, 1) 11%, rgba(0, 153, 219, 1) 89%, rgba(2, 97, 138, 1) 100%);
    background: -o-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(0, 153, 219, 1) 11%, rgba(0, 153, 219, 1) 89%, rgba(2, 97, 138, 1) 100%);
    background: -ms-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(0, 153, 219, 1) 11%, rgba(0, 153, 219, 1) 89%, rgba(2, 97, 138, 1) 100%);
    background: linear-gradient(to bottom, rgba(150, 224, 255, 1) 0%, rgba(0, 153, 219, 1) 11%, rgba(0, 153, 219, 1) 89%, rgba(2, 97, 138, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#96e0ff', endColorstr='#02618a', GradientType=0);
}
.font_btn_blue_grad, .font_group_select {
    background: rgba(150, 224, 255, 1);
    background: -moz-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(27, 75, 130, 1) 11%, rgba(27, 75, 130, 1) 88%, rgba(1, 36, 51, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(150, 224, 255, 1)), color-stop(11%, rgba(27, 75, 130, 1)), color-stop(88%, rgba(27, 75, 130, 1)), color-stop(100%, rgba(1, 36, 51, 1)));
    background: -webkit-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(27, 75, 130, 1) 11%, rgba(27, 75, 130, 1) 88%, rgba(1, 36, 51, 1) 100%);
    background: -o-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(27, 75, 130, 1) 11%, rgba(27, 75, 130, 1) 88%, rgba(1, 36, 51, 1) 100%);
    background: -ms-linear-gradient(top, rgba(150, 224, 255, 1) 0%, rgba(27, 75, 130, 1) 11%, rgba(27, 75, 130, 1) 88%, rgba(1, 36, 51, 1) 100%);
    background: linear-gradient(to bottom, rgba(150, 224, 255, 1) 0%, rgba(27, 75, 130, 1) 11%, rgba(27, 75, 130, 1) 88%, rgba(1, 36, 51, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#96e0ff', endColorstr='#012433', GradientType=0);
}
.mobile {
    text-align: center;
    display: none;
}
/********
INTERNAL BOXES
********/
.spacer {
    position: relative;
    float: left;
    width: 100%;
    height: 60px !important;
    padding: 0 !important;
}
/*
.block {
    position: relative;
    float: left;
    padding: 0 40px 40px 0px;
}
.col1 {
    margin-top: 30px !important;
}
*/
.col1 .phoneTitle {
    display: none;
}
.col1, .logoHolder, .col1_grey, .col1_blue, .col1_blue_bg, .col1_white_bg, .col1_grey_bg {
    width: 100%;
}
.col1_grey {
    text-align: center;
}
.col1_grey h2 {
    color: var(--color2);
}
.col1_blue .inner h2, .col1_blue .inner h1, .col1_blue .inner p, .col1_blue .inner p a {
    color: #ffffff;
}
.col1_blue_bg {
    background: url(../images/col1_blue.jpg);
    background-color: #0d6fb4;
    background-position: top center;
    background-size: cover;
}
.col1_white_bg {
    background-color: #ffffff;
    background-position: top center;
    background-size: cover;
}
.col1_grey_bg {
    background-color: #f0f0f0;
    background-position: top center;
    background-size: cover;
}
.col1_blue .inner {
    padding: 80px 0px 80px 0px;
}
.col1_white {
    width: 100%;
    text-align: center;
}
.col1_white .inner {
    width: 100%;
    text-align: center;
    padding: 0px 0px 0px 0px;
}
.col1_blue .inner .col1_blue_left h2, .col1_blue .inner .col1_blue_left h1, .col1_blue .inner .col1_blue_right h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
    color: #ffffff;
}
.col1_blue .inner .col1_blue_left {
    float: left;
    width: 50%;
    padding-right: 20px;
    margin-bottom: 50px;
}
.col1_blue .inner .col1_blue_right {
    float: left;
    width: 50%;
    padding-left: 20px;
}
.col1_blue .inner .col1_blue_left h1, .col1_blue .inner .col1_blue_right h2 {
    margin-bottom: 15px;
    line-height: 40px;
}
.col1_blue .inner .col1_blue_left p, .col1_blue .inner .col1_blue_right p {
    text-align: center;
    color: #FFFFFF;
}
.col1_grey {
    padding: 30px 0px 30px 0px;
    background-color: #f0f0f0;
}
.col1_grey p {
    color: #666666;
}
.col1Centered {
    width: 100%;
    text-align: center;
    margin-top: 50px;
}
.col1, ul {
    clear: both;
    width: 100%;
    margin-top: 0px;
}
.shop_breadcrumb, .shop_breadcrumb a, .shop_breadcrumb * {
    text-transform: uppercase;
    text-decoration: none;
}
.col_1 {
    width: 100%;
}
.col1_4, .col1_4_sale_link {
    width: 25%;
}
.col1_4_greyBg {
    width: 23%;
}
.col1_4_orange {
    width: 23.4%;
    background-color: #f67e07;
    padding: 0px 20px 20px 20px;
}
.col1_4_orange h2, .col1_4_orange p, .col1_4_orange p a {
    color: #FFFFFF;
}
.col1_4_footer {
    width: 25%;
}
.col1_2, .col1_2_hm_gbg, .col1_2_hm_bbg {
    width: 50%;
}
.col3_4 {
    width: 75%;
}
.col1_3, .col1_3_sale_link, .col1_3_imgbg, .col1_3_contact {
    width: 33.3333%;
}
.col1_3_imgbg {
    float: left;
    padding: 0 40px 40px 0;
    cursor: pointer;
}
.col1_3_imgbg:nth-child(3n+1) {
    padding-right: calc(var(--block-padding) * 0.6666);
}
.col1_3_imgbg:nth-child(3n+2) {
    padding-left: calc(var(--block-padding) * 0.3333);
    padding-right: calc(var(--block-padding) * 0.3333);
}
.col1_3_imgbg:nth-child(3n+3) {
    padding-left: calc(var(--block-padding) * 0.6666);
    padding-right: 0;
}
.col1_3_imgbg .overlay {
    position: absolute;
    width: calc(100% - 0px);
    height: calc(100% - 0px);
    top: 0px;
    left: 0px;
    padding: 100px 20px 0;
    transition: all .3s ease-in;
}
.col1_3_imgbg .overlay:hover {
    background-color: rgba(0, 152, 219, 0.8);
}
.col1_3_imgbg .inner {
    background-position: center center;
    background-size: cover;
    padding: 20px;
    text-align: center;
    height: 400px;
}
.col1_3_imgbg .inner h2, .col1_3_imgbg .inner p {
    color: #FFFFFF;
}
.col1_3_imgbg .inner p {
    margin-bottom: 23px;
    line-height: 19px;
}
.col1_3_imgbg .inner h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 30px;
}
.col1_3_imgbg a:hover {
    background: #d55100;
    text-decoration: none;
}
.col1_3_imgbg a {
    width: 100%;
    height: 44px;
    padding: 6px 10px;
    background: #fbc275;
    background-image: -webkit-linear-gradient(top, #fbc275, #d55100);
    background-image: -moz-linear-gradient(top, #fbc275, #d55100);
    background-image: -ms-linear-gradient(top, #fbc275, #d55100);
    background-image: -o-linear-gradient(top, #fbc275, #d55100);
    background-image: linear-gradient(to bottom, #fbc275, #d55100);
    -webkit-border-radius: 14;
    -moz-border-radius: 14;
    border-radius: 14px;
    color: #fff;
    text-shadow: 1px 1px 1px #666666;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    border: solid #d55100 1px;
    text-decoration: none;
}
.col1_3 .catLink {
    width: 100%;
    border-bottom: solid 1px #727272;
    padding-bottom: 15px;
}
.col1_3 .catLink a {
    font-weight: 400 !important;
}
.col1_3 .prod13home {
    border-right: 0px solid #FFF !important;
}
.col1_4 .prod13home {
    border-right: 0px solid #FFF !important;
}
.col1_3_contact .inner {
    float: left;
    width: 100%;
    text-align: center;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #f89101;
    padding: 40px;
    color: #ffffff;
}
.col1_3_contact .inner p, .col1_3_contact .inner h2, .col1_3_contact .inner span {
    color: #ffffff;
}
.col1_4_greyBg {
    background-color: #f6f6f6;
    padding: 20px;
}
.col2_3 {
    width: 66.6666%;
}
.col1_5 {
    width: 20%;
}
.col4_5 {
    width: 80%;
}
.calltoaction {
    width: 100%;
    padding: 25px;
    background: #f89101;
    color: #ffffff;
}
.calltoaction a {
    color: var(--color2);
}
.calltoaction span {
    color: #ffffff;
}
/****MAIN STYLES***/
.headerBg {
    z-index: 1000;
    height: 110px;
    margin-bottom: 0px;
    background: #ffffff;
}
.headerBg .w960-centered .fw-wrapper {
    padding-top: 18px;
}
.headerBg .w960-centered .fw-wrapper .block {
    padding-bottom: 0;
}
.headerBg .header {
    position: relative;
    padding: 0 40px 0 0;
}
.headerBg .header-holder {
    text-align: center;
}
.headerBg .header-holder .logo-holder {
    text-align: left;
}
.headerBg .header-holder .logo-holder img {
    max-width: 524px;
}
.headerBg .header-holder .how-holder img {
    max-width: 180px;
}
.headerBg .shop-holder {
    margin-top: 0px;
    text-align: right;
}
.headerBg .shop-holder .shop_header_item {
    margin-left: 12px;
}
.headerBg .shop-holder .shop_header_item:first-child {
    margin-left: 0px;
}
.headerBg .shop-holder .opening {
    margin-top: 25px;
    text-align: right;
    font-size: 12px;
    font-weight: bold;
}
.headerBg .call-holder {
    padding-top: 14px;
    text-align: right;
}
.headerBg .other-holder {
    text-align: right;
}
.headerBg .other-holder h3 {
    margin: 0;
}
/**************************/
.headerBg .checkout {
    text-align: right;
}
.headerBg .checkout * {
    font-size: 14px;
    white-space: nowrap;
}
.headerBg .checkout .vbLayoutCell {
    float: right;
    padding-right: 6px;
    margin-right: 6px;
    border-right: solid 1px #8e8e8e;
}
.headerBg .checkout .vbLayoutCell:first-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
}
.headerBg .checkout .vbLayoutCell a {
    color: #8e8e8e;
    font-weight: normal;
}
/**************/
.phoo_row.brexit {
    background-color: #f4f4f4;
}
.phoo_row.brexit .fw-wrapper {
    padding-top: calc(var(--block-padding) / 2);
}
.phoo_row.brexit .fw-wrapper .block {
    padding-bottom: 0;
}
.phoo_row.brexit .fw-wrapper .block p {
    margin: 0;
    text-align: center;
    color: var(--color1);
}
/**************/
.navBg {
    height: 44px;
    border-top: 1px solid #87d3f5;
}
.navBg .fw-wrapper {
    padding: 0 0 0 var(--block-padding);
}
.navBg .fw-wrapper .block {
    padding: 0 var(--block-padding) 0 0;
}
/**************/
.promoBg * {}
.promoBg {
    margin-bottom: 32px;
}
.promoBg .w960-centered {
    width: 100%;
    max-width: none;
    padding: 0;
}
.promoBg .promo {
    padding: 0;
}
/**************/
.mainBg {
    background-color: #f4f4f4;
}
.mainBg .main {
    min-height: 200px;
}
.inner {
    position: relative;
    float: left;
    width: 100%;
    height: auto;
}
.inner img {
    max-width: 100%;
    height: auto;
}
/**************/
.footerBg {
    background-color: var(--color2);
    border-top: 15px solid #f4f4f4;
}
.footerBg * {
    color: #FFF;
    font-size: 14px;
}
.footerBg .footer {
    height: 100%;
}
.footerBg .footer h3 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 21px;
}
.footerBg .inner {
    padding: 0 0px;
}
.footerBg .footer .col1_3 a {
    color: #FFF !important;
    font-weight: 300;
}
.footerBg .footer .col1_3 p {
    font-weight: 300;
}
/*********************************/
.form-row-wrapper:first-child {
    padding-right: calc(var(--block-padding) / 2);
}
.form-row-wrapper:last-child {
    padding-left: calc(var(--block-padding) / 2);
}
.formRow {
    float: left;
    width: 100%;
    padding: 0 0 8px 0;
    margin: 0 0 8px 0;
    border-bottom: 1px solid #CCCCCC;
}
.col1 .formRow {
    float: left;
    width: 100%;
    padding: 0 0 8px 0;
    margin: 0 0 8px 0;
    border-bottom: none;
}
.formRow2 {
    float: left;
    width: 100%;
    padding: 0 0 8px 0;
    margin: 0 0 8px 0;
}
.formRow3 {
    float: left;
    width: 12.5%;
    padding: 0 10px 8px 0;
    margin: 0 0 8px 0;
}
.formRow4 {
    float: left;
    width: 50%;
    padding: 0 10px 8px 0;
    margin: 0 0 8px 0;
}
.formRow .th, .formRow4 .th {
    padding: 16px;
    border-right: 1px solid #e9e9ea;
    color: #FFF;
    font-weight: 600;
    background-color: #AAA;
}
.formRow .formLabel, .formRow4 .formLabel {
    float: left;
    width: 100%;
    padding: 0 0 6px 0;
    white-space: nowrap;
}
.formRow .formInput, .formRow34 .formInput {
    float: left;
    width: 100%;
}
.formRow3 .formInput li img {
    padding-bottom: 15px !important;
}
.formRow .formError, .formRow4 .formError {
    float: left;
    width: 100%;
    padding: 0;
    white-space: nowrap;
}
.formRow .formError .error, .formRow4 .formError .error {
    color: #900;
}
.formRow label.error, .formRow3 label.error {
    display: none !important;
}
.formRow .formSingleText, .formRow .formMultiText, .formRow .formSelect, .formRow4 .formSingleText, .formRow4 .formMultiText, .formRow4 .formSelect, .formRow2 .formSingleText, .formRow2 .formMultiText, .formRow2 .formSelect, #queue {
    float: left;
    width: 100%;
    padding: 4px;
}
.formRow .formSingleText, .formRow .formMultiText, .formRow .formSelect, .formRow4 .formSingleText, .formRow4 .formMultiText, .formRow4 .formSelect {
    border: solid 1px #AAA;
}
.formRow .formSingleText.error, .formRow .formMultiText.error, .formRow .formSelect.error, .formRow4 .formSingleText.error, .formRow4 .formMultiText.error, .formRow4 .formSelect.error, input.error {
    border: solid 1px #900;
    -webkit-box-shadow: 0 0 3px 1px #900;
    box-shadow: 0 0 3px 1px #900;
}
.formRow .pound_symbol {
    float: left;
    width: 3%;
    padding: 4px 0;
}
.formSingleText.pound {
    width: 97%;
}
.formBTN {
    display: inline-block;
    float: left;
    padding: 6px 16px 8px 16px;
    border: none;
    background-color: #3c3c3c;
    text-align: center;
    color: #FFF;
    cursor: pointer;
    margin-right: 10px;
    font-weight: 600;
}
button {
    padding: 2px 8px;
    background-color: #3c3c3c;
    border: none;
    text-align: center;
    color: #FFF;
    cursor: pointer;
    font-weight: 600;
}
a.formBTN {
    color: #FFF;
}
.formBTN .viewOrderBTN {
    color: #FFF !important;
}
.socialBTN {
    width: 100%;
    padding: 10px;
    display: none;
}
.fbBTN {
    border: solid 1px #AAA;
    background-color: #3B5998;
    color: #FFF;
}
.accRow1 {
    padding-right: 15px;
}
.accRow2 {
    padding-left: 15px;
}
.basketQuantityInputHolder {
    float: left;
    width: auto;
}
.basketInputHolder {
    float: left;
    width: auto;
    margin: 0 6px;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: solid 1px #DDD;
    background: #3c3c3c;
    font-weight: normal;
    color: #ffffff !important;
}
/*******************************/
#checkout .formRow {
    border-bottom: solid 1px #CCC;
}
#checkout .basketTotalRow * {
    font-weight: 600;
}
#checkout .basketTotalRow .small {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5em;
}
#checkout #BTsendDetalis {
    width: 100%;
    padding: 6px 0 8px 0;
}
/*******************************/
.fc {
    float: left;
    padding-right: 8px;
}
.fc br {
    margin-bottom: 6px;
}
.fc5pc {
    width: 5%;
}
.fc10pc {
    width: 10%;
}
.fc15pc {
    width: 15%;
}
.fc20pc {
    width: 20%;
}
.fc25pc {
    width: 25%;
}
.fc30pc {
    width: 30%;
}
.fc33pc {
    width: 33.3333%;
}
.fc35pc {
    width: 35%;
}
.fc40pc {
    width: 40%;
}
.fc45pc {
    width: 45%;
}
.fc50pc {
    width: 50%;
}
.fc55pc {
    width: 50%;
}
.fc60pc {
    width: 60%;
}
.fc65pc {
    width: 60%;
}
.fc66pc {
    width: 66.6666%;
}
.fc70pc {
    width: 70%;
}
.fc75pc {
    width: 75%;
}
.fc80pc {
    width: 80%;
}
.fc85pc {
    width: 85%;
}
.fc90pc {
    width: 90%;
}
.fc95pc {
    width: 90%;
}
.fc100pc {
    width: 100%;
}
.fc .input1, .fc .input2, .fc .input3 {
    padding: 4px;
    border: solid 1px #CCC;
}
.fc .input1 {
    width: 100%;
}
.fc .input2 {
    width: 50%;
}
.fc .input3 {
    width: 25%;
}
/****************************/
.galleryHolder {
    position: relative;
    float: left;
    width: 100%;
    padding: 0 30px;
}
.galleryHolder .homeBTNleft, .galleryHolder .homeBTNright {
    position: absolute;
    width: auto;
    height: 30px;
    cursor: pointer;
    margin: 55px 0 0 0;
    margin-right: 0;
    padding: 1px 0 0 6px;
    z-index: 1000;
    font-size: 30px;
    line-height: 30px;
}
.galleryHolder .homeBTNleft {
    left: 0;
}
.galleryHolder .homeBTNright {
    right: 8px;
}
.galleryHolder .galleryThumbs {
    float: left;
    width: 100%;
}
.galleryHolder .galleryThumbs .itemBlock {
    float: left;
    width: 100%;
    height: 100%;
}
.galleryHolder .gallery_item {
    float: left;
    overflow: hidden;
    width: 20%;
    max-height: 160px;
    border: solid 10px #FFF;
}
.col1_3 .galleryHolder .gallery_item {
    float: left;
    width: 50%;
    max-height: 90px;
    overflow: hidden;
    border: solid 10px #f4f4f4;
}
.galleryHolder .galleryLink, .galleryHolder .galleryImg {
    display: block;
    width: 100%;
    height: 100%;
}
.galleryHolder .galleryViewer {
    float: left;
    width: 64px;
    height: 100%;
    overflow: hidden;
}
.galleryHolder .gvItem, .galleryHolder .gvItem img {
    height: 100%;
}
/********************************/
.newsItem {
    padding: 20px 20px 20px 0px;
    border-bottom: dashed 1px #AAA;
}
.newsItem hr {
    display: none;
}
.newsItem:nth-child(1) {
    padding: 0 0 40px 0;
}
/*************/
#twitter {
    float: left;
    text-align: center;
}
#twitter ul {
    width: 100%;
    padding: 0;
    margin: 0;
}
#twitter li {
    float: left;
    width: 100%;
    padding: 0;
    list-style-type: none;
    text-align: left;
}
/*********
STRUCTURE
************/
.w5pc, .w10pc, .w20pc, .w25pc, .w30pc, .w33pc, .w40pc, .w50pc, .w60pc, .w66pc, .w70pc, .w75pc, .w80pc, .w90pc, .w95pc, .w100pc, .w80, .w160, .w240, .w320, .w400, .w480, .w560, .w640, .w720, .w800, .w880, .w960 {
    position: relative;
    float: left;
}
.w5pc {
    width: 5% !important;
}
.w10pc {
    width: 10% !important;
}
.w20pc {
    width: 20% !important;
}
.w25pc {
    width: 25% !important;
}
.w30pc {
    width: 30% !important;
}
.w33pc {
    width: 33.3333% !important;
}
.w40pc {
    width: 40% !important;
}
.w50pc {
    width: 50% !important;
}
.w60pc {
    width: 60% !important;
}
.w66pc {
    width: 66.6666% !important;
}
.w70pc {
    width: 70% !important;
}
.w75pc {
    width: 75% !important;
}
.w80pc {
    width: 80% !important;
}
.w90pc {
    width: 90% !important;
}
.w95pc {
    width: 95% !important;
}
.w100pc {
    width: 100% !important;
}
.w80 {
    width: 160px !important;
}
.w160 {
    width: 160px !important;
}
.w240 {
    width: 240px !important;
}
.w320 {
    width: 320px !important;
}
.w400 {
    width: 400px !important;
}
.w480 {
    width: 480px !important;
}
.w560 {
    width: 560px !important;
}
.w640 {
    width: 640px !important;
}
.w720 {
    width: 720px !important;
}
.w800 {
    width: 800px !important;
}
.w880 {
    width: 880px !important;
}
.w960 {
    width: 960px !important;
}
/*RELATED*/
.prod_embed {
    margin-bottom: 32px;
    border-right: 40px solid #F4F4F4;
}
.prod_embed .thumbHolder .mainThumb {
    width: 100%;
    height: 200px;
    background-color: #FFFFFF;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.prod_embed .addRow {
    padding: 0 0 4px 0;
}
.prod_embed .addRow .price {
    float: left;
    width: 100px;
}
.prod_embed .addRow label {
    float: left;
    display: block;
    width: 100px;
}
.prod_embed h2 {
    font-size: 14px;
    margin: 0;
    background-color: #0098db;
    padding: 8px 8px 0px 8px;
    color: #ffffff;
}
/**************/
.prod13home {
    margin-bottom: 32px;
    border-right: 40px solid #F4F4F4;
}
.prod13home h2 {
    margin: 10px 0px 20px 0px !important;
}
.prod13home .img {
    height: 320px;
    margin: 0 0 10px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.prod13home .img {
    height: 245px;
    border: 1px solid #CCCCCC;
    background-color: #ffffff;
}
.prod13home .text {
    height: 60;
    border-bottom: solid 1px #727272;
}
.prod13home h2 {
    font-size: 700;
    margin: 0 0 10px 0;
}
/**************/
.shopBack {
    padding: 16px 0;
}
.shop_item {
    padding: 32px 0 0 0;
    margin-bottom: 32px;
    border-bottom: solid 1px #3c3c3c;
}
.shop_item .img {
    height: 712px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.shop_item .desc_holder {
    padding: 32px 0 0 0;
    margin: 32px 0 0 0;
    border-top: solid 1px #3c3c3c;
}
.shop_item .left_col {
    padding: 0 32px 0 0;
}
.shop_item .left_col strong {
    text-transform: uppercase;
}
.shop_item .left_col .w100pc {
    padding: 0 0 32px 0;
}
.shop_item .left_col .w100pc:last-child {
    padding: 0;
}
.shop_item .right_col {
    border-bottom: solid 1px #3c3c3c;
    margin-bottom: 64px;
}
.shop_item .prod_gal {
    height: 124px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-left: solid 12px #FFF;
    border-right: solid 12px #FFF;
    border-bottom: solid 24px #FFF;
}
.shop_item .prod_gal:nth-child(4n + 1) {
    border-left: none;
}
.shop_item .prod_gal:nth-child(4n) {
    border-right: none;
}
.shop_related strong {
    text-transform: uppercase;
}
.shop_related .prod_rel {
    position: relative;
    float: left;
    width: 202px;
    height: 180px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-right: solid 24px #FFF;
    border-bottom: solid 24px #FFF;
    padding-top: 180px;
    text-transform: uppercase;
    text-decoration: none;
}
/*******************/
.descriptionHolder {
    margin-bottom: 0px;
}
.descriptionHolder h2 {
    margin: 0 0 15px 0;
    font-size: 18px;
}
.thumbHolder .mainThumb {
    width: 100%;
    background-color: #ffffff;
    padding: 16px;
    border: 1px solid #cccccc;
    text-align: center;
}
.thumbHolder .mainThumb img {
    max-width: 100%;
    height: auto;
}
#prod_price {
    padding-left: 30px;
}
#optionText {
    float: left;
    width: 100%;
    margin-top: 30px;
}
.addRow {
    padding-bottom: 10px;
}
.addRow .symbol, .addRow .price {
    float: left;
    font-size: 30px;
    margin-bottom: 6px;
}
.addRow .symbol {
    width: 20px;
    padding-top: 1px;
}
.addRow .price {
    width: 200px;
}
.prod_swatch {
    float: left;
    width: 70px;
    height: 70px;
    margin: 0 6px 6px 0;
    background-size: cover;
    cursor: pointer;
}
.prod_swatch.selected {
    border: solid 2px #000000;
}
.prod_gal {
    height: 124px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-left: solid 12px #FFF;
    border-right: solid 12px #FFF;
    border-bottom: solid 24px #FFF;
}
.prod_gal {
    display: none;
}
/**************/
.shopRelatedHolder {}
.shopRelatedHolder h2 {
    margin: 0 0 16px 0;
}
.shopRelatedItem {
    position: relative;
    width: 32%;
    overflow: hidden;
    float: left;
    margin: 0 15px 15px 0;
    padding: 10px 5% 15px 0;
    border: 1px solid #cccccc;
}
.shopRelatedItem p a {
    font-weight: 500;
    font-size: 16px;
}
.shopRelatedItem .shopRelatedThumb {
    float: left;
    width: 104px;
    height: auto;
    margin: 0 20px 0 0;
}
.shopRelatedItem .shopRelatedThumb img {
    width: 100%;
    height: auto;
}
.btn {
    display: inline-block;
    float: left;
    border: none;
    background-color: #3C3C3C;
    color: #FFF;
    cursor: pointer;
}
.fillBTN {
    position: absolute;
    z-index: 5000;
}
.grecaptcha-badge {
    z-index: 200000;
}
#google_translate_element {
    position: absolute;
    right: 30px;
    top: 0px;
    z-index: 3000;
}


/*******/