/* reset.css */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, input, textarea, button {
    margin: 0;
    padding: 0;
    border: 0;
    outline: none !important;
    vertical-align: top;
    background: transparent;
    font-weight: normal;
    line-height: 1.5em;
}

ol, ul {
    list-style: none;
}

a, span {
    vertical-align: baseline;
}

b, strong {
    font-weight: bold;
}

i, dfn {
    font-style: italic;
}

img {
    max-width: 100%;
}



/* ************************************* VARIABLES ************************************* */

/* GRADIENTS */



/* CSS3 TRANSITION */




/* ************************************* GLOBAL THEME STYLES ************************************* */

/* hiding placeholder text on focus in webkit, thanks to http://www.kolodvor.net/2012/03/23/webkit-placeholder-attribute-behavior */
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent;
}


/* clearfix - nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix {
    zoom: 1;
}

    .clearfix:before,
    .clearfix:after {
        content: "";
        display: table;
    }

    .clearfix:after {
        clear: both;
    }


/* utility classes: hidden, float left, float right, etc. */
.hidden,
.visuallyhidden {
    display: none;
}

.left {
    float: left;
}

.right {
    float: right;
}


/* custom selects global styles */
.customselect_wrap {
    position: relative;
    cursor: pointer;
}

    .customselect_wrap select {
        margin: 0;
        padding: 0;
        border: none;
        z-index: 100;
        cursor: pointer;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .customselect_wrap span.customSelect {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


/* hover transitions */
.trs_hover {
    -webkit-transition: 0.6s ease-in-out;
    -moz-transition: 0.6s ease-in-out;
    -ms-transition: 0.6s ease-in-out;
    -o-transition: 0.6s ease-in-out;
    transition: 0.6s ease-in-out;
}

    .trs_hover:hover {
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -ms-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }



/* ************************************* TYPOGRAPHY ************************************* */




body {
    font-family: arial, Helvetica, sans-serif;
    font-size: 13px;
    color: #888888;
}


/* HEADINGS */



.column_center h1,
.column_center h2,
.column_center h3,
.column_center h4,
.column_center h5,
.column_center h6 {
    margin: 15px 0;
    padding: 0 0 5px 0;
    border-bottom: 2px solid #dddddd;
    font-family: Good Times, Good Times;
    font-weight: bold;
    font-size: 19px;
    color: #d20505;
    text-transform: uppercase;
}

.column_center h2,
.column_center h3,
.column_center h4 {
    font-size: 14px;
}

.column_center h5,
.column_center h6 {
    font-size: 12px;
}

.column_center .page_heading {
    margin: 0;
    padding: 0 0 5px 0;
    border-bottom: 2px solid #dddddd;
    font: bold 19px Good Times;
    color: #d20505;
    text-transform: uppercase;
}

    .column_center .page_heading a {
        float: right;
        text-transform: none;
    }


/* PARAGRAPHS */
p {
    margin: 15px 0 1px 0;
    padding: 0;
}


/* LISTS */
.column_center ul {
    list-style-type: square;
    list-style-position: inside;
}

.column_center ol {
    list-style-type: decimal;
    list-style-position: inside;
}


/* LINKS */
a {
    color: #222222;
    text-decoration: none;
}

    a:hover, a:focus {
        color: #d20505;
    }


/* PRODUCT NAME */
.product_name {
    font-size: 14px;
    color: #222222;
}

    .product_name a {
        font-weight: bold;
        color: #222222;
    }

        .product_name a:hover {
            color: #d20505;
        }


/* PRODUCT DESCRIPTION */
.product_desc {
    font-size: 12px;
    color: #aaaaaa;
}


/* PRODUCT PRICE */
.money {
    font-weight: bold;
    color: #d20505;
}

.compare-at-price {
    text-decoration: line-through;
}


/* RTE */
.rte {
    margin-top: 15px;
    margin-bottom: 15px;
    color: inherit;
}

    .rte a {
        color: inherit;
        text-decoration: underline;
    }

        .rte a:hover {
            text-decoration: none;
        }

    .rte h1 {
        font-size: 19px;
    }

    .rte h2 {
        font-size: 17px;
    }

    .rte h3 {
        font-size: 16px;
    }

    .rte h4 {
        font-size: 14px;
    }

    .rte h5 {
        font-size: 13px;
    }

    .rte h6 {
        font-size: 12px;
    }

    .rte img {
        margin-top: 15px;
        margin-bottom: 15px;
    }



/* ************************************* FORMS ************************************* */

label {
    font-weight: bold;
    font-size: 13px;
}

select,
select.form-control,
textarea,
textarea.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="telephone"] {
    padding: 6px;
    border: 1px solid #dddddd;
    font: normal 13px 'Arial';
    color: #888888;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    box-shadow: none;
    text-align:inherit;
}

    select,
    select.form-control {
        padding: 8px 3px;
    }

    textarea,
    textarea.form-control {
        min-width: 100%;
        max-width: 100%;
        min-height: 100px;
    }

.form-control:focus {
    border-color: #aaa;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #ddd;
}


.form-group {
    vertical-align: top !important;
    margin-top: 15px;
    margin-bottom: 0;
}


/* HORIZONTAL FORMS */
.form-horizontal {
}

    .form-horizontal label {
        padding-top: 0 !important;
        text-align: right;
        line-height: 34px;
    }

    .form-horizontal select {
        width: 100%;
    }

.action_bottom span.note {
    margin-left: 5px;
}

    .action_bottom span.note a {
        margin-left: 5px;
    }



/* ************************************* ALERT ************************************* */

.alert {
    margin: 15px 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

    .alert > p,
    .alert > ul,
    .alert > ol {
        list-style-type: none;
        margin: 0;
    }

        .alert > p + p,
        .alert > ul + ul {
            margin: 10px 0 0 0;
        }



/* ************************************* BUTTONS ************************************* */

.btn,
.btn a,
.btn-info,
.btn-primary {
    padding: 7px 9px;
    background: #565656;
    border-color: #565656;
    font-weight: bold;
    font-size: 13px;
    color: #ffffff !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

.btn-cart {
    background: #333333;
    border-color: #000000;
}

.btn:hover,
.btn:focus,
.btn:hover a,
.btn:focus a,
.btn-info:hover,
.btn-info:focus,
.btn-primary:hover,
.btn-primary:focus {
    background: #333333;
    border-color: #333333;
}

.btn-cart:hover {
    background: #d20505;
    border-color: #000000;
}



/* ************************************* GLOBAL LAYOUT ************************************* */

html, body {
    height: 100%;
    background: #333333;
}

#wrapper1 {
    overflow: hidden;
}

#wrapper2 {
    height: 100%;
    padding: 30px 0 0 0;
    background: #333333;
}

#wrapper3 {
    background: #ffffff url('../images/body_bg.jpg') no-repeat 50% 0;
}

.container {
    padding: 0;
}



#main {
    background: #ffffff;
    min-height :400px;

}



.template-index #main {
    margin: 10px 0 0 0;
    background: none;
}


#main_content,
.column .widget {
    margin-bottom: 0px !important;
}



/* ************************************* SIDEBAR CONFIGURATION ************************************* */

/* NO SIDEBAR */
.sidebar_none {
}


/* LEFT SIDEBAR */
.sidebar_left {
}

    .sidebar_left .column_center {
        width: 100%;
        float:left;
    }

        .sidebar_left .column_center #main_content {
            margin: 0 0 0 22%;
          
        }

    .sidebar_left .column_left {
        margin-left: -100%;
        width: 23%;
    }


/* RIGHT SIDEBAR */
.sidebar_right {
}


/* BOTH SIDEBARS */
.sidebar_both {
}

    .sidebar_both .column_center {
        width: 100%;
    }

        .sidebar_both .column_center #main_content {
            margin: 0 25%;
        }

    .sidebar_both .column_left {
        margin-left: -100%;
    }

    .sidebar_both .column_right {
        margin-left: -25%;
    }


/* NOSIDEBAR PAGES */
.sidebar_off .column_center #main_content {
    margin: 0;
}



/* ************************************* HEADER ************************************* */

#header {
}

    #header .container {
        padding-bottom: 0px;
        position: relative;
    }


#logo {
    padding: 0px 0 0 0;
    text-transform: uppercase;
}

    #logo a {
        display: inline-block;
    }

        #logo a span.logo_name {
            display: block;
            font: italic 800 85px/1em 'Open Sans';
            color: #333333;
            letter-spacing: -5px;
        }

            #logo a span.logo_name:first-letter {
                color: #d20505;
            }

        #logo a span.logo_slogan {
            display: block;
            margin: -5px 0 0 15px;
            font: italic 800 14px/1em Arial, Helvetica, sans-serif;
            color: #777777;
        }

            #logo a span.logo_slogan .wrap-2 {
                color: #d20505;
            }

        #logo a span {
            -webkit-transition: 0.25s ease-in-out;
            -moz-transition: 0.25s ease-in-out;
            -ms-transition: 0.25s ease-in-out;
            -o-transition: 0.25s ease-in-out;
            transition: 0.25s ease-in-out;
        }

        #logo a:hover span {
            color: #d20505;
        }


.header_user {
    width: 52px;
    height: 50px;
    display: block;
    border: 1px solid #565656;
    border-width: 0 1px;
    text-align: center;
    position: absolute;
    left: 0;
    top: -50px;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

    .header_user:hover {
        background: #000000;
    }

    .header_user i {
        font-size: 18px;
        line-height: 49px;
        color: #ffffff;
    }


.header_currency {
    width: 75px;
    height: 50px;
    border: 1px solid #565656;
    border-width: 0 1px;
    position: absolute;
    right: 0;
    top: -50px;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
}

    .header_currency:hover {
        background: #000000;
    }

    .header_currency span.customSelect {
        width: 75px;
        height: 50px;
        padding: 0 0 0 10px;
        line-height: 49px;
    }

        .header_currency span.customSelect span {
            color: #ffffff;
        }

    .header_currency i {
        font-size: 23px;
        color: #d20505;
        position: absolute;
        right: 10px;
        top: 11px;
        z-index: 1;
    }



    .header_currency #currencies option {
    }

.header_cart {
    height: 50px;
    display: inline-block;
    border-left: 1px solid #565656;
    position: absolute;
    right: 75px;
    top: -50px;
}

    .header_cart a {
        height: 50px;
        display: block;
        padding: 0 10px;
        color: #ffffff;
        line-height: 49px;
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -ms-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

        .header_cart a:hover {
            background: #000000;
        }

        .header_cart a i {
            margin: 0 10px 0 0;
            font-size: 18px;
            color: #d20505;
            line-height: 47px;
        }

        .header_cart a span {
        }

            .header_cart a span.cart-total-items {
            }

            .header_cart a span.count {
                margin: 0 4px 0 0;
            }


.custom_header1 {
    padding: 23px 0 0 0;
    cursor: default;
}

    .custom_header1 i {
        width: 47px;
        height: 47px;
        display: block;
        float: left;
        margin: 0 5px 0 0;
        border: 3px solid #c0c0c0;
        font-size: 30px;
        line-height: 43px;
        color: #c0c0c0;
        text-align: center;
        position: relative;
        top: 3px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -ms-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    .custom_header1:hover i {
        border-color: #000000;
        color: #ffffff;
    }

    .custom_header1 h3 {
        font: bold 15px Good Times;
        color: #d20505;
        text-transform: uppercase;
        text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
    }

        .custom_header1 h3 span {
            margin: 0 0 0 5px;
            font: bold 24px Good Times;
            color: #000000;
        }

    .custom_header1 h4 {
        font: bold 13px Good Times;
        color: #ffffff;
        text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    }


.header_search {
    margin: 8px 0 0 0;
}

    .header_search #search-field {
        width: 100%;
        height: 44px;
        float: left;
        padding: 0 54px 0 10px;
        background: #ffffff;
        border: 1px solid #c0c0c0;
        border-right: none;
    }

    .header_search #search-submit {
        width: 44px;
        height: 44px;
        float: left;
        margin: 0 0 0 -44px;
        background: #333333;
        text-align: center;
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -ms-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

        .header_search #search-submit i {
            font-size: 25px;
            line-height: 44px;
            color: #ffffff;
        }

        .header_search #search-submit:hover {
            background: #d20505;
        }



/* ************************************* NAVIGATION ************************************* */

#navigation {
    background: #d80505; /* Old browsers */
    background: -webkit-linear-gradient(top, #d80505 0%,#a50101 100%); /* Chrome10+,Safari5.1+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d80505), color-stop(100%,#a50101)); /* Chrome,Safari4+ */
    background: -moz-linear-gradient(top, #d80505 0%, #a50101 100%); /* FF3.6+ */
    background: -ms-linear-gradient(top, #d80505 0%,#a50101 100%); /* IE10+ */
    background: -o-linear-gradient(top, #d80505 0%,#a50101 100%); /* Opera 11.10+ */
    background: linear-gradient(to bottom, #d80505 0%,#a50101 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d80505', endColorstr='#a50101',GradientType=0 ); /* IE6-8 */
}

    #navigation .container {
    }

.sf-menu {
}

    .sf-menu li {
        position: relative;
    }

    .sf-menu > li {
        float: left;
        border: 1px solid #333333;
        border-width: 0 1px;
    }

        .sf-menu > li + li {
            border-width: 0 1px 0 0;
        }

        .sf-menu > li > a {
            height: 60px;
            display: block;
            padding: 0 15px;
            font: bold 15px/60px Good Times;
            color: #ffffff;
            text-transform: uppercase;
            position: relative;
            z-index: 10;
            -webkit-transition: 0.25s ease-in-out;
            -moz-transition: 0.25s ease-in-out;
            -ms-transition: 0.25s ease-in-out;
            -o-transition: 0.25s ease-in-out;
            transition: 0.25s ease-in-out;
        }

        .sf-menu > li:before {
            content: '';
            width: 100%;
            height: 0;
            display: block;
            background: #000000;
            position: absolute;
            left: 0;
            top: 0;
            z-index: 0;
            -webkit-transition: all 0.15s ease;
            -moz-transition: all 0.15s ease;
            -ms-transition: all 0.15s ease;
            -o-transition: all 0.15s ease;
            transition: all 0.15s ease;
        }

        .sf-menu > li > a:after {
            content: '';
            width: 100%;
            height: 0;
            display: block;
            background: #a50101;
            position: absolute;
            left: 0;
            bottom: 0;
            z-index: 1;
            -webkit-transition: all 0.6s ease;
            -moz-transition: all 0.6s ease;
            -ms-transition: all 0.6s ease;
            -o-transition: all 0.6s ease;
            transition: all 0.6s ease;
        }


        .sf-menu > li.active > a,
        .sf-menu > li:hover > a {
        }

        .sf-menu > li.active:before,
        .sf-menu > li:hover:before {
            height: 60px;
        }

        .sf-menu > li.active > a:after,
        .sf-menu > li:hover > a:after {
            height: 7px;
        }


    .sf-menu ul {
        width: 180px !important;
        position: absolute;
        left: -1px;
        top: 60px;
        z-index: 1000;
    }

        .sf-menu ul li {
            border: 1px solid #000000;
        }

            .sf-menu ul li + li {
                border-top: none;
            }

            .sf-menu ul li a {
                display: block;
                padding: 7px 15px;
                background: #333333;
                font-weight: bold;
                color: #ffffff;
                -webkit-transition: 0.25s ease-in-out;
                -moz-transition: 0.25s ease-in-out;
                -ms-transition: 0.25s ease-in-out;
                -o-transition: 0.25s ease-in-out;
                transition: 0.25s ease-in-out;
            }

        .sf-menu ul > li a:hover,
        .sf-menu ul > li.active a {
            background: #000000;
            color: #d20505;
        }

.hidden-lg {
    width: 100%;
    height: 60px;
    padding: 19px 15px;
    background: #000000;
    border: none;
    font: bold 15px Good Times;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



/************************************* NIVOSLIDER *************************************/

.nivoSlider {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

    .nivoSlider img {
        max-width: none;
        position: absolute;
        top: 0;
        left: 0;
    }

.nivo-main-image {
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

.nivoSlider a.nivo-imageLink {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    z-index: 6;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    filter: alpha(opacity=0);
    opacity: 0;
}

.nivo-slice {
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    z-index: 5;
}

.nivo-box {
    display: block;
    overflow: hidden;
    position: absolute;
    z-index: 5;
}

    .nivo-box img {
        display: block;
    }

.nivoSlider > a,
.nivoSlider > img,
.caption_hidden {
    display: none;
}


.slider_wrap1 {width: 800px;height: 426px;float: left;padding: 0 1px 0 0;position: relative;z-index: 1;}
.slider_wrap2 {width: 100%;height: 100%;background: #333333;position: relative;z-index: 1;}
.nivoSlider {
}
.nivoSlider {}

.nivo-caption {display: none !important;}

.nivo-directionNav a {width: 39px;height: 74px;display: block;margin: -37px 0 0 0;background: #ffffff;font-size: 27px;color: #222222;text-align: center;position: absolute;top: 50%;z-index: 9;cursor: pointer;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=40);
opacity: 0.4;

-webkit-transition: 0.25s ease-in-out;
   -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
     -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;

}
.nivo-directionNav a:hover {
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
opacity: 1;
}
.nivo-directionNav a span {display: none;}
.nivo-directionNav a i {line-height: 74px;}
.nivo-prevNav {left: 0;}
.nivo-nextNav {right: 0;}


.nivo-controlNav {width: 100%;text-align: center;position: absolute;left: 0;bottom: 0;z-index: 10;}
.nivo-controlNav a {display: inline-block;vertical-align: top;cursor: pointer;}
.nivo-controlNav a + a {margin: 0 0 0 5px;}
.nivo-controlNav a span {display: none;}
.nivo-controlNav a i {display: inline-block;}
.nivo-controlNav a:hover {}
.nivo-controlNav a.active {cursor: default;}



/* ************************************* SHOWCASE ************************************* */
#showcase {}

.custom_showcase1 {width: 370px;height: 426px;float: left;}
.custom_showcase1 a {width: 100%;height: 100%;display: block;position: relative;}
.custom_showcase1 a div {width: 100%;height: 100%;padding: 30px;position: absolute;left: 0;top: 0;z-index: 10;}
.custom_showcase1 a div h2 {padding: 0 0 0 150px;font: bold 124px/1em Arial, Helvetica, sans-serif;color: #ffffff;text-transform: lowercase;letter-spacing: -7px;}
.custom_showcase1 a div h3 {margin: -47px 0 0 20px;font: bold 124px/1em Arial, Helvetica, sans-serif;color: #ffffff;text-transform: lowercase;letter-spacing: -7px;}
.custom_showcase1 a div h4 {overflow: hidden;margin: -20px 0 0 14px;}
.custom_showcase1 a div h4 span {vertical-align: top;float: left;margin: -7px 10px 0 0;font: bold 48px/1em Arial, Helvetica, sans-serif;color: #ffffff;text-transform: lowercase;letter-spacing: -2px;}
.custom_showcase1 a div h4 span + span {margin: 0;font: bold 84px/1em Arial, Helvetica, sans-serif;color: #d20505;text-transform: uppercase;letter-spacing: -5px;}
.custom_showcase1 a div h5 {font: bold 13px/18px Arial, Helvetica, sans-serif;color: #888888;}
.custom_showcase1 a div h6 {padding: 33px 0 0 0;font: bold 19px/1em Arial, Helvetica, sans-serif;color: #d20505;text-transform: uppercase;}
.custom_showcase1 a div h6 i {margin: 0 0 0 5px;font-size: 25px;color: #ffffff;position: relative;top: -4px;}

.custom_showcase1 a:after {content: '';width: 100%;height: 100%;display: block;background: #000000;position: absolute;left: 0;top: 0;z-index: 0;
opacity: 0;
filter: alpha(opacity=0);
-webkit-transition: all 0.15s ease;
   -moz-transition: all 0.15s ease;
    -ms-transition: all 0.15s ease;
     -o-transition: all 0.15s ease;
        transition: all 0.15s ease;
}

.custom_showcase1 a:hover:after {
opacity: 0.5;
filter: alpha(opacity=50);
}

.custom_showcase1 a:hover h6 {color: #ffffff;
-webkit-transition: all 0.6s ease;
   -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
     -o-transition: all 0.6s ease;
        transition: all 0.6s ease;
}



#showcase .row {
    margin: 0;
    padding: 5px 0 0 0;
}

#showcase .row0 {
    margin: 0;
    padding: 5px 0 0 0;
}

.custom_showcase {
    width: 389px;
    float: left;
    margin: 0 1px 0 0;
}

    .custom_showcase a {
        display: block;
        background: #222222;
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -ms-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

        .custom_showcase a div {
            padding: 12px 30px 12px 20px;
            position: relative;
        }

            .custom_showcase a div h3 {
                font: bold 16px Good Times;
                color: #ffffff;
                text-transform: uppercase;
            }

            .custom_showcase a div h4 {
                font: bold 16px Good Times;
                color: #d20505;
                text-transform: uppercase;
            }

            .custom_showcase a div i {
                margin: -25px 0 0 0;
                font-size: 50px;
                color: #565656;
                position: absolute;
                right: 10px;
                top: 50%;
            }

/********** Gallery ************/
#showcase .row_Gallery {
    margin: 0;
    padding: 5px 0 0 15px;
}

.custom_showcase_Gallery {
    width: 275px;
    float: left;
    margin: 0 1px 0 0;
    margin-right: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
}

    .custom_showcase_Gallery a {
        display: block;
        background: #222222;
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -ms-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

        .custom_showcase_Gallery a div {
            padding: 12px 30px 12px 20px;
            position: relative;
        }

            .custom_showcase_Gallery a div h3 {
                font: bold 14px Good Times;
                color: #ffffff;
                text-transform: uppercase;
                height: 25px;
            }

            .custom_showcase_Gallery a div h4 {
                font: bold 16px Good Times;
                color: #d20505;
                text-transform: uppercase;
            }

            .custom_showcase_Gallery a div i {
                margin: -25px 0 0 0;
                font-size: 50px;
                color: #565656;
                position: absolute;
                right: 10px;
                top: 50%;
            }



/**************** Players ****************/

#showcase .row_Players {
    margin: 0;
    padding: 5px 0 0 15px;
}

.custom_showcase_Players {
    width: 280px;
    float: left;
    margin: 5px 5px 5px 5px;
}

    .custom_showcase_Players a {
        display: block;
        background: #222222;
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -ms-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

        .custom_showcase_Players a div {
            padding: 12px 30px 12px 20px;
            position: relative;
        }

            .custom_showcase_Players a div h3 {
                font: bold 14px Good Times;
                color: #ffffff;
                text-transform: uppercase;
                height: 25px;
            }

            .custom_showcase_Players a div h4 {
                font: bold 16px Good Times;
                color: #d20505;
                text-transform: uppercase;
            }

            .custom_showcase_Players a div i {
                margin: -25px 0 0 0;
                font-size: 50px;
                color: #565656;
                position: absolute;
                right: 10px;
                top: 50%;
            }






.custom_showcase3 a,
.custom_showcase5 a {
    background: #333333;
}

.custom_showcase2 {
}

.custom_showcase3 {
}

.custom_showcase4 {
}

.custom_showcase5 {
    width: 291px;
    margin: 0;
}

.custom_showcase a:hover {
    background: #000000;
}

    .custom_showcase a:hover div i {
        color: #ffffff;
    }



/* ************************************* BOTTOM ************************************* */

#bottom {
    background: #333333;
}

    #bottom .container {
    }

    #bottom .row {
    }

    #bottom .custom_footer {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #bottom .custom_footer0 {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #bottom .custom_footer > div {
        min-height: 195px;
        padding: 0 0 0 30px;
        border-left: 1px solid #777777;
    }

    #bottom .custom_footer0 > div {
        min-height: 195px;
        padding: 0 0 0 30px;
        border-left: 1px solid #777777;
    }

    #bottom .custom_footer h3 {
        margin: 0;
        padding: 15px 0 0 0;
        font: bold 14px Good Times;
        color: #d20505;
        text-transform: uppercase;
    }

    #bottom .custom_footer0 h3 {
        margin: 0;
        padding: 15px 0 0 0;
        font: bold 14px Good Times;
        color: #d20505;
        text-transform: uppercase;
    }

    #bottom .custom_footer ul {
        padding: 0 0 12px 0;
    }

    #bottom .custom_footer0 ul {
        padding: 0 0 12px 0;
    }

    #bottom .custom_footer ul li {
        padding: 5px 0 0 5px;
    }

    #bottom .custom_footer0 ul li {
        padding: 5px 0 0 5px;
        float: left;
    }

    #bottom .custom_footer ul li a {
        font-weight: bold;
        color: #999999;
    }

        #bottom .custom_footer ul li.active a,
        #bottom .custom_footer ul li a:hover {
            color: #ffffff;
        }

    #bottom .custom_footer1 {
    }

    #bottom .custom_footer2 {
    }

    #bottom .custom_footer3 {
    }

        #bottom .custom_footer3 ul {
        }

            #bottom .custom_footer3 ul li {
            }

                #bottom .custom_footer3 ul li a {
                }

                    #bottom .custom_footer3 ul li a i {
                        font-size: 18px;
                        margin: 0 7px 0 0;
                        color: #ffffff;
                    }

                    #bottom .custom_footer3 ul li a span {
                        font-weight: bold;
                    }

    #bottom .custom_footer4 ul li {
        font-weight: bold;
    }

        #bottom .custom_footer4 ul li.custom_footer4-company {
            color: #d20505;
        }

        #bottom .custom_footer4 ul li.custom_footer4-address {
            color: #ffffff;
        }

        #bottom .custom_footer4 ul li.custom_footer4-phone {
            font-weight: normal;
            font-size: 16px;
            color: #999999;
        }

        #bottom .custom_footer4 ul li.custom_footer4-email a {
            color: #ffffff;
        }

            #bottom .custom_footer4 ul li.custom_footer4-email a:hover {
                color: #d20505;
            }



/* ************************************* FOOTER ************************************* */

#footer {
    border-top: 1px solid #777777;
}

    #footer .copyright {
        padding: 25px 0;
        font-weight: bold;
        color: #ffffff;
    }

        #footer .copyright a {
            font-weight: bold;
            color: #d20505;
        }

            #footer .copyright a:hover {
                color: #ffffff;
            }



/* ************************************* BREADCRUMBS ************************************* */

.breadcrumb {
    margin: 30px 0 15px 0;
    background: #dddddd;
    text-transform: uppercase;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

    .breadcrumb > li + li:before {
        color: #333333;
    }



/* ************************************* COLLECTION page ************************************* */

ul.tags {
    margin: 15px 0;
    list-style-type: none;
}

    ul.tags li {
        float: left;
    }

        ul.tags li + li {
            margin: 0 0 0 5px;
        }

        ul.tags li a {
            display: block;
            padding: 5px 10px;
            background: #dddddd;
            color: #222222;
            -webkit-transition: 0.25s ease-in-out;
            -moz-transition: 0.25s ease-in-out;
            -ms-transition: 0.25s ease-in-out;
            -o-transition: 0.25s ease-in-out;
            transition: 0.25s ease-in-out;
        }

            ul.tags li a:hover,
            ul.tags li.active a {
                background: #333333;
                color: #ffffff;
            }


.collection_info {
}

    .collection_info .collection_img {
        text-align: center;
    }

    .collection_info .collection_desc .rte {
        margin: 0;
    }



/* ************************************* PRODUCT LISTING ************************************* */

#main_content .product {
    margin: 30px 0 0 0;
}

    #main_content .product .product_img {
        background: #ffffff;
    }

        #main_content .product .product_img a {
            display: block;
            text-align: center;
        }

        #main_content .product .product_img .product_price {
            display: inline-block;
            padding: 3px 50px 3px 20px;
            background: #d20505;
            cursor: default;
        }

            #main_content .product .product_img .product_price .money {
                margin: 0 5px 0 0;
                font-size: 22px;
                color: #ffffff;
            }

            #main_content .product .product_img .product_price .compare-at-price {
                font-size: 15px;
            }

    #main_content .product .product_info {
        padding: 20px;
        background: #565656;
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -ms-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

        #main_content .product .product_info:hover {
            background: #333333;
        }

    #main_content .product .product_name {
        margin: -5px 0 0 0;
    }

        #main_content .product .product_name a {
            color: #ffffff;
        }

            #main_content .product .product_name a:hover {
                text-decoration: underline;
            }

    #main_content .product .product_desc {
        padding: 5px 0 0 0;
        cursor: default;
    }

    #main_content .product .product_links {
        padding: 15px 0 0 0;
    }

        #main_content .product .product_links form {
            display: inline-block;
        }

        #main_content .product .product_links a.btn {
            background: none;
            border-color: transparent;
        }

        #main_content .product .product_links .btn i {
            margin: 0 0 0 5px;
            font-size: 17px;
        }


.template-index .page_heading {
    margin: 30px 0 0 0;
    padding: 15px 15px 18px 15px;
    background: #ffffff;
    border: none;
    position: relative;
}

    .template-index .page_heading:after {
        content: '';
        width: 100%;
        height: 2px;
        display: block;
        background: #dddddd;
        position: absolute;
        left: 0;
        bottom: 3px;
    }



/* ************************************* PAGINATION ************************************* */

#pagination {
    display: inline-block;
    overflow: hidden;
    margin: 30px 0 0 0;
    border: 1px solid #dddddd;
    border-width: 1px 0 0 1px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

    #pagination span {
        display: block;
        float: left;
        border: 1px solid #dddddd;
        border-width: 0 1px 1px 0;
    }

        #pagination span a,
        #pagination span.current {
            display: block;
            padding: 7px 10px;
            color: #222222;
        }

            #pagination span a:hover {
                background: #eee;
                color: #d20505;
            }

        #pagination span.current {
            font-weight: bold;
            color: #d20505;
            cursor: default;
        }



/* ************************************* SIDEBAR WIDGETS ************************************* */

.column .widget {
}

    .column .widget h3.widget_header {
        margin: 0;
        padding: 0 0 5px 0;
        border-bottom: 2px solid #dddddd;
        font: bold 19px Good Times;
        color: #d20505;
        text-transform: uppercase;
    }


    /* LINKS LIST */
    .column .widget ul.list {
        border-bottom: 1px solid #dddddd;
    }

        .column .widget ul.list li {
            padding: 10px 0;
        }

            .column .widget ul.list li + li {
                border-top: 1px solid #dddddd;
            }


/* SIDEBAR PRODUCTS LISTING */
.column .product {
    overflow: hidden;
    padding: 15px 0;
    border-bottom: 1px solid #dddddd;
}

    .column .product .product_img {
        width: 110px;
        float: left;
        margin: 0 10px 0 0;
    }

    .column .product .product_name {
    }

    .column .product .product_price {
        display: block;
        padding: 5px 0 0 0;
        font-size: 20px;
    }



.widget__collections {
}

    .widget__collections ul {
    }

        .widget__collections ul li {
        }

            .widget__collections ul li a {
                font-weight: bold;
            }



/* ************************************* SEARCH RESULTS PAGE ************************************* */

#searchresults {
    margin: 0;
}

    #searchresults .search-form {
        margin: 15px 0 0 0;
    }

        #searchresults .search-form input {
            width: 100%;
            float: left;
            padding: 0 34px 0 10px;
        }

        #searchresults .search-form button {
            width: 34px;
            height: 34px;
            float: left;
            margin: 0 0 0 -34px;
            background: none;
            border: none;
            font-size: 20px;
            color: #222222;
        }

            #searchresults .search-form button:hover {
                color: #d20505;
            }

            #searchresults .search-form button i {
                line-height: 32px;
            }

    #searchresults h3 {
        margin: 0;
        padding: 0;
    }

    #searchresults ol {
        list-style-type: none;
        padding: 15px 0 0 0;
        border-bottom: 1px solid #dddddd;
    }

        #searchresults ol li {
            overflow: hidden;
            margin: 0;
            padding: 15px 0;
            border-top: 1px solid #dddddd;
        }

            #searchresults ol li .search-result_image {
                float: left;
                margin-right: 15px;
            }

            #searchresults ol li .search-result_container {
                padding: 15px 0 0 0;
            }



/* ************************************* PRODUCT PAGE ************************************* */

.product_wrap {
    padding: 6px 0 0 0;
}

#product_image-container {
    overflow: hidden;
}

.product_wrap .bxslider {
    margin: 0;
}

    .product_wrap .bxslider li {
    }

        .product_wrap .bxslider li a {
        }

.product_image .bx-wrapper {
    overflow: hidden;
    border: 1px solid #dddddd;
}



.product_wrap #bx-pager a {
    width: 105px;
    overflow: hidden;
    margin: 15px 15px 0 0;
    border: 1px solid #dddddd;
}


.product_wrap .product_name {
    margin: -4px 0 0 0;
    font-weight: bold;
    font-size: 16px;
}

.product_wrap .product-price {
    padding: 0;
}

    .product_wrap .product-price .money {
        font: normal 19px 'Arial';
    }

    .product_wrap .product-price .compare-at-price {
        margin: 0 0 0 10px;
        color: #999999;
    }

.product_wrap .variants-wrapper {
    padding: 15px 0 0 0;
}

    .product_wrap .variants-wrapper label {
        margin-right: 10px;
    }

.product_wrap #purchase {
}

    .product_wrap #purchase label {
        display: inline-block;
        margin: 0;
        padding: 0 !important;
        line-height: 37px;
    }

    .product_wrap #purchase #quantity {
        width: 50px;
        height: 37px;
        display: inline-block;
        margin: 0 10px;
        padding: 0 10px;
        outline: none;
        text-align: center;
    }

    .product_wrap #purchase #add-to-cart {
        width: auto;
        height: 37px;
        padding: 9px 15px 9px 15px;
    }

        .product_wrap #purchase #add-to-cart i {
            vertical-align: middle;
            margin: 0 5px 0 0;
            font-size: 15px;
            line-height: 1.5em;
            position: relative;
            top: -2px;
        }


.product_wrap .product_details {
    margin: 15px 0 0 0;
    padding: 10px 0 15px 0;
    border: 1px solid #e1e1e1;
    border-width: 1px 0;
}

    .product_wrap .product_details > div {
        padding: 5px 0 0 0;
    }

.product_wrap #product_description {
}

    .product_wrap #product_description h4 {
        padding-bottom: 0;
        border: none;
    }

.product_wrap .addthis_toolbox {
    margin: 15px 0 0 0;
    padding: 15px 0 0 0;
    border-top: 1px solid #e1e1e1;
}

.product_image-additioanl a {
    width: 33%;
    display: block;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.product_wrap .pagination__product {
    width: 100%;
    margin: 15px 0;
}

    .product_wrap .pagination__product ul {
        list-style-type: none;
        margin: 0 !important;
        padding: 15px !important;
    }

        .product_wrap .pagination__product ul li.left-arrow {
            float: left;
        }

        .product_wrap .pagination__product ul li.right-arrow {
            float: right;
        }


/* RELATED PRODUCTS */
.widget__related-products {
    padding: 30px 0 0 0;
}

    .widget__related-products h3 {
        margin: 0;
        font-size: 14px;
    }

    .widget__related-products ul {
        list-style-type: none;
    }

        .widget__related-products ul li {
            overflow: hidden;
        }

            .widget__related-products ul li > div {
            }

    .widget__related-products .product_img {
    }

    .widget__related-products .product_name {
    }

    .widget__related-products .product_price {
    }



/* ************************************* BLOG ************************************* */

#blog {
}

.blog-article + .blog-article {
    padding: 15px 0 0 0;
}

.article_header {
    padding: 15px 0;
    border-bottom: 1px solid #dddddd;
}

    .article_header .product_name {
    }

        .article_header .product_name a {
        }

            .article_header .product_name a:hover {
            }

.blog-article_meta-comments {
    float: right;
}

.blog-article_date,
.blog-article_meta-tags {
    font-style: italic;
}

    .blog-article_meta-tags a {
        text-decoration: underline;
    }



/* ************************************* BLOG ARTICLE ************************************* */

.article_meta-comments {
    float: right;
}

.article_meta-tags a {
    text-decoration: underline;
}

.article_date,
.article_meta-tags,
.article_meta {
    font-style: italic;
}

.article-scope .addthis_toolbox {
    margin: 20px 0;
}


#comments ul {
    list-style-type: none;
}

.comment-form {
}

    .comment-form #comment-author,
    .comment-form #comment-email,
    .comment-form #comment-body {
        width: 100%;
    }

    .comment-form #comment-body {
        min-height: 100px;
        margin-bottom: 15px;
    }

.article_comments-form {
    padding-bottom: 10px;
    margin-top: 1em;
    padding-top: 10px;
}

.section-title {
    margin-bottom: 2px;
    padding-bottom: 8px;
}

.section_content {
    padding-top: 8px;
}

.comment-form .section_content .row {
    margin-bottom: 1em;
}

.comment-submit {
}





/*===========================================*/
/*Page scope*/

.page_image {
    margin-bottom: 1em;
}

.page-row img {
    margin-bottom: 1em;
}

.page-row {
    margin-bottom: 2em;
}


/* ************************************* CUSTOMER PAGES ************************************* */

/* LOG IN */


/* ACCOUNT */
.customer_account {
}

.customer_name {
    text-transform: none !important;
}

    .customer_name .divider {
        margin: 0 7px;
    }

    .customer_name .email {
        color: #888888;
    }

    .customer_name a {
        float: right;
    }


/* ADDRESSES */
.customer_addresses {
}

    .customer_addresses ul.customer_addresses_actions {
        list-style-type: none;
        margin: 15px 0;
    }

        .customer_addresses ul.customer_addresses_actions li {
        }

            .customer_addresses ul.customer_addresses_actions li a {
            }

                .customer_addresses ul.customer_addresses_actions li a i {
                    margin: 0 5px 0 0;
                    line-height: inherit;
                }

    .customer_addresses .col-sm-offset-4 label {
        line-height: 1.6em;
    }


ul.address {
    list-style-type: none;
}



/* ************************************* ORDERS ************************************* */

.order_date {
    margin: 15px 0 0 0;
}

#order_details {
    margin-top: 30px 0 0 0;
}



/* ************************************* CART PAGE ************************************* */

.cart-list {
    overflow: hidden;
}

    .cart-list > .row {
        padding-top: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #e1e1e1;
    }

    .cart-list .item_image {
        text-align: center;
    }

        .cart-list .item_image a img {
            max-width: 100%;
        }

    .cart-list .product_name {
        margin-top: 15px;
    }

    .cart-list .item_remove {
        margin: 0 0 0 10px;
    }

        .cart-list .item_remove a {
            font-size: 20px;
            color: #fe2a2a;
        }

            .cart-list .item_remove a:hover {
                color: #222222;
            }

    .cart-list .row h3.item_vendor {
        border-bottom: 1px solid #dddddd;
        color: #888;
    }

    .cart-list .item_price {
        padding: 10px 0 0 0;
        font-size: 17px;
    }

        .cart-list .item_price .price {
            line-height: 37px;
        }

        .cart-list .item_price label {
            padding: 0;
            line-height: 37px;
        }

        .cart-list .item_price .input-small {
            width: 60px !important;
            height: 37px;
            display: inline-block;
            padding: 5px;
            text-align: center;
        }

        .cart-list .item_price .total {
            text-align: right;
        }

            .cart-list .item_price .total h3 {
                border-bottom: 1px solid #dddddd;
            }

.cart_subtotal {
}

    .cart_subtotal h3 {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #dddddd;
        font-size: 20px;
    }

        .cart_subtotal h3 .money {
            float: right;
        }

.cart_buttons {
    margin: 30px 0;
}

.cart_instructions {
}

    .cart_instructions h4 {
    }

    .cart_instructions textarea {
        width: 100%;
    }

#payment-methods {
    overflow: hidden;
    padding: 15px 0 0 0;
}

    #payment-methods ul {
        list-style-type: none;
        list-style-position: outside;
    }

        #payment-methods ul li {
            float: left;
            padding: 0 7px 0 0;
        }



/* ************************************* CONTACTS PAGE ************************************* */

.contact-scope {
    background-color : white;

}

.contact-form {

}

.contact-scope iframe {
    width: 100%;
    margin: 15px 0;
    border: 1px solid #dddddd;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="telephone"],
.contact-form textarea {
}

.contact-form textarea {
    width: 100%;
}

.contact-form_buttons {
}

    .contact-form_buttons .btn-toolbar {
    }



#guest .page_heading {
}

#customer_login_guest {
    margin: 15px 0 0 0;
}



/* Newsletter*/

#mailing-list-module {
}

    #mailing-list-module form {
    }

@font-face {
    font-family: "Good Times";
    src: url(/css/fonts/goodtime.ttf) format("truetype"),url('/css/fonts/good times rg.otf'); /* IE9 */
}


/***************** AdminSection Style **********************/

#Admin_Body {
    font-family: 'Good Times', 'Good Times';
    background-color: #FFFFFF;
    width: 100%;
    min-height: 500px;
    float:left;
}

/* Admin_head */

#Admin_head {
    height: 100px;
    margin-left: 251px;
}

    #Admin_head ul {
        margin: 0;
        padding: 0px;
        list-style: none;
    }

        #Admin_head ul li {
            padding: 0px;
            margin: 0px;
            display: inline;
        }

            #Admin_head ul li a {
                position: relative;
                float: left;
                width: 120px;
                display: block;
                padding: 40px 0 0 0;
                margin-right: 1px;
                text-align: center;
                font-size: 15px;
                text-decoration: none;
                color: #b11f29;
                font-weight: bold;
                outline: none;
            }

    #Admin_head li a:hover, #menu li .current {
        color: #fff;
        border-top: 8px solid #fff;
    }

/* end of navmenu */


/* Admin_Nav */

#Admin_Nav {
    
    width: 100%;
    font-family: 'Good Times';
    font-size: 90%;
}

    #Admin_Nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    #Admin_Nav li {
        border-bottom: 1px solid #ED9F9F;
    }

        #Admin_Nav li a {
            display: block;
            padding: 5px 5px 5px 0.5em;
            border-left: 12px solid #711515;
            border-right: 1px solid #711515;
            background-color: #B51032;
            color: #FFFFFF;
            text-decoration: none;
        }

            #Admin_Nav li a:hover {
                background-color: #711515;
                color: #FFFFFF;
            }

    #Admin_Nav ul ul {
        margin-left: 12px;
    }

        #Admin_Nav ul ul li {
            border-bottom: 1px solid #711515;
            margin: 0;
            background-color: #ED9F9F;
            color: #711515;
        }

        #Admin_Nav ul ul a:link, #Admin_Nav ul ul a:visited {
            background-color: #ED9F9F;
            color: #711515;
        }

        #Admin_Nav ul ul a:hover {
            background-color: #711515;
            color: #FFFFFF;
        }


#Admin_Content {
        background-color:red;
        margin-left:235px;
        width:79%;
        position:relative
  
}


.mainpage_videosection {
    text-align:center;

}

.mainpage_video {
    width:580px;
    height:360px;
}

