/*-----------------------------------------------------*/
/** GLOBAL **/

::-moz-selection { background: #26a3d3; color: #fff; }
::selection { background: #26a3d3; color: #fff; }

/* scrollbar */

::-webkit-scrollbar {
    width: 1.2em;
    cursor: pointer;
}

::-webkit-scrollbar-track {
    background: #eee;
}
 
::-webkit-scrollbar-thumb {
    background: #ccc;
    border: solid 2px #eee;
    border-radius: .5em;
}

.smalltext {
    font-size: 1.2em;
}


/*-----------------------------------------------------*/
/** FCSS NAVBAR **/


#FCSS_navbar {
    z-index: 2000;
    position: fixed;
    display: flex;
    overflow: hidden;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 4em;
    padding: 0 4em 0 4em;
    color: #fff;
    font-size: 10px;
    background: #26a3d3;
    box-sizing: border-box;
    /* box-shadow: 0px .5em .5em 0px rgba(0,0,0,.1); */
}

#FCSS_navbar_spacer {
    position: relative;
    display: block;
    height: 4em;
    font-size: 10px;
    margin: 0;
    padding: 0;
}

#FCSS_navbar a {
    color: #fff;
    transition: color .2s ease;
}

#FCSS_navbar a:hover {
    color: #222;
    transition: color 0s ease;
}

#FCSS_navbar .logo,
#FCSS_navbar .categories,
#FCSS_navbar .cart,
#FCSS_navbar #FCSS_search_form .input_text,
#FCSS_navbar #FCSS_search_form .input_submit {
    position: relative;
    display: inline-block;
    font-size: 1.4em;
    line-height: 1em;
}

#FCSS_navbar .cart .wait {
    position: relative;
    display: inline-block;
    width: 3.35em;
    height: 1.4em;
    text-align: center;
}

#FCSS_navbar .cart .wait:before {
    content: '';
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-top: .3em;
    box-sizing: border-box;
    border-radius: 50%;
    border-top: 3px solid #fff;
    border-right: 3px solid transparent;
    animation: navbar_postage_wait_anim .6s linear infinite;
    opacity: 1;
}

@keyframes navbar_postage_wait_anim {
  to {transform: rotate(360deg);}
}


/* logo */

#FCSS_navbar .logo {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 5%;
    min-width: 5em;
    height: 80%;
    margin: 0 1em 0 0;
    text-indent: -999em;
    background: url(images/logo_uproarstore.png) left center no-repeat;
    background-size: contain;
    cursor: pointer;
    transition: opacity .2s ease;
}

#FCSS_navbar .logo:hover {
    opacity: .7;
    transition: opacity 0s ease;
}


/* categories */

#FCSS_navbar .categories {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    width: 70%;
    height: 100%;
    margin: 0 0 0 0;
}

#FCSS_navbar .categories a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 2% 0 2%;
    transition: opacity .3s ease;
}

#FCSS_navbar .categories:hover a {
    opacity: .7;
    transition: opacity .1s ease;
}

#FCSS_navbar .categories a:hover {
    color: #fff;
    opacity: 1;
    transition: opacity .1s ease;
}



/* catdropdown */

#FCSS_navbar .catdropdown {
    position: relative;
    display: inline-block;
    display: none;
    overflow: hidden;
    height: 100%;
    margin: 0 0 0 1em;
    font-size: 1.4em;
}

#FCSS_navbar .catdropdown:after {
    content: "\e82f";
    position: absolute;
    right: .8em;
    top: 55%;
    margin-top: -.5em;
    font-family: 'fontawesome';
    font-size: 1.4em;
    line-height: 1em;
    color: rgba(255,255,255, .7);
    pointer-events: none;
}

#FCSS_navbar .catdropdown select {
    position: relative;
    display: inline-block;
    max-width: 100%;
    margin: 0;
    padding: .5em 2.2em .5em .5em;
    font-size: 1.2em;
    line-height: 1.4em;
    color: inherit;
    background-color: transparent;
    outline: none;
    border: none;
    /* remove the dropdown arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    box-sizing: border-box;
    direction: rtl;
}

#FCSS_navbar .catdropdown select option {
    color: #000;
    font-size: .8em;
    direction: ltr;
}

#FCSS_navbar .catdropdown select option[disabled] {
    color: #aaa;
    background-color: #fafafa;
}



/* right_block */

#FCSS_navbar .right_block {
    position: relative;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    white-space: nowrap;
    height: 100%;
    margin: 0;
}


/* search */

#FCSS_navbar .search {
    position: relative;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    white-space: nowrap;
    height: 100%;
    margin: 0 3em 0 0;
}

#FCSS_navbar #FCSS_search_form .input_text {
	position: relative; 
    display: inline-block; 
    width: 7em;
    height: auto;
    padding: 0;
    margin: 0 .5em 0 0;
	text-align: right;
	color: #9cf0ff;
	background: none; 
    border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

#FCSS_navbar #FCSS_search_form .input_submit {
	position: relative;
    display: inline-block;
    width: 1.4em;
    padding: 0;
    margin: 0;
    text-align: left;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
    opacity: 1;
    transition: opacity .2s ease;
}

#FCSS_navbar #FCSS_search_form .input_text:focus {
	outline: 0;
	color: #fff;
}


#FCSS_navbar #FCSS_search_form .input_text::-webkit-input-placeholder { color: #9cf0ff; opacity: 1; }
#FCSS_navbar #FCSS_search_form .input_text::-moz-placeholder { color: #9cf0ff; opacity: 1; }
#FCSS_navbar #FCSS_search_form .input_text:-ms-input-placeholder { color: #9cf0ff; opacity: 1; }
#FCSS_navbar #FCSS_search_form .input_text:-moz-placeholder { color: #9cf0ff; opacity: 1; }

#FCSS_navbar #FCSS_search_form .input_text:hover::-webkit-input-placeholder { color: #fff; opacity: 1; }
#FCSS_navbar #FCSS_search_form .input_text:hover::-moz-placeholder { color: #fff; opacity: 1; }
#FCSS_navbar #FCSS_search_form .input_text:hover:-ms-input-placeholder { color: #fff; opacity: 1; }
#FCSS_navbar #FCSS_search_form .input_text:hover:-moz-placeholder { color: #fff; opacity: 1; }

#FCSS_navbar #FCSS_search_form .input_text:focus::-webkit-input-placeholder { color: #9cf0ff; opacity: .5; }
#FCSS_navbar #FCSS_search_form .input_text:focus::-moz-placeholder { color: #9cf0ff; opacity: .5; }
#FCSS_navbar #FCSS_search_form .input_text:focus:-ms-input-placeholder { color: #9cf0ff; opacity: .5; }
#FCSS_navbar #FCSS_search_form .input_text:focus:-moz-placeholder { color: #9cf0ff; opacity: .5; }


#FCSS_navbar #FCSS_search_form .input_submit:focus {
    outline: 0;
	color: #222;
}

#FCSS_navbar #FCSS_search_form .input_submit:hover {
	opacity: .8;
    transition: opacity 0s ease;
}

#FCSS_navbar #FCSS_search_form .input_submit:active {
	color: #222;
}



/* cart */

#FCSS_navbar .cart {
    z-index: 10;
    position: relative;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    white-space: nowrap;
    height: 100%;
    cursor: pointer;
}

#FCSS_navbar .cart .indicator {
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    width: 1.4rem;
    height: 1.4rem;
    padding: 0;
    text-align: center;
    font-weight: 500;
    font-size: .9em;
    line-height: 1.4rem;
    letter-spacing: 0;
    color: #fff;
    background-color: #ed4922;
    border-radius: 50%;
    transition: background-color .2s ease, opacity .5s ease;
    opacity: 0;
}

#FCSS_navbar .cart:hover .indicator.on {
    opacity: .8;
    transition: opacity 0s ease;
}

#FCSS_navbar .cart .indicator.on {
    opacity: 1;
}

#FCSS_navbar .cart .indicator.hundred {
    font-size: .8em;
}


#FCSS_navbar .cart .button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    opacity: 1;
    transition: opacity .2s ease;
}

#FCSS_navbar .cart:hover .button {
    opacity: .8;
    transition: opacity 0s ease;
}

#FCSS_navbar .cart .button i {
    font-size: 1.5em;
    vertical-align: middle;
}


/* growl */

#FCSS_navbar .growl {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1em;
    text-align: center;
    color: #fff;
    background: #333;
    pointer-events: none;
    box-sizing: border-box;
    overflow: hidden;
    opacity: 0;
    transition: opacity .5s ease;
}

#FCSS_navbar .growl.visible {
    opacity: 1;
    transition: opacity .2s ease;
    pointer-events: auto;
    cursor: default;
}


#FCSS_navbar .growl .text {
    z-index: 20;
    position: relative;
    vertical-align: middle;
    display: inline-block;
    font-size: 1.8em;
    line-height: 1em;
    padding: 0 .5em .5em .5em;
    margin: 0;
    opacity: 0;
    background: #333;
    transform: translateY(-100%);
    transition: opacity .5s ease, transform .5s ease;
}

#FCSS_navbar .growl.visible .text {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease;
}



/* NAVBAR BREAKPOINTS */

@media screen and (max-width: 1850px){
    
    #FCSS_navbar .catdropdown {
        display: inline-block;
    }
    
    #FCSS_navbar .categories {
        display: none;
    }

    #FCSS_navbar .search {
        
    }
	
}

@media screen and (max-width: 700px){

    #FCSS_navbar .search {
        display: none;
    }
	
}

@media screen and (max-width: 500px){

    #FCSS_navbar {
        padding: 0 1em 0 1em;
    }
	
    #FCSS_navbar .growl {
        text-align: left;
        padding-left: 3em;
    }
}

/* ------------------------------------------------------ */
/** FCSS GLOBAL **/


#FCSS {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: calc(100vh - 4em - 4em );
    margin: 4em 0 0 0;
    padding: 0;
    font-size: 10px;
    color: #222;
    text-align: center;
    box-sizing: border-box;
}

#FCSS.fullheight {
    min-height: calc(100vh - 4em);
}

#FCSS a {
    color: #1892de;
    transition: color .2s ease, opacity .2s ease;
}

#FCSS a:hover {
    color: #222;
    transition: color 0s ease, opacity 0s ease;
}

#FCSS .title_allproducts {
    z-index: 1;
    position: relative;
    display: block;
    margin: -3em 0 -4em 0;
    padding: 2.5em 0 3em 0;
    background: #bbb;
    
    width: 100vw !important;
    max-width: none !important;
    border: none !important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

#FCSS .title_allproducts h2 {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 3.6em;
    line-height: 1.2em;
    font-weight: 500;
    color: #fff;
}

#FCSS .title {
    position: relative;
    display: block;
    margin: 3em 0 0 0;
    padding: 0 0 7em 0;
}

#FCSS .title:before {
    content: '';
    position: relative;
    display: block;
    /*width: 80%;
    max-width: 1000px;*/
    height: 10px;
    margin: 0 auto 4em auto;
    /*background: rgba(0,0,0, .05);*/
}

#FCSS .title:first-child:before {
    display: none;
}

/* add gradient to titles only on all products page (since it avoids first child) */

#FCSS .title:not(:first-child) {
    background: linear-gradient(to bottom, rgba(235,234,235,1) 0%,rgba(235,234,235,0) 100%);
    width: 100vw !important;
    max-width: none !important;
    border: none !important;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

#FCSS .cartview .title:not(:first-child) {
    background: none;
    width: auto !important;
    max-width: 100% !important;
    border: none;
    margin-left: 0;
    margin-right: 0;
}


#FCSS .title h2 {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 3.6em;
    line-height: 1.2em;
    font-weight: 500;
    color: #26a3d3;
}

#FCSS .emptylist {
    position: relative;
    display: block;
    margin: 0;
    padding: 4em 0 5em 0;
    
}

#FCSS .emptylist h3 {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    text-align: center;
    font-size: 2em;
    line-height: 1.2em;
    font-weight: bold;
}


/* button */

#FCSS .button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 0;
    padding: .6em .8em .6em .8em;
    color: #fff;
    font-size: 1.8em;
    line-height: 1em;
    font-weight: 500;
    background-color: #26a3d3;
    border-radius: .2em;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease;
}

#FCSS .button:hover {
    color: #fff;
    background-color: #222;
    transition: color 0s, background-color 0s;
}



/* ------------------------------------------------------ */
/** FCSS ITEM **/
/* used for both listview and singleview */



#FCSS .item {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
    cursor: default;
    box-sizing: border-box;
}

#FCSS .item.unavailable {
    opacity: .5;
    pointer-events: none;
}

#FCSS .item.unavailable:after {
    content: 'Out Of Stock';
    z-index: 1;
    position: absolute;
    display: block;
    top: 30%;
    left: 0;
    width: 100%;
    padding: .5em 0 .5em 0;
    font-size: 1.8em;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: center;
    background: linear-gradient(to right, rgba(0,0,0, 0) 10%, rgba(0,0,0, 1) 50%, rgba(0,0,0, 0) 90%);
    transform: rotate(25deg);
    /*transform: rotate(25deg) skew(25deg);*/
    border-top: solid 1px rgba(255,255,255, .8);
    border-bottom: solid 1px rgba(255,255,255, .8);
    /*box-shadow:0 .5em .2em rgba(0,0,0, .1);  */
}

#FCSS .item .unavailable {
    opacity: .5 !important;
    pointer-events: none !important;
}

#FCSS .item .unavailable:after {
    content: 'Currently Out Of Stock';
    z-index: 1;
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .5em 1em .5em 1em;
    font-size: 1.4em;
    font-weight: 300;
    color: #000;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: .05em;
    text-align: center;
    background: #ccc;
    border-radius: .2em;
}

/*#FCSS .item.onsale {
}

#FCSS .item.onsale:after {
    content: 'On Sale';
    z-index: 1;
    position: absolute;
    display: block;
    top: 30%;
    left: 0;
    width: 100%;
    padding: .5em 0 .5em 0;
    font-size: 2em;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: center;
    background: linear-gradient(to right, rgba(237,73,34, 0) 10%, rgba(237,73,34, 1) 40%, rgba(237,73,34, 1) 60%, rgba(237,73,34, 0) 90%);
    background: linear-gradient(to right, rgba(38,163,211, 0) 10%, rgba(38,163,211, 1) 40%, rgba(38,163,211, 1) 60%, rgba(38,163,211, 0) 90%);
    transform: rotate(25deg);
    border-top: solid 2px rgba(255,255,255, 1);
    border-bottom: solid 2px rgba(255,255,255, 1);
    pointer-events: none; 
}*/



/* images */

#FCSS .item .imagebox {
    z-index: 1;
    position: relative;
    display: block;
    vertical-align: top;
    background-size: contain !important;
}

/* text */

#FCSS .item .textbox {
    position: relative;
    display: block;
    vertical-align: top;
    padding: 0;
    margin: 0;
}

#FCSS .item .textbox .text {
    position: relative;
    display: block;
    overflow: auto;
    height: auto;
    padding: 0 0 0 0;
    margin: 0 0 3em 0;
    color: inherit;
    word-break: normal;
}

#FCSS .item .textbox .text h3 {
    margin: 0 0 .5em 0;
    padding: 0;
    font-size: 2em;
    line-height: 1.2em;
    font-weight: bold;
}

#FCSS .item .textbox .text p {
    margin: 0 0 0 0;
    padding: 0;
    font-size: 1.6em;
    line-height: 1.7em;
}

#FCSS .item .textbox .text strong {
    font-weight: bold !important;
}

#FCSS .item .textbox .addbuttons {
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

/* addbuttons add button */

#FCSS .item .textbox .addbuttons .add {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1px 0 0;
    padding: .7em .7em .6em .7em;
    color: #fff;
    font-size: 1.4em;
    line-height: 1em;
    font-weight: 500;
    background-color: #26a3d3;
    border-radius: .2em;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease;
    white-space: nowrap;
}

#FCSS .item .textbox .addbuttons .add:hover {
    color: #fff;
    background-color: #222;
    transition: color 0s, background-color 0s;
}

/* addbuttons select */

#FCSS .item .textbox .addbuttons .selectbox {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    vertical-align: middle;
    margin: 0 2px 0 0;
    padding: 0;
    background-color: #e5e5e5;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#FCSS .item .textbox .addbuttons .selectbox:after {
    content: "\e82f";
    position: absolute;
    right: .5em;
    top: 50%;
    margin-top: -.5em;
    font-family: 'fontawesome';
    font-size: 1.4em;
    line-height: 1em;
    color: rgba(0,0,0, .5);
    pointer-events: none;
}

#FCSS .item .textbox .addbuttons .selectbox select {
    position: relative;
    display: block;
    max-width: 100%;
    margin: 0;
    padding: .6em 2.4em .7em 1.4em;
    font-size: 1.2em;
    line-height: 1.4em;
    background-color: transparent;
    outline: none;
    border: none;
    /* remove the dropdown arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    box-sizing: border-box;
}

#FCSS .item .textbox .addbuttons .selectbox.select_option {
    flex-shrink: 2;
    background-color: #eee;
}

#FCSS .item .textbox .addbuttons .selectbox:hover {
    background-color: #ddd;
}

#FCSS .item .textbox .addbuttons .selectbox select option {
    background-color: #fafafa;
}

/* addbuttons price */

#FCSS .item .textbox .price {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: .25em .5em 0 0;
    padding: 0;
    color: #222;
    font-size: 2em;
    line-height: 1em;
    font-weight: bold;
}

#FCSS .item .textbox .price span {
    position: relative;
    vertical-align: top;
    font-size: .7em;
    font-weight: inherit;
}

#FCSS .item .textbox .price .multiplier {
    position: absolute;
    vertical-align: top;
    top: 1.7em;
    right: 0;
    width: 200px;
    font-size: 12px;
    font-weight: normal;
    text-align: right;
}

/* addbuttons indicator */

#FCSS .item .textbox .indicator {
    position: relative;
    display: inline-block;
    display: inline-flex;
    flex-shrink: 0;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    width: 1.75em;
    height: 1.75em;
    padding: 0;
    margin: .2em 0 0 -1.75em;
    text-align: center;
    font-weight: 500;
    font-size: 1.4em;
    line-height: 1em;
    letter-spacing: 0;
    color: #fff;
    background-color: #ed4922;
    border-radius: 50%;
    transition: color .2s ease, background-color .2s ease, opacity .3s ease, transform .3s ease, margin .2s ease;
    cursor: default;
    visibility: hidden;
    opacity: 0;
    z-index: auto;
    transform: scale(0, 0);
}

#FCSS .item .textbox .indicator.hundred {
    width: 2.2em;
    height: 2.2em;
    font-size: 1.2em;
}

#FCSS .item .textbox .indicator.on {
    position: relative;
    visibility: visible;
    opacity: 1;
    z-index: auto;
    transform: scale(1,1);
    margin-left: .5em;
}

#FCSS .item .textbox .addbuttons .indicator:hover {
    color: #fff;
    background-color: #222;
    transition: color 0s ease, background-color 0s ease;
}


#FCSS .item .textbox .indicator:before {
    content: '';
    z-index: -1;
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #ed4922;
    border-radius: 50%;
    transform: scale(1, 1);
    opacity: .8;
    pointer-events: none;
}

#FCSS .item .textbox .indicator.animate:before {
    transform: scale(3, 3);
    opacity: 0;
    transition: opacity .5s ease, transform .5s ease;
}



/* ------------------------------------------------------ */
/** FCSS LIST VIEW **/


#FCSS .listview {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 800px;
    margin: 0;
    padding: 3em 0 0 0;
    text-align: center;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 1s ease;
}

#FCSS .listview.visible {
    opacity: 1;
    transition: opacity .3s ease;
}


#FCSS .listview .item {
    vertical-align: bottom;
    width: 90%;
    margin: 0 5% 7em 5%;
    text-align: center;
}

#FCSS .listview .item .imagebox {
    display: inline-block;
    width: 350px;
    height: auto;
    max-width: 100%;
    max-height: 350px;
    padding: 0 0 0 0;
    margin: 0 auto 2em auto;
    text-align: center;
    /*background-color: #eee !important;*/
}

#FCSS .listview .item .imagebox span {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    overflow: hidden;
}

#FCSS .listview .item .imagebox img {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    padding: 0;
    margin: 0 auto;
    border-radius: .5em;
    overflow: hidden;
}

#FCSS .listview .item .imagebox:hover img {
    opacity: .7;
}

#FCSS .item.onsale .imagebox span:after {
    content: "SALE";
	position: absolute;
    display: flex;
    justify-content: center;
    align-items: flex-end;
	left: -3.3em;
	top: -2.8em;
	width: 7em;
	height: 6em;
    padding-bottom: .4em;
    font-size: calc(1.6em + 6 * ((100vw - 350px) / 1000));
    color: #fff;
	line-height: 1em;
	font-weight: 400;
	letter-spacing: .08em;
	background: #ed4922;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
    z-index: 1;
    box-sizing: border-box;
    pointer-events: none;
}

#FCSS .item.onsale .imagebox span:before {
    content: "save $" attr(data-onsale);
	position: absolute;
    display: block;
	left: -4.6em;
	top: 2.5em;
	width: 16em;
	height: auto;
    padding: 1em 0 .4em 0;
    text-align: center;
    font-size: calc(1.2em + 4 * ((100vw - 350px) / 1000));
    color: #fff;
	line-height: 1em;
	font-weight: 300;
	letter-spacing: normal;
	background: rgba(237, 73, 34, .6);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
    z-index: 1;
    box-sizing: border-box;
    pointer-events: none;
}

/* free items */

#FCSS .item.onsale[data-price="0"] .imagebox span:after {
    content: "FREE";
}

#FCSS .item.onsale[data-price="0"] .imagebox span:before {
    display: none;
}


#FCSS .listview .item .textbox .text {
    overflow: hidden;
    height: 8.6em;
    text-align: center;
    margin-bottom: 1.7em;
}

#FCSS .listview .item .textbox .text:after {
    content: "";
    position: absolute;
    bottom: -.2em;
    right: 0;
    width: 10em;
    height: 2.5em;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}

#FCSS .listview .item .textbox .text:hover h3 {
    color: #1892de;
}

#FCSS .listview .item .textbox .text p {
    line-height: 1.5em;
    opacity: .85;
}

#FCSS .listview .item .textbox .addbuttons {
    justify-content: center;
}

@media screen and (max-width: 500px){
    
    #FCSS .listview {
        padding-top: 1em;
    }
    
    #FCSS .listview .title_allproducts {
        padding-top: 3em;
        padding-bottom: 1em;
    }
    
    #FCSS .listview .title {
        padding-bottom: 3em;
    }
}


/*-----------------------------------------------------*/
/** LIST-VIEW BREAKPOINTS **/


/* 2 columns */

@media screen and (min-width: 1000px){
    
    #FCSS .listview {
        width: 1600px;
        max-width: 100%;
    }
	
    #FCSS .listview .item {
        width: 45%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }
	
}


/* 3 columns */

@media screen and (min-width: 1400px){
    
    #FCSS .listview {
        width: 1600px;
        max-width: 100%;
    }
	
    #FCSS .listview .item {
        width: 28%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }
	
}


/* 4 columns */

@media screen and (min-width: 1800px){
    
    #FCSS .listview {
        width: 2300px;
        max-width: 100%;
    }
	
    #FCSS .listview .item {
        width: 20%;
        margin-left: 2.5%;
        margin-right: 2.5%;
    }
	
}


/* 4 columns */

@media screen and (min-width: 2300px){
    
    #FCSS .listview {
        width: 2300px;
        max-width: 100%;
    }
	
    #FCSS .listview .item {
        width: 23%;
        margin-left: 1%;
        margin-right: 1%;
    }
	
}



/*-----------------------------------------------------*/
/** SINGLE VIEW **/



#FCSS .singleview {
    z-index: 1000;
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 4em);
    padding-top: 3em;
    padding-right: 3em;
    padding-bottom: 3em;
    padding-left: 3em;
    text-align: center;
    background: #bbb;
    overflow-x: hidden;
    overflow-y: auto;
    cursor: pointer;
    box-sizing: border-box;
}

#FCSS .singleview .window {
    position: relative;
    display: inline-block;
    width: 100%;
    min-height: 100vh;
    max-width: 1200px;
    padding: 6em;
    background: #fff;
    border-radius: .5em;
    box-sizing: border-box;
    cursor: default;
}

#FCSS .singleview .window .close {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    padding: 2.2em 2.7em 2.2em 2.7em;
    cursor: pointer;
}

#FCSS .singleview .window .close:after {
    content: "\e83c";
    position: relative;
    vertical-align: top;
    color: #bdbdbd;
    font-family: "fontawesome";
    font-size: 2.5em;
    line-height: 1em;
}

#FCSS .singleview .window .close:hover:after {
    color: #000;
}

#FCSS .singleview .window .loader {
    position: fixed;
    opacity: 0;
    z-index: 1000;
    top: 40%;
    left: 50%;
    width: 10%;
    height: 0;
    padding-top: 10%;
    margin: -5% 0 0 -5%;
    background: #fff;
    border: solid 5px #1892de;
    border-radius: 10%;
    pointer-events: none;
    transition: opacity .2s ease;
    
    animation-name: loader-spin;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes loader-spin {
    from { transform:rotate(0deg) scale(1,1); }
    to { transform:rotate(360deg) scale(.2,.2); }
}



/* singleview item */

#FCSS .singleview .item {
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

#FCSS .singleview .item .image_panel {
    order: 1;
    position: relative;
    display: inline-block;
    float: left;
    vertical-align: top;
    width: 500px;
    height: auto;
    min-height: 100%;
    max-width: 45%;
    padding: 0;
    margin: 0 5% 0 0;
    box-sizing: border-box;
}

#FCSS .singleview .item .text_panel {
    order: 2;
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 0;
    margin: 0 0 5em 0;
    box-sizing: border-box;
}

#FCSS .singleview .item .more_panel {
    order: 3;
    position: relative;
    display: inline-block;
    float: right;
    vertical-align: top;
    width: 50%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* images */

#FCSS .singleview .item .image_panel .imagebox {
    position: relative;
    display: block;
    float: none;
    width: 100%;
    height: 0;
    padding: 100% 0 0 0;
    margin: 0;
    border-radius: .3em;
}

#FCSS .singleview .item .image_panel .imagebox .imagepreview,
#FCSS .singleview .item .image_panel .imagebox .image {
    position: absolute;
    display: block;
    top:0; right:0; bottom:0; left: 0;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: none !important;
}

#FCSS .singleview .item .image_panel .imagethumbs {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin: 1em 0 0 0;
    padding: 0;
    text-align: left;
}

#FCSS .singleview .item .image_panel .imagethumbs .image {
    position: relative;
    display: inline-block;
    width: 32%;
    height: 0;
    margin: 0 2% 0 0;
    padding: 32% 0 0 0;
    box-sizing: border-box;
    background: #eee;
    background-size: contain !important;
    background-repeat: none !important;
    cursor: pointer;
    opacity: 0;
    transition: opacity .3s ease, box-shadow .3s ease;
    border-radius: .3em;
    box-shadow: inset 0px 0px 0px 0px #1892de;
}

#FCSS .singleview .item .image_panel .imagethumbs .image:last-child {
    margin-right: 0;
}

#FCSS .singleview .item .image_panel .imagethumbs .image.bgloaded {
    opacity: .8;
}

#FCSS .singleview .item .image_panel .imagethumbs .image.selected {
    box-shadow: inset 0px 0px 0px 2px #1892de; 
    box-shadow-spread: 2px;
    opacity: 1;
}

#FCSS .singleview .item .image_panel .imagethumbs .image:hover {
    opacity: 1;
}


/* text */

#FCSS .singleview  .item .textbox {
    display: block;
    width: auto;
}

#FCSS .singleview  .item .textbox .text h3 {
    font-size: 3em;
    line-height: 1.2em;
}

#FCSS .singleview  .item .textbox .text p {
    margin: 0 0 0 0;
    font-size: 1.6em;
    line-height: 1.7em;
}

#FCSS .singleview  .item .textbox .text strong {
    font-weight: bold !important;
}

#FCSS .singleview .item .textbox .price {
    margin-bottom: 0;
}



/* more text */

#FCSS .singleview  .item .more {
    display: block;
    opacity: 0;
    max-height: 0px;
    transition: opacity .5s ease, max-height 2s ease;
}

#FCSS .singleview  .item .more.open {
    opacity: 1;
    max-height: 300em;
}


#FCSS .singleview  .item .more h2 {
    margin: 0 0 .7em 0;
    padding: 0;
    font-size: 2.4em;
    line-height: 1.2em;
    font-weight: bold;
}

#FCSS .singleview  .item .more h3 {
    margin: 0 0 .5em 0;
    font-size: 2em;
}

#FCSS .singleview  .item .more p {
    margin: 0 0 1em 0;
    padding: 0;
    font-size: 1.6em;
    line-height: 1.7em;
}

#FCSS .singleview  .item .more strong {
    font-weight: bold !important;
}

/* images */

#FCSS .singleview  .item .more img,
#FCSS .singleview  .item .more img.size-thumbnail,
#FCSS .singleview  .item .more img.size-medium,
#FCSS .singleview  .item .more img.size-large,
#FCSS .singleview  .item .more img.size-full,
#FCSS .singleview  .item .more img.size-fullscreen {
	max-width:100%; height:auto;
	}

#FCSS .singleview  .item .more img.size-large,
#FCSS .singleview  .item .more img.size-full {
	width:100% !important;
}

#FCSS .singleview  .item .more img.size-fullscreen {
	width:100% !important; max-width:100%; height:auto !important;
	}	



/* SINGLE VIEW ITEM BREAKPOINTS */

@media screen and (max-width: 900px){

    #FCSS .singleview  .item .more_panel {
        display: block;
        float: none;
        clear: both;
        width: 100%;
    }

    #FCSS .singleview  .item .image_panel {
        margin-bottom: 3em;
    }
}



@media screen and (max-width: 800px){
    
    #FCSS .singleview  .item {
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #FCSS .singleview  .item .text_panel {
        order: 1;
        display: block;
        width: 100%;
        margin: 0 0 3em 0;
    }
    
    #FCSS .singleview  .item .image_panel {
        order: 2;
        display: block;
        float: none;
        width: 500px;
        max-width: 100%;
        height: auto;
        margin: 0 auto 5em auto;
    }
	
    #FCSS .singleview  .item .more_panel {
        order: 3;
        display: block;
        width: 100%;
        margin: 0;
    }
}



@media screen and (max-width: 600px){
    
    #FCSS .singleview {
        height: calc(100vh - 4em);
        padding-top: 0;
        padding-right: 0;
        padding-bottom: 0;
        padding-left: 0;
    }

    #FCSS .singleview .window {
        padding: 3em 2em 3em 2em;
    }
    
    #FCSS .singleview .window .close {
        z-index: 100;
        position: fixed;
        top: calc(4em + 1em);
        right: 2em;
        padding: .5em .8em;
        border-radius: 50%;
        background: rgba(240,240,240, .9);
    }

}



/*-----------------------------------------------------*/
/** CART VIEW **/

#FCSS .cartview {
    position: relative;
    display: block;
    text-align: center;
    padding: 0 4em 0 4em;
}

#FCSS .cartview .title {
    padding-bottom: 3em;
}

#FCSS .cartview .title:before {
    display: none;
}

#FCSS .cartview .cartable {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 40em;
    margin: 0 auto 2em auto;
    text-align: left;
    font-size: 1.4em;
    line-height: 1.7em;
    border-collapse: collapse;
    border: none;
    cursor: default;
    box-sizing: border-box;
}

#FCSS .cartview .cartable tr {
    border-bottom: 1px solid #eee;
}

#FCSS .cartview .cartable tr.solid {
    border-bottom: 1px solid #999;
}

#FCSS .cartview .cartable tr.none {
    border-bottom: none;
}

#FCSS .cartview .cartable th,
#FCSS .cartview .cartable td
{
    vertical-align: top;
    font-size: inherit;
    padding: .5em 1em;
}

#FCSS .cartview .cartable th {
    background: none;
}

#FCSS .cartview .cartable tr.product {
}

#FCSS .cartview .cartable tr.product:hover {
    background: #fafafa;
}

#FCSS .cartview .cartable tr.product.trans_remove {
    opacity: 0;
    transform: scale(0.5, 0.5);
    transition: opacity .4s ease, transform .4s ease;
}

#FCSS .cartview .cartable .name {
    text-align: left;
    width: 100%;
}

#FCSS .cartview .cartable .name span {
    display: block;
    font-size: .8em;
}

#FCSS .cartview .cartable .name .postcode_title {
    display: inline-block !important;
    color: #1892de;
    font-size: inherit !important;
    cursor: pointer;
    transition: color .1s ease;
}

#FCSS .cartview .cartable .name .postcode_title:hover {
    color: #222;
}

@media screen and (max-width: 500px){
    
    #FCSS .cartview .cartable .name .postcode_title {
        font-size: .8em !important;
        line-height: 1.2em;
    }
	
}

#FCSS .cartview .cartable .quantity {
    text-align: center;
}

#FCSS .cartview .cartable .quantity_input {
    display: inline;
    width: 3em;
    text-align: center;
    border: none;
    cursor: pointer;
}

#FCSS .cartview .cartable .quantity_input:focus,
#FCSS .cartview .cartable .quantity_input:hover
{
    background: #ffffc3;
}

#FCSS .cartview .cartable .price {
    position: relative;
    text-align: right;
}

#FCSS .cartview .cartable .price span {
    font-weight: inherit;
}

#FCSS .cartview .cartable .soft {
    color: #aaa;
}

#FCSS .cartview .cartable .total_label {
    font-weight: bold;
}

#FCSS .cartview .cartable .total {
    font-weight: bold;
}

#FCSS .cartview .cartable .remove {
    position: absolute;
    display: inline-block;
    top: .25em;
    left: 100%;
    padding: .3em .5em .3em .7em;
    color: #ddd;
    font-size: inherit;
    white-space: nowrap;
    cursor: pointer;
    transition: color .2s ease, opacity .2s ease;
}

#FCSS .cartview .cartable .remove:before {
    content: "\e83c";
    position: relative;
    font-family: 'fontawesome';
}

#FCSS .cartview .cartable .remove:after {
    content: "remove";
    position: relative;
    font-family: inherit;
    margin-left: .7em;
    color: #f00;
    opacity: 0;
    transition: opacity .2s ease;
}

#FCSS .cartview .cartable .remove:hover {
    color: #f00;
}

#FCSS .cartview .cartable .remove:hover:after {
    opacity: 1;
}

@media screen and (max-width: 740px){ /* remove 'remove' title if screen too small */
    
    #FCSS .cartview .cartable .remove:after {
        display: none;
    }
	
}

#FCSS .cartview .cartable .postcode {
    cursor: pointer;
}

#FCSS .cartview .cartable .postcode:hover {
    color: #1892de;
}

#FCSS .cartview .wait {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 2em;
}

#FCSS .cartview .wait:before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-top: 0;
    box-sizing: border-box;
    border-radius: 50%;
    border-top: 3px solid;
    border-right: 3px solid transparent;
    animation: navbar_postage_wait_anim .6s linear infinite;
    opacity: 1;
}



#FCSS .cartview .main_total {
    position: relative;
    display: inline-block;
    margin: 0 0 1em 0;
    text-align: center;
    font-size: 2.5em;
    color: #222;
    font-weight: 400;
}

#FCSS .cartview .main_total span {
    display: inline-block;
    vertical-align: top;
    font-size: .8em;
    color: inherit;
    font-weight: inherit;
    margin-top: -.05em;
}

#FCSS .cartview .main_total .wait {
    margin: 0 0 0 -1em;
}



#FCSS .cartview .button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 0;
    padding: .6em .8em .6em .8em;
    color: #fff;
    font-size: 1.8em;
    line-height: 1em;
    font-weight: 500;
    background-color: #26a3d3;
    border-radius: .2em;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease;
}

#FCSS .cartview .button:hover {
    color: #fff;
    background-color: #222;
    transition: color 0s, background-color 0s;
}


#FCSS_paypal_button {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    width: 14em;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    transition: opacity .3s ease;
}

#FCSS_paypal_button .button.checkout {
    opacity: 1;
    pointer-events: none;
}

#FCSS_paypal_button:hover .button.checkout {
    color: #fff;
    background-color: #222;
    transition: color 0s, background-color 0s;
}

#FCSS_paypal_button .paypal-button {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 !important;
    opacity: .01 !important;
}

#FCSS_paypal_button.disabled {
    pointer-events: none;
    opacity: .3;
}



#FCSS .cartview .button_help {
    position: relative;
    display: block;
    margin: 1em 0 1em 0;
    color: #aaa;
    font-size: 1.2em;
}



#FCSS .cartview .button.continue {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    margin: 0 0 0 0;
    padding: 1.1em 1em 1.2em 1em;
    color: #fff;
    font-size: 1.2em;
    line-height: 1em;
    font-weight: 500;
    background-color: #aaa;
    border-radius: .2em;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease;
}

#FCSS .cartview .button.continue.margin {
    margin-right: 2%;
}

#FCSS .cartview .button.continue:hover {
    color: #fff;
    background-color: #222;
    transition: color 0s, background-color 0s;
}




#FCSS .cartview .test {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 60vh;
    background: #eee url(images/cow_low.jpg) 0 0 no-repeat;
    background-size: cover;
}

#FCSS .cartview .test:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #eee url(images/cow.jpg) 0 0 no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 0s ease;
}

#FCSS .cartview .test:hover:before {
    opacity: 1;
    transition: opacity .5s ease;
}

#FCSS .cartview .test:after {
    content: " What the Health Screening";
    position: absolute;
    top: 150px;
    left: 20vw;
    width: 600px;
    font-size: 45px;
    font-weight: bold;
    color: #222;
}


/* MODAL - DEFAULT SETTINGS */

#fcss_modal {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0, .5);
    opacity: 0;
    transition: opacity 1s ease;
    backface-visibility: hidden;
}

#fcss_modal.visible {
    opacity: 1;
    transition: opacity .3s ease;
}

#fcss_modal .modal {
    position: relative;
    display: block;
    width: 94%;
    max-width: 700px;
    padding: 5em;
    margin: -5vh 3% 3% 3%;
    background: #fff;
    border-radius: .3em;
    box-shadow: 0px .5em 2em 0px rgba(0,0,0, 0.5);
    opacity: 0;
    transform: translate(0, -3em);
    transition: opacity .3s ease, transform .5s ease;
    box-sizing: border-box;
    backface-visibility: hidden;
}

#fcss_modal.visible .modal {
    opacity: 1;
    transform: translate(0, 0);
}

#fcss_modal .modal .modal_close {
    position: absolute;
    top: 1em;
    right: 1em;
    font-size: 2em;
    line-height: 1em;
    color: #ccc;
}

#fcss_modal .modal .modal_close:hover {
    position: absolute;
    top: 1em;
    right: 1em;
    font-size: 2em;
    line-height: 1em;
    color: #000;
    cursor: pointer;
}



/* MODAL - POSTCODE */

#fcss_modal.postcode .modal {
    max-width: 500px;
}

#fcss_modal.postcode .modal p.enter {
    margin: 0;
}

#fcss_modal.postcode .modal h2 {
    margin: 0 0 .5em 0;
}

#fcss_modal.postcode .modal p.explain {
    margin: .5em 0 1.5em 0;
    font-size: 1.2em;
}

#fcss_modal.postcode .modal .input {
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
    margin: 0;
    border: none;
    border-bottom: solid 1px #ccc;
    text-align: center;
    font-size: 3.6em;
    line-height: 1em;
    width: 4em;
    max-width: 100%;
}

#fcss_modal.postcode .modal .input:focus {
    outline: none;
    border-color: #1892de;
}



/* WELCOME NOTE */

#fcss_welcome_note {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    max-height: 0;
    padding: 0
    margin: 0;
    background: #edf7fb;
    box-sizing:border-box;
    opacity: 1;
    transition: opacity 1s ease, max-height 1s ease;
    pointer-events: none;
    overflow: hidden;
}

#fcss_welcome_note.visible {
    max-height: 100vh;
    opacity: 1;
    transition: opacity 0s ease, max-height 0s ease;
    pointer-events: auto;
}

#fcss_welcome_note .text {
    position: relative;
    display: block;
    width: 960px;
    max-width: 100%;
    padding: 3em 2em 3.5em 2em;
    margin: 0 auto;
    text-align: left;
    box-sizing: border-box;
}

#fcss_welcome_note h2 {
    display: inline;
    vertical-align: bottom;
    font-size: 3em;
    font-weight: bold;
}

#fcss_welcome_note h3 {
    display: inline;
    vertical-align: bottom;
    font-size: 2em;
    line-height: 1.8em;
    font-weight: normal;
}

#fcss_welcome_note a {
    color: #26a3d3;
    font-weight: 500;
}

#fcss_welcome_note a:hover {
    color: #222;
}

#fcss_welcome_note a i {
    position: relative;
    display: inline-block;
    transition: transform .3s ease;
}

#fcss_welcome_note a:hover i {
    transform: translateX(.25em);
}