﻿/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */progress,sub,sup{vertical-align:baseline}body,h1{margin:0}button,hr,input{overflow:visible}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent;-webkit-text-decoration-skip:objects}a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}dfn{font-style:italic}h1{font-size:2em}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}svg:not(:root){overflow:hidden}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:700}button,select{text-transform:none}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-input-placeholder{color:inherit;opacity:.54}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}

body{
    /*font-family: arial;*/
    font-size: 1rem;
    color: #404041;
}

@media only screen and (min-width : 900px) {
    body{
        font-size: 0.8rem;
    }
}

a{
    text-decoration: none;
}

header {
    position: fixed;
    width: 100%;
    z-index: 9998;
    height: 50px;
    line-height: 50px;
}

.header_container {
    width: 95%;
    margin: 0 auto;
}

.store_name{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 1rem;
}

.store_name a{
    color: #FFF;
    font-weight: normal;
}

@media only screen and (min-width : 900px) {
    .store_name {
        font-size: 2rem;
    }
}

#basket_title{
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 0px;
}

/* ======================== */
/* ===== Basket Empty ===== */
/* ======================== */

#basket_empty{
    text-align: center;
    font-style: italic;
    display: none;
}



/* ========================= */
/* ===== Normal Basket ===== */
/* ========================= */

#basket_wrapper {
    padding-top: 100px;
    margin: 0 10px;
    max-width: 1024px;
}

@media only screen and (min-width:1024px) {
    #basket_wrapper {
        margin: 0 auto;
    }
}

/* Basket Header */
#basket_content_header{
    display: none;
}

@media only screen and (min-width:600px){
    #basket_content_header{
        display: block;
        overflow: hidden;
    }
    .basket_content_header_item{
        display: inline-block;
        float: left;
        font-size: 1.2rem;
        font-weight: bold;
        text-transform: uppercase;
        margin-right: 2%;
    }
    .basket_content_header_item:last-child{ margin-right: 0%; }
    #basket_content_header_item{ width: 54%; }
    #basket_content_header_price{ width: 13.3333%; }
    #basket_content_header_qty{ width: 13.3333%;  }
    #basket_content_header_total{ width: 13.3333%;  }
}


/* Basket Item */
.basket_item{
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 10px 0px;
}

.basket_image_container{
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.basket_image{
    width: 100px;
    height: 100px;
    display: block;
}

.basket_item_name_container, .basket_item_qty_error{
    float: left;
    width: calc(70% - 80px);
    font-size: 0.9rem;
}

.checkout_form_item{
    font-size: 0.7rem;
    
}

.basket_item_price{
    float: right;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.basket_item_quantity{
    float: right;
    clear: right;
    margin-bottom: 5px;
    position: relative;
}

.basket_item_quantity input{
    width: 40px;
    border-radius: 2px;
    text-align: center;
    -webkit-appearance: none;
}

.basket_item_subprice{
    float: right;
    clear: right;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

.basket_item_subprice span{
    font-size: 0.8rem;
    font-weight: normal;
}

.basket_item_remove_icon{ display: none; }

.basket_item_remove_text{
    float: right;
    clear: right;
    font-size: 0.8rem;
}

@media only screen and (min-width:600px){
    .basket_item_image_name{
        display: inline-block;
        float: left;
        width: 54%;
        margin-right: 2%;
    }
    .basket_item_name_container, .basket_item_qty_error{
        width: auto;
        float: none;
    }
    .basket_item_price{
        float: left;
        display: inline-block;
        width: 13.3333%;
        margin-right: 2%;
    }
    .basket_item_quantity{
        display: inline-block;
        float: left;
        clear: none;
        width: 13.3333%;
        margin-right: 2%;
    }
    .basket_item_subprice{
        display: inline-block;
        float: left;
        clear: none;
        width: 13.3333%;
    }
    .basket_item_subprice span:first-of-type{
        display: none;
    }
    .basket_item_remove{
        display: inline-block;
        float: left;
    }
    
}

/* Basket Coupons */
#basket_coupon_toggle{
    font-size: 0.8rem;
    margin-top: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: right;
}

#basket_coupon{
    padding-bottom: 10px;
    overflow: hidden;
    display: none;
}

.basket_coupon_container{
    overflow: hidden;
    float: right;
    position: relative;
}

.basket_coupon_container label {
    position: absolute;
    z-index: 3;
    left: 21px;
    top: 11px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.label_move {
    top: 0px !important;
}

#basket_coupon #coupon_code{
    border-radius: 4px;
    font-size: 0.8rem;
    padding: 17px 20px 7px 20px;
    display: inline-block;
    float: left;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-right: none !important;
}

#basket_coupon #coupon_code:focus{
    outline: none !important;
}

#basket_coupon #btnCouponAdd{
    display: block;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 38px;
    border-radius: 4px;
    display: inline-block;
    float: left;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    cursor: pointer;
}

#basket_coupon #btnCouponAdd:focus{
    outline: none;
}

.basket_coupon_alert{
    font-size: 0.8rem;
    clear: both;
    text-align: right;
    display: none;
    padding-top: 5px;
}

#basket_coupons_used{
    font-size: 0.8rem;
}

.basket_coupons_used_title{
    vertical-align: top;
}

.coupon_item{
    padding-bottom: 10px;
}

.coupon_remove{
    display: inline-block;
    margin-left: 5px;
    height: 20px;
    width: 20px;
    line-height: 18px;
    text-align: center;
    position: relative;
    top: 5px;
    font-size: 0.8rem;
    border-radius: 2px;
    cursor: pointer;
}

@media only screen and (min-width:600px){
    .coupon_item{
        padding-bottom: 5px;
    }

    .coupon_remove{
        height: 13px;
        width: 13px;
        line-height: 11px;
        top: 2px;
        font-size: 0.7rem;
        border-radius: 2px;
    }
}

/* Basket Information */
#basket_information{
    padding-top: 10px;
}

#basket_information div{
    overflow: hidden;
}

#basket_information div em{
    font-size: 0.8rem;
    display: inline-block;
    float: left;
}

#basket_information div span{
    float: right;
    display: inline-block;
    font-size: 0.8rem;
}

#basket_subtotal span:first-child {
    float: left;
}

#basket_information div:last-child span{
    font-weight: bold;
    font-size: 1rem;
}

@media only screen and (min-width:600px){
    #basket_information{
        text-align: right;
        padding-bottom: 10px;
    }
    #basket_information div em, #basket_information div span, #basket_subtotal span:first-child{
        float: none;
    }
    
    #basket_information div em{
        min-width: 200px;
        text-align: right;
    }
    
    #basket_information div span{
        min-width: 100px;
    }
}




/* Basket Purchase */
#basket_purchase{
    margin-top: 20px;
}
#basket_purchase_main{
    display: block;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 40px;
    border-radius: 4px;
}

#basket_express{
    margin-top: 10px;
    text-align: center;
    display: block;
}

#basket_express a{
    padding-top: 10px;
    display: block;
}

@media only screen and (min-width:600px){
    #basket_purchase_main{
        display: inline-block;
        padding: 0px 20px;
        float: right;
    }
    #basket_express{
        text-align: right;
        clear: both;
    }
}

.basket_item_qty_error_tip{
    font-size: 0.8rem;
    position: absolute;
    border-radius: 4px;
    padding: 10px;
    width: 150px;
    bottom: 40px;
    right: 0;
    display: none;
}

.basket_item_qty_error_tip::after{
    content: '';
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    right: 10px;
}

@media only screen and (min-width:600px){
    .basket_item_qty_error_tip{
        right: auto;
    }
    
    .basket_item_qty_error_tip::after{
        left: 10px;
        right: auto;
    }
}

/* ======================== */
/* ==== Basket Disabled === */
/* ======================== */

#basket_disabled_message{
    display: none;
    text-align: center;
    margin-bottom: 10px;
    line-height: 40px;
    border-radius: 4px;
}

.basket_disabled #basket_disabled_message{
    display: block;
}

.basket_disabled #basket_purchase_main{
    background-color: #ddd;
    color: #9c9c9c;
}

.basket_disabled img{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}

@media only screen and (min-width:600px){
    .basket_disabled #basket_disabled_message{
        display: inline-block;
        float: right;
        padding: 0px 20px;
    }
    .basket_disabled #basket_purchase_main{
        clear: both;
    }
}

/* ========================== */
/* ==== Basket Busy Wait ==== */
/* ========================== */

.busy_wait_overlay{
    z-index: 9998;
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(255,255,255,0.8);
}

.busy_wait{
    display: none;
    position: fixed;
    top: 50%;
    z-index: 9999;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
}


.cssload-thecube {
	width: 73px;
	height: 73px;
	margin: 0 auto;
	margin-top: 49px;
	position: relative;
	transform: rotateZ(45deg);
		-o-transform: rotateZ(45deg);
		-ms-transform: rotateZ(45deg);
		-webkit-transform: rotateZ(45deg);
		-moz-transform: rotateZ(45deg);
}
.cssload-thecube .cssload-cube {
	position: relative;
	transform: rotateZ(45deg);
		-o-transform: rotateZ(45deg);
		-ms-transform: rotateZ(45deg);
		-webkit-transform: rotateZ(45deg);
		-moz-transform: rotateZ(45deg);
}
.cssload-thecube .cssload-cube {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	transform: scale(1.1);
		-o-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);
}
.cssload-thecube .cssload-cube:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	animation: cssload-fold-thecube 2.76s infinite linear both;
		-o-animation: cssload-fold-thecube 2.76s infinite linear both;
		-ms-animation: cssload-fold-thecube 2.76s infinite linear both;
		-webkit-animation: cssload-fold-thecube 2.76s infinite linear both;
		-moz-animation: cssload-fold-thecube 2.76s infinite linear both;
	transform-origin: 100% 100%;
		-o-transform-origin: 100% 100%;
		-ms-transform-origin: 100% 100%;
		-webkit-transform-origin: 100% 100%;
		-moz-transform-origin: 100% 100%;
}
.cssload-thecube .cssload-c2 {
	transform: scale(1.1) rotateZ(90deg);
		-o-transform: scale(1.1) rotateZ(90deg);
		-ms-transform: scale(1.1) rotateZ(90deg);
		-webkit-transform: scale(1.1) rotateZ(90deg);
		-moz-transform: scale(1.1) rotateZ(90deg);
}
.cssload-thecube .cssload-c3 {
	transform: scale(1.1) rotateZ(180deg);
		-o-transform: scale(1.1) rotateZ(180deg);
		-ms-transform: scale(1.1) rotateZ(180deg);
		-webkit-transform: scale(1.1) rotateZ(180deg);
		-moz-transform: scale(1.1) rotateZ(180deg);
}
.cssload-thecube .cssload-c4 {
	transform: scale(1.1) rotateZ(270deg);
		-o-transform: scale(1.1) rotateZ(270deg);
		-ms-transform: scale(1.1) rotateZ(270deg);
		-webkit-transform: scale(1.1) rotateZ(270deg);
		-moz-transform: scale(1.1) rotateZ(270deg);
}
.cssload-thecube .cssload-c2:before {
	animation-delay: 0.35s;
		-o-animation-delay: 0.35s;
		-ms-animation-delay: 0.35s;
		-webkit-animation-delay: 0.35s;
		-moz-animation-delay: 0.35s;
}
.cssload-thecube .cssload-c3:before {
	animation-delay: 0.69s;
		-o-animation-delay: 0.69s;
		-ms-animation-delay: 0.69s;
		-webkit-animation-delay: 0.69s;
		-moz-animation-delay: 0.69s;
}
.cssload-thecube .cssload-c4:before {
	animation-delay: 1.04s;
		-o-animation-delay: 1.04s;
		-ms-animation-delay: 1.04s;
		-webkit-animation-delay: 1.04s;
		-moz-animation-delay: 1.04s;
}



@keyframes cssload-fold-thecube {
	0%, 10% {
		transform: perspective(136px) rotateX(-180deg);
		opacity: 0;
	}
	25%,
				75% {
		transform: perspective(136px) rotateX(0deg);
		opacity: 1;
	}
	90%,
				100% {
		transform: perspective(136px) rotateY(180deg);
		opacity: 0;
	}
}

@-o-keyframes cssload-fold-thecube {
	0%, 10% {
		-o-transform: perspective(136px) rotateX(-180deg);
		opacity: 0;
	}
	25%,
				75% {
		-o-transform: perspective(136px) rotateX(0deg);
		opacity: 1;
	}
	90%,
				100% {
		-o-transform: perspective(136px) rotateY(180deg);
		opacity: 0;
	}
}

@-ms-keyframes cssload-fold-thecube {
	0%, 10% {
		-ms-transform: perspective(136px) rotateX(-180deg);
		opacity: 0;
	}
	25%,
				75% {
		-ms-transform: perspective(136px) rotateX(0deg);
		opacity: 1;
	}
	90%,
				100% {
		-ms-transform: perspective(136px) rotateY(180deg);
		opacity: 0;
	}
}

@-webkit-keyframes cssload-fold-thecube {
	0%, 10% {
		-webkit-transform: perspective(136px) rotateX(-180deg);
		opacity: 0;
	}
	25%,
				75% {
		-webkit-transform: perspective(136px) rotateX(0deg);
		opacity: 1;
	}
	90%,
				100% {
		-webkit-transform: perspective(136px) rotateY(180deg);
		opacity: 0;
	}
}

@-moz-keyframes cssload-fold-thecube {
	0%, 10% {
		-moz-transform: perspective(136px) rotateX(-180deg);
		opacity: 0;
	}
	25%,
				75% {
		-moz-transform: perspective(136px) rotateX(0deg);
		opacity: 1;
	}
	90%,
				100% {
		-moz-transform: perspective(136px) rotateY(180deg);
		opacity: 0;
	}
}



/* ======================== */
/* ===== Basket Footer ==== */
/* ======================== */

.footer_information{
    clear: both;
    margin-top: 100px;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.footer_information span{
    margin-bottom: 5px;
    display: block;
}

.footer_information li{
    display: inline-block;
    margin: 0px 5px;
}

.footer_information ul{
   -webkit-padding-start: 0px;
}

/* ==== Encrypted Image ====*/

.secure_image{
   display: none;
}

@media only screen and (min-width : 1250px) {
   .secure_image{
       max-width: 160px;
       opacity: 0.5;
       margin-top: 10px;
       display: inline-block;
   }
}