﻿/***********************************************************/
/*	ZNode Multifront Stylesheet
/*	Copyright 2004-2010, www.WebApp.com, All Rights Reserved.
/***********************************************************/

/*theme*/

.theme-background-color {
    background-color: #c4112f;
}

.theme-border-color {
    border-color: #c4112f;
}

.theme-color {
    color: #c4112f;
}

.theme-color-hover:hover {
    color: #c4112f;
}

.theme-background-color.btn-primary {
    background-color: #c4112f;
}


/**************************************************/
/* GLOBAL
/**************************************************/

html {
    position: relative;
    min-height: 100%;
    width: 100%;
}


body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #444;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

form:after {
    content: "";
    display: table;
    clear: both;
}

/**************************************************/
/* GLOBAL STYLES
/**************************************************/

h1 {
    font-weight: 600;
    font-size: 40px;
    color: #333;
    line-height: 40px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin: 0;
}

h2 {
    font-weight: 600;
    font-size: 25px;
    color: #333;
    line-height: 30px;
    margin-bottom: 7px;
}

h3 {
    font-weight: 600;
    font-size: 21px;
    color: #333;
    line-height: 25px;
    margin-bottom: 20px;
    margin-top: 0;
}

h4 {
}

h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 11px;
    color: #444444;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 3px;
    padding-top: 3px;
    background-color: #eaebeb;
    border-left: #d3d3d3 1px solid;
    border-bottom: #8e9fba 1px solid;
    border-top-width: 1px;
    border-top-color: #d3d3d3;
    border-right-width: 1px;
    border-right-color: #d3d3d3;
}


hr {
    border: 0;
    width: 100%;
    background: #ccc;
    height: 1px;
    clear: both;
}

p {
}

big {
    font-size: 10pt;
}

small {
    font-size: 7pt;
}

.required:after {
    content: "*";
    color: #f13252;
}

.Error {
    font-size: 13px;
    color: red !important;
    font-weight: 600;
    -webkit-text-size-adjust: 100%
}

.FailureText {
    color: Red;
}

.Success {
    font-weight: bold;
    color: Green;
    font-size: 13px;
    white-space: pre;
    background-image: url(../Images/check.png);
    background-repeat: no-repeat;
    padding-left: 15px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.Optional {
    font-weight: bold;
    color: Blue;
    font-size: 13px;
    white-space: pre;
    background-image: url(../Images/warning_small.gif);
    background-repeat: no-repeat;
    padding-left: 15px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.AddOnMessage {
    color: #cb5d2a;
    font-size: 11px;
}

.ProductPageNewItem {
    text-align: right;
    position: relative;
    bottom: 145px;
    right: 2px;
}

.NewItemStyle {
    position: relative;
    bottom: 12px;
    left: 60px;
}

.PluginMessage {
    margin-left: 10px;
    font-size: 12px;
    font-weight: normal;
    font-family: Verdana;
    text-align: left;
}

select {
    height: 40px;
    color: #333;
    background: #fff;
    border-radius: 0;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #ccc;
    padding: 0 0 0 3px;
    cursor: pointer;
}

    select:focus::-ms-value {
        color: #333;
        background: #fff;
    }

.ChannelDropdown {
    font-size: 13px !important;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    height: 40px;
    color: #333;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 0 7px;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[disabled="disabled"] {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}



::-ms-clear {
    width: 0;
    height: 0;
}

::-ms-reveal {
    width: 0;
    height: 0;
}

textarea {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #ccc;
    padding: 4px 0 0 5px;
    color: #333;
}

.checkbox {
    color: #444;
}

    .checkbox input[type="checkbox"] {
        min-width: 0;
        opacity: 0;
        display: block;
        width: 0;
        height: 0;
        margin: 0;
    }

        .checkbox input[type="checkbox"] + label:after,
        .checkbox input[type="checkbox"]:checked + label:after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            display: block;
            width: 20px;
            height: 20px;
            border: 1px solid #ccc;
            background: #fff;
        }

        .checkbox input[type="checkbox"]:checked + label:after {
            content: '\f00c';
            font-family: 'FontAwesome';
            font-size: 18px;
            line-height: 20px;
            text-align: center;
        }

        .checkbox input[type="checkbox"] + label {
            position: relative;
            font-weight: 400;
            margin-bottom: 8px;
            height: 20px;
            line-height: 20px;
            padding-left: 30px;
            cursor: pointer;
        }

            .checkbox input[type="checkbox"] + label:focus {
                outline: none;
            }

        .checkbox input[type="checkbox"]:disabled + label {
            color: #777;
        }

            .checkbox input[type="checkbox"]:disabled + label:after {
                background: #f0f0f0;
                border-color: #ccc;
            }

            .checkbox input[type="checkbox"]:disabled + label:active:after {
                background: #f0f0f0;
                border-color: #ccc;
            }



/**************************************************/
/* COMMON STYLES
/**************************************************/

.ShareUsTitle {
    font-family: Arial;
    font-size: 11px;
    color: #6f6f6e;
}

.PoweredByMLS {
    color: #bf1e2e;
    font-weight: bold;
}

.register_column {
    float: left;
    padding: 10px;
    height: 300px;
}

a.register_link {
    color: white;
    text-decoration: none;
}

    a.register_link:active {
        color: white;
        text-decoration: none;
    }

    a.register_link:link {
        color: white;
        text-decoration: none;
    }

    a.register_link:visited {
        color: white;
        text-decoration: none;
    }

.PageTitle {
    font-weight: 600;
    font-size: 40px;
    color: #333;
    line-height: 40px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin: 0;
}

    .PageTitle h1 {
        border-bottom: none;
        padding: 0;
    }

a {
    color: #444;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

    a img {
        border: none;
    }


/**************************************************/
/* FORMS
/**************************************************/

.Form {
    margin-bottom: 10px;
    width: 100%;
}

    .Form .Title {
    }

.FormTitle {
    font-weight: bold;
    font-size: 14px;
    color: #7C7C7C;
    background-color: #EAEBEB;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    border-bottom: #b4b4b4 0px solid;
}

.Form .Search {
    background-color: #f1f1f1;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 20px;
    padding-top: 10px;
    border-right: #b5b4b5 1px solid;
    border-top: #b5b4b5 1px solid;
    border-left: #b5b4b5 1px solid;
    border-bottom: #b5b4b5 1px solid;
    margin-top: 5px;
    margin-bottom: 5px;
}

.Form .Asterix {
    color: red;
}

.Form .HeaderStyle {
}

.Form .HeaderStyleHiLite {
    font-weight: bold;
    font-size: 11px;
    background-color: yellow;
    color: #333333;
    margin-bottom: 5px;
    margin-top: 10px;
    padding-bottom: 3px;
    padding-top: 3px;
    padding-left: 5px;
    padding-right: 5px;
}

.Form .Row {
    margin-bottom: 15px;
}

.Form .FieldStyle {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.Form .ValueStyle {
}

.Form .ValueField {
    padding-bottom: 8px;
    padding-top: 5px;
}

.Form .SuccessMsg {
    color: Green;
    font-size: 13px;
}

.Form .BackLink {
    font-size: 11px;
    text-decoration: underline;
}

.Form .TextField {
}

.Form .HintStyle {
    font-size: 10px;
    font-weight: normal;
    color: #333333;
    padding-left: 10px;
    border-right: #3399cc 1px solid;
    padding-right: 10px;
    border-top: #3399cc 1px solid;
    padding-bottom: 5px;
    border-left: #3399cc 1px solid;
    padding-top: 5px;
    border-bottom: #3399cc 1px solid;
    background-color: #ffffcc;
    margin-left: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.Form .ChangePassword {
    margin-top: 10px;
    margin-right: 5px;
    border: none;
    height: 19px;
    width: 101px;
}

.Form .EditContact {
    margin-top: 10px;
    margin-right: 5px;
    border: none;
    height: 19px;
    width: 101px;
}

.Form .ForgetLink {
    margin-top: 10px;
}

.Form .RememberMe {
    padding-bottom: 5px;
}

.Form .Rightalign {
    padding-left: 7px;
    margin-bottom: 30px;
}

.Form .LeftContent {
}

.Form .ReviewLeftContent {
    float: left;
    width: 170px;
}

.Form .ShoppingTotalContent {
    float: left;
    margin-right: 10px;
    font-weight: 700;
    font-size: 16px;
    width: 102px;
}

    .Form .ShoppingTotalContent + .ShoppingTotalContent {
        font-weight: 600;
        font-size: 15px;
        width: 112px;
        text-align: right;
        float: right;
    }

.Form .ShoppingTotalAmountContent {
    float: left;
    margin-right: 10px;
    font-weight: 700;
    font-size: 20px;
    width: 100px;
}

    .Form .ShoppingTotalAmountContent + .ShoppingTotalAmountContent {
        font-size: 19px;
        width: 110px;
        text-align: right;
        float: right;
    }

.Form .RightContent {
    float: right;
}

.Form .CouponContent {
    float: left;
    margin-top: 10px;
    position: relative;
    vertical-align: middle;
    width: 550px;
    text-align: left;
}

.Form .Clear {
    clear: both;
}

.Form .ContactUsButton {
    padding-left: 10px;
    float: left;
    width: 160px;
    white-space: normal;
    vertical-align: middle;
}

.AddToCartButton a {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 13px;
    border: none;
    display: inline-block;
}

.DisabledAddToCartButton a {
    color: #444;
    background: #ccc;
    font-size: 18px;
    font-weight: 700;
    padding: 13px;
    border: none;
    display: inline-block;
}

.Form .RightTextalign {
}

.Form .PaymentContent {
    vertical-align: top;
}

.Form .GiftcardSpace {
    clear: both;
    padding: 0px 0px 0px 0px;
}

.Form .PaymentSection {
    padding-bottom: 5px;
    float: right;
    vertical-align: middle;
}

.Or {
    font-weight: bold;
    font-size: 14px;
    color: #336699;
    font-family: arial;
    padding-right: 10px;
    padding-left: 10px;
    text-transform: uppercase;
}

.Form .Link {
    padding-left: 7px;
    font-weight: bold;
    font-size: 11px;
    color: #336699;
    font-family: arial;
    margin-bottom: 5px;
}

.Form A {
    text-decoration: underline;
}

.Form .Button {
    text-decoration: none;
}

.AccessDenied {
    padding-bottom: 20px;
    color: Red;
    font-weight: bold;
}

.Content {
    line-height: 24px;
}

    .Content .PageTitle {
        margin-bottom: 40px;
    }

    .Content p {
        margin-top: 0;
    }

    .Content h2 {
        margin: 30px 0 15px 0;
    }

    .Content h3 {
        margin: 30px 0 15px 0;
    }

    .Content img {
        max-width: 100%;
    }

.RatingImage {
    display: block;
}

    .RatingImage + a {
        font-size: 13px;
        font-weight: 600;
    }

.ClearAll {
    margin-top: 10px;
}


/**************************************************/
/* LOGIN
/**************************************************/

.Loginpage {
}

    .Loginpage .AccessDenied {
        text-align: center;
    }

    .Loginpage .PageTitle {
        border-bottom: 0;
    }

        .Loginpage .PageTitle span {
            font-size: 20px;
            display: block;
        }

    .Loginpage .Form .Title {
        font-weight: 600;
        font-size: 22px;
        color: #333;
        line-height: 25px;
        margin-bottom: 25px;
        white-space: nowrap;
    }

        .Loginpage .Form .Title span {
            font-size: 15px;
        }

    .Loginpage .Form .TextField {
        width: 100%;
        max-width: 300px;
        box-sizing: border-box;
    }

    .Loginpage .Form .ForgetLink a {
        font-size: 15px;
    }

    .Loginpage .Form .CreateAccount {
        margin-top: 10px;
    }

        .Loginpage .Form .CreateAccount:empty {
            margin: 0;
        }

        .Loginpage .Form .CreateAccount a {
            margin-bottom: 10px;
        }

        .Loginpage .Form .CreateAccount + .RightTextalign {
            font-size: 15px;
        }

            .Loginpage .Form .CreateAccount + .RightTextalign > span {
                display: block;
                background: #f2f2f2;
                padding: 14px 18px;
                margin-top: 30px;
            }

                .Loginpage .Form .CreateAccount + .RightTextalign > span:empty {
                    display: block;
                    background: none;
                    padding: 0;
                    margin: 0;
                }

                .Loginpage .Form .CreateAccount + .RightTextalign > span h2 {
                    margin-top: 0;
                    line-height: 20px;
                    font-weight: 700;
                }

                    .Loginpage .Form .CreateAccount + .RightTextalign > span h2 span {
                        font-size: 15px !important;
                    }

                .Loginpage .Form .CreateAccount + .RightTextalign > span p span {
                    font-size: 13px !important;
                    color: #333 !important;
                }

    .Loginpage .LeftContent {
        text-align: left;
    }

        .Loginpage .LeftContent img {
            display: none;
            height: 0 !important;
            width: 0 !important;
        }

        .Loginpage .LeftContent .Row:last-child {
        }

        .Loginpage .LeftContent .Form .Row:nth-child(7) .FieldStyle.LeftContent {
            display: none;
        }

        .Loginpage .LeftContent .Form .Error {
            margin-bottom: 10px;
        }

            .Loginpage .LeftContent .Form .Error:empty {
                margin-bottom: 0;
            }

    .Loginpage > .Form > .Row {
        width: 100%;
    }

        .Loginpage > .Form > .Row:after {
            content: "";
            display: table;
            clear: both;
        }

        .Loginpage > .Form > .Row > .LeftContent {
        }

            .Loginpage > .Form > .Row > .LeftContent:first-child {
                width: 100% !important;
                margin-bottom: 50px;
                padding-bottom: 40px;
                border-bottom: 1px solid #ccc;
            }

            .Loginpage > .Form > .Row > .LeftContent:nth-child(2) {
            }

            .Loginpage > .Form > .Row > .LeftContent:nth-child(3) {
                width: 100% !important;
            }

    .Loginpage .space {
        display: none;
    }


    .Loginpage .QuickSearchfield {
        float: left;
        margin-top: 0px;
    }

        .Loginpage .QuickSearchfield .Button {
            position: relative;
            top: 5px;
            padding-right: 5px;
        }
    /*.Loginpage .BreadCrumb {background:url(../images/freeshipping_bg_spring.jpg) no-repeat; background-position:right;height:50px;}
.Loginpage .BreadCrumb .BreadCrumbLabel {padding-top:20px;margin-left:20px;}*/
    .Loginpage .BreadCrumb A {
        color: #7C7C7C;
        text-decoration: none;
    }

    .Loginpage .PromoText {
        position: relative;
        top: -13px;
        float: right;
        right: 12px;
    }


@media (min-width:850px) {
    .Loginpage .PageTitle {
        text-align: center;
        margin-top: 30px;
    }

    .Loginpage > .Form > .Row {
        margin: 30px auto 0 auto;
        font-size: 0;
        text-align: center;
        max-width: 900px;
    }

        .Loginpage > .Form > .Row:after {
            content: "";
            display: table;
            clear: both;
        }

        .Loginpage > .Form > .Row > .LeftContent {
            box-sizing: border-box;
            display: inline-block;
            vertical-align: top;
            padding: 0;
        }

            .Loginpage > .Form > .Row > .LeftContent:first-child {
                width: 45% !important;
                border: none;
                margin-bottom: 0;
            }

            .Loginpage > .Form > .Row > .LeftContent:nth-child(2) {
                display: none;
            }

            .Loginpage > .Form > .Row > .LeftContent:nth-child(3) {
                width: 55% !important;
                border-left: 1px solid #ccc;
                padding-left: 40px;
            }
}

@media (min-width:950px) {
    .Loginpage .PageTitle {
    }

    .Loginpage > .Form > .Row {
    }

        .Loginpage > .Form > .Row:after {
        }

        .Loginpage > .Form > .Row > .LeftContent {
            padding: 0 60px;
        }

            .Loginpage > .Form > .Row > .LeftContent:first-child {
                width: 50% !important;
                margin-right: -20px;
                padding: 0 60px;
            }

            .Loginpage > .Form > .Row > .LeftContent:nth-child(3) {
                width: 50% !important;
                padding-left: 60px;
            }
}


/**************************************************/
/* REGISTER
/**************************************************/

.Register .PageTitle {
    margin-bottom: 15px;
}

.Register .formtdleft {
    width: 200px;
    text-align: right;
    padding-right: 10px;
    font-weight: 600;
    padding-bottom: 10px;
}

.Register .formtdright {
    padding-bottom: 10px;
    width: 300px;
}

    .Register .formtdright input[type="text"] {
        width: 100% !important;
        box-sizing: border-box;
    }

#lblMsg {
    font-size: 20px;
}

#lblRegistrationMsg {
    font-size: 30px;
}

.RegistrationHeader {
    text-align: center;
    font-size: 35px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ccc;
}

#salesreps {
    height: 40px;
    color: #333;
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    border-radius: 0;
    border: 1px solid #ccc;
    padding: 0 7px;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.Register .addressinstructions {
    font-family: 'Open Sans';
    font-size: 14px;
    font-weight: normal;
}

.Register .registrationcontainer {
    float: left;
}

.Register .buttoncontainer {
    text-align: right;
}

    .Register .buttoncontainer input {
        cursor: pointer;
        width: 110px;
        border: 0;
        font-family: 'Open Sans';
        border-radius: 0;
        padding: 9px 20px;
        text-align: center;
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        transition: all 0.2s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .Register .buttoncontainer a {
        width: 110px;
        box-sizing: border-box;
        border-width: 1px;
        border-style: solid;
        background: #fff;
        padding: 8px 20px;
        text-align: center;
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        transition: all 0.2s ease;
    }

.Register .space {
    display: none;
}


/**************************************************/
/* FORGOT PASSWORD
/**************************************************/

.ForgotPassword h1 {
    margin-bottom: 30px;
}

.ForgotPassword p {
    margin-bottom: 25px;
}

#emailaddressrequestform {
    float: left;
    width: 100%;
}

    #emailaddressrequestform .space {
        display: none;
    }

    #emailaddressrequestform input[type="text"] {
        width: 100% !important;
        max-width: 300px;
        box-sizing: border-box;
    }

    #emailaddressrequestform .formtdleft {
        display: block;
        font-weight: 600;
        margin-bottom: 5px;
    }

        #emailaddressrequestform .formtdleft img {
            display: none;
        }

    #emailaddressrequestform .formtdright {
        display: block;
    }

    #emailaddressrequestform .btn-primary {
        border: none;
        cursor: pointer;
        float: right;
        font-family: 'Open Sans', sans-serif;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

/*set password*/
.Password-table {
    float: left;
    width: auto !important;
}

.Password p {
    line-height: 25px;
}

.Password .formtdleft {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

    .Password .formtdleft img {
        display: none;
    }

.Password .formtdright {
    display: block;
    margin-bottom: 20px;
}

.Password input[type="text"],
.Password input[type="password"] {
    width: 300px !important;
}

.Password label:after {
    color: red;
    content: '*';
}

.Password-buttons {
    margin-top: -20px;
    width: 316px;
    text-align: right;
    font-size: 0;
}

.Password .btn-primary {
    border: none;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    margin-right: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.Password .btn {
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    width: 90px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.Password-invalid {
    margin-top: 20px;
}


/**************************************************/
/* PAGE SECTIONS
/**************************************************/

#HomePageTab {
    height: 41px;
    background-image: url(../Images/Home_tab.jpg);
    background-position: 1px left;
    vertical-align: bottom;
    background-repeat: repeat-x;
    margin-left: -5px;
    margin-right: -8px;
    margin-top: -8px;
}

#DefaultTab {
    margin-top: -1px;
    margin-left: -5px;
    vertical-align: bottom;
}

#LeftColumn {
    margin: 20px 0 30px;
}

    #LeftColumn:after {
        content: "";
        display: table;
        clear: both;
    }

#MiddleColumn {
    margin-bottom: 50px;
    margin-top: 0;
}

    #MiddleColumn .Field {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    #MiddleColumn .FeaturedCategory {
    }

    #MiddleColumn .Title {
        padding: 5px 10px;
        font-weight: 600;
        font-size: 25px;
        color: #333;
        line-height: 35px;
    }

@media (min-width: 800px) {
    #MiddleColumn {
        float: left;
        width: 98%;
    }
}

/*************************************/
/* BreadCrumb
/*************************************/

#BreadCrumb {
    margin-bottom: 9px;
}

    #BreadCrumb .BreadCrumbLabel span {
        font-size: 0;
    }

        #BreadCrumb .BreadCrumbLabel span a {
            color: inherit;
            font-size: 16px;
        }

            #BreadCrumb .BreadCrumbLabel span a:hover {
                text-decoration: underline;
            }

            #BreadCrumb .BreadCrumbLabel span a:after {
                color: #444;
                content: '\f105';
                font-family: 'FontAwesome';
                padding: 0 10px;
                font-size: 14px;
                display: inline-block;
            }

            #BreadCrumb .BreadCrumbLabel span a:hover:after {
                text-decoration: underline;
            }

            #BreadCrumb .BreadCrumbLabel span a:hover:after {
                text-decoration: none;
            }

            #BreadCrumb .BreadCrumbLabel span a:last-child:after {
                content: none
            }

    #BreadCrumb .PromoText span {
        font-size: 14px;
        line-height: 19px;
        margin: 10px 0 20px;
        display: block;
    }

        #BreadCrumb .PromoText span:empty {
            margin: 0;
        }


/**************************************************/
/* Header Content
/**************************************************/

.innerwrapper {
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}

header {
    min-width: 320px;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.header_line1 {
    display: flex;
}

.header_top {
    height: 35px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 35px;
}

    .header_top .innerwrapper {
        float: left;
        position: relative;
        max-width: none;
    }

.header_toplinks {
    display: none;
}

.header_phone {
    display: none;
}

.header_welcome {
    display: inline;
}

    .header_welcome .LoginText {
        display: inline-block;
        font-weight: 600;
        padding-left: 15px;
        font-size: 14px;
        vertical-align: top;
        position: absolute;
        left: 0;
    }

        .header_welcome .LoginText:empty {
            padding-left: 0;
        }

        .header_welcome .LoginText span {
            display: inline-block;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
        }

div.LoggedInAccount {
    float: left;
}

.header_main {
    height: 75px;
    background: #fff;
    text-align: right;
    color: #333333;
    border-bottom: 1px solid #ccc;
}

    .header_main .innerwrapper {
        position: relative;
        max-width: none;
        display: flex;
    }

    .header_main #Logo {
        max-width: 200px;
        height: 75px;
        float: left;
        margin-right: 25px;
    }

        .header_main #Logo table {
            height: 75px;
            border-spacing: 0;
        }

        .header_main #Logo table,
        .header_main #Logo tbody,
        .header_main #Logo tr,
        .header_main #Logo td {
            padding: 0;
            margin: 0;
        }

        .header_main #Logo td {
            vertical-align: middle;
        }

        .header_main #Logo a {
            display: block;
        }

            .header_main #Logo a img {
                max-width: 200px;
                max-height: 70px;
                padding: 10px 0;
                box-sizing: border-box;
            }

        .header_main #Logo > a > table > tbody > tr > td {
            display: none;
        }

            .header_main #Logo > a > table > tbody > tr > td:first-child {
                display: table-cell;
            }

.header_main_middle {
    vertical-align: top;
}

.ChannelDropdown > option {
    background-color: #fff;
    color: black;
}

/*Search*/

.header_search {
    display: inline-block;
    vertical-align: top;
    margin-top: 27px;
    margin-left: 20px;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .header_search:after, .header_search:before {
        bottom: 59px;
        right: 85px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .header_search:after {
        border-bottom: 12px solid #fff;
        margin-left: -5px;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid transparent;
    }

    .header_search:before {
        border-bottom: 13px solid #bbb;
        margin-left: -6px;
        right: 84px;
        border-left: 13px solid transparent;
        border-right: 13px solid transparent;
        border-top: 13px solid transparent;
    }

    .header_search .RoundedBox > div {
        display: none;
    }

    .header_search .RoundedBox {
        position: relative;
        display: inline-block;
        border: 1px solid #ccc;
        background: #fff;
        height: 60px;
        line-height: 60px;
        box-shadow: 0 0 5px 1px rgba(0,0,0,.11);
        box-sizing: border-box;
    }

        .header_search .RoundedBox .search_placeholder {
            z-index: 1;
            position: absolute;
            height: 58px;
            padding: 0 15px;
            font-size: 16px;
            line-height: 58px;
            color: #999;
            overflow: hidden;
        }

        .header_search .RoundedBox.filled .search_placeholder {
            display: none;
        }

    .header_search #SearchEngine #SearchText {
        border: 0;
        padding: 0 15px;
        margin: 0;
        height: 58px;
        font-size: 16px;
        background: transparent;
        font-family: 'Open Sans', sans-serif;
        width: 388px;
        box-sizing: border-box;
        border-radius: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        position: relative;
        display: inline-block;
        vertical-align: top;
        z-index: 2;
    }



.header_search_close {
    position: absolute;
    top: 12px;
    right: 7px;
    padding: 10px;
    cursor: pointer;
    z-index: 3;
}

    .header_search_close span {
        display: inline-block;
        width: 15px;
        height: 15px;
        overflow: hidden;
        position: relative
    }

        .header_search_close span:before,
        .header_search_close span:after {
            content: '';
            position: absolute;
            height: 1px;
            width: 100%;
            top: 50%;
            left: 0;
            margin-top: -1px;
            background: #777;
            border-radius: 5px;
        }

        .header_search_close span:before {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .header_search_close span:after {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

.header_search #SearchEngine .SearchButton {
    display: none;
}

.header_search #SearchEngine .WaterMark {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    color: transparent;
    border: none;
}

.zero-results-message {
    text-align: left;
    line-height: 30px;
    border: 1px solid !important;
    border-color: #ffe4a0 !important;
    background: #fff9e9 !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    padding-left: 0px !important;
    padding-right: 48px !important;
    margin-top: 40px !important;
}

.SearchResultsPagination {
    display: inline-block;
    float: right;
}

    .SearchResultsPagination a {
        color: black;
        float: left;
        padding: 8px 16px;
        text-decoration: none;
    }

        .SearchResultsPagination a.active {
            background-color: #c4112f;
            color: white;
        }

        .SearchResultsPagination a:hover:not(.active) {
            background-color: #ddd;
        }


/*cart*/

.header_cart {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin-left: 21px;
    margin-top: 13px;
}

    .header_cart img {
        margin-bottom: 6px;
        display: block;
        position: relative;
        right: 2px;
    }

    .header_cart .Text .cart_cart {
        display: none;
    }

    .header_cart .Text .cart_items {
        display: none;
    }

    .header_cart .Text .cart_number {
        font-size: 13px;
        font-weight: 900;
        color: #fff;
        display: inline-block;
        padding: 0 7px;
        border-radius: 1px;
    }

    .header_cart #CartItemCount {
        display: block;
    }

    .header_cart .CartItemCountText {
        display: block;
    }

/*mobile navigation*/

.header-mobile_navicon {
    display: inline-block;
    vertical-align: top;
    width: 33px;
    margin-left: 23px;
    height: 30px;
    position: relative;
    cursor: pointer;
    margin-top: 26px;
    transition: all .2s ease-in-out;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

    .header-mobile_navicon span {
        display: block;
        position: absolute;
        height: 5px;
        width: 33px;
        border-radius: 1px;
        right: 0;
        margin-left: -17px;
        transition: all .2s ease-in-out;
    }

        .header-mobile_navicon span:nth-child(1) {
            top: 0px;
        }

        .header-mobile_navicon span:nth-child(2),
        .header-mobile_navicon span:nth-child(3) {
            top: 11px;
        }

        .header-mobile_navicon span:nth-child(4) {
            top: 22px;
        }

    .header-mobile_navicon.open span:nth-child(1) {
        top: 10px;
        width: 0%;
        left: 50%;
        margin-left: 0px;
    }

    .header-mobile_navicon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .header-mobile_navicon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .header-mobile_navicon.open span:nth-child(4) {
        top: 10px;
        width: 0%;
        left: 50%;
        margin-left: 0px;
    }

.header_mobilenav {
    display: none;
    position: absolute;
    top: 116px;
    left: 0;
    width: 100%;
    z-index: 99;
    max-height: calc(100vh - 250px);
    border-bottom: 1px solid #ccc;
    overflow-y: auto;
    background: #f2f2f2;
}

    .header_mobilenav a {
        font-weight: 500;
        color: #666;
    }

    .header_mobilenav.landscape {
        max-height: 150px !important;
    }

    .header_mobilenav .category_nav {
        padding: 5px 0 10px;
    }

        .header_mobilenav .category_nav * {
            display: block;
        }

        .header_mobilenav .category_nav #Menu > table > tbody > tr > td {
            display: none;
        }

            .header_mobilenav .category_nav #Menu > table > tbody > tr > td[id] {
                display: block;
            }

                .header_mobilenav .category_nav #Menu > table > tbody > tr > td[id][title="Home"] {
                    display: none;
                }

        .header_mobilenav .category_nav .DynamicMenuStyle {
            position: relative;
            visibility: visible !important;
            display: block !important;
            padding: 0;
            height: auto !important;
            top: 0 !important;
            max-height: none;
            overflow: visible;
            border: none;
            box-shadow: none;
            background: none;
            left: 0 !important;
        }

        .header_mobilenav .category_nav .Menu a.StaticMenuItemStyle {
            font-size: 22px !important;
            line-height: 30px;
            padding: 10px 0 10px 20px;
            text-transform: uppercase;
        }

        .header_mobilenav .category_nav .SubMenu a.DynamicMenuItemStyle {
            font-size: 18px !important;
            line-height: 23px;
            padding: 7px 0 7px 40px;
            letter-spacing: .5px;
        }

        .header_mobilenav .category_nav .SubMenu > div.DynamicMenuItemStyle {
            display: none !important;
        }

.header_mobilenav_bottom {
    border-top: 1px solid #ccc;
    padding: 10px 0 15px;
    list-style-type: none;
    margin: 0;
}

    .header_mobilenav_bottom li a {
        display: block;
        padding: 9px 0 9px 20px;
        font-size: 18px;
        line-height: 23px;
        text-transform: uppercase;
    }

.header_mobilenav .horizontal-separator {
    display: none;
}


/*allowance*/

.header_allowance {
    font-size: 15px;
    display: inline-block;
    vertical-align: top;
    line-height: normal;
    margin-top: 6px;
}

    .header_allowance > span {
        display: block;
        font-size: 14px;
        text-align: center;
        display: inline-block;
        vertical-align: top;
        height: 22px;
        line-height: 22px;
    }

        .header_allowance > span:after {
            content: ":";
        }

.AllowanceTable {
    height: 23px;
    display: inline-block;
    vertical-align: top;
    margin-left: 4px;
}

    .AllowanceTable img {
        display: none;
    }

    .AllowanceTable .dxgvControl_Office2010Silver {
        border: 0;
        background: none;
    }

        .AllowanceTable .dxgvControl_Office2010Silver .dxgvTable_Office2010Silver {
            background: none;
        }

            .AllowanceTable .dxgvControl_Office2010Silver .dxgvTable_Office2010Silver tr:first-child {
                display: none;
            }

            .AllowanceTable .dxgvControl_Office2010Silver .dxgvTable_Office2010Silver tr:last-child td:first-child {
                display: none;
            }

            .AllowanceTable .dxgvControl_Office2010Silver .dxgvTable_Office2010Silver tr:last-child td:last-child {
                display: inline-block;
                vertical-align: middle;
                padding: 1px 5px;
                text-align: center;
                background: #fff;
                font-weight: 700;
                font-size: 15px;
                font-family: 'Open Sans', sans-serif;
                line-height: 20px;
            }

    .AllowanceTable:empty {
        display: none;
    }

        .AllowanceTable:empty + span {
            display: none;
        }


/*allotment*/
.header_allotment {
    font-size: 15px;
    display: inline-block;
    vertical-align: top;
    line-height: normal;
    margin-top: 6px;
}

.header_header_allotment > span {
    display: block;
    font-size: 14px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    height: 22px;
    line-height: 22px;
}

    .header_header_allotment > span:after {
        content: ":";
    }

.AllotmentTable {
    height: 23px;
    display: inline-block;
    vertical-align: top;
    margin-left: 4px;
}

    .AllotmentTable img {
        display: none;
    }

    .AllotmentTable .dxgvControl_Office2010Silver {
        border: 0;
        background: none;
    }

        .AllotmentTable .dxgvControl_Office2010Silver .dxgvTable_Office2010Silver {
            background: none;
        }

            .AllotmentTable .dxgvControl_Office2010Silver .dxgvTable_Office2010Silver tr:first-child {
                display: none;
            }

            .AllotmentTable .dxgvControl_Office2010Silver .dxgvTable_Office2010Silver tr:last-child td:first-child {
                display: none;
            }

            .AllotmentTable .dxgvControl_Office2010Silver .dxgvTable_Office2010Silver tr:last-child td:last-child {
                display: inline-block;
                vertical-align: middle;
                padding: 1px 5px;
                text-align: center;
                background: #fff;
                font-weight: 700;
                font-size: 15px;
                font-family: 'Open Sans', sans-serif;
                line-height: 20px;
            }

    .AllotmentTable:empty {
        display: none;
    }

        .AllotmentTable:empty + span {
            display: none;
        }


.dxgvControl_Office2010Silver {
    color: inherit;
}

@media (min-width: 650px) {

    .header_main_middle {
        margin: 10px 0 0 0;
        text-align: center;
    }
    /*search*/
    .header_search {
        position: static;
        display: block !important;
        opacity: 1 !important;
    }

    .header_searchbtn {
        margin: 0 auto;
        display: block;
        width: 90% !important;
    }

        .header_searchbtn img {
            display: none;
        }

    .header_search:after, .header_search:before {
        content: none;
    }

    .header_search_close {
        display: none;
    }

    .header_search #SearchEngine .SearchButton {
        position: absolute;
        top: 7px;
        right: 15px;
        background: url(../Images/search.png);
        background-size: 20px 20px;
        border: 0;
        display: block;
        text-indent: -9999px;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .header_search .RoundedBox {
        position: relative;
        display: inline-block;
        border: 1px solid #ccc;
        background: #fff;
        height: 35px;
        line-height: 35px;
        box-shadow: none;
        width: 100%;
        text-align: left;
    }

        .header_search .RoundedBox .search_placeholder {
            z-index: 1;
            position: absolute;
            height: 33px;
            padding: 0 40px 0 10px;
            font-size: 14px;
            line-height: 33px;
            width: 100%;
            box-sizing: border-box;
        }

    .header_search #SearchEngine #SearchText {
        padding: 0 40px 0 10px;
        height: 33px;
        font-size: 14px;
        width: 100%;
    }
}

@media (min-width: 200px) {



    .innerwrapper {
        /*padding: 0 40px;*/
        max-width: 1400px;
    }

    .header_top .innerwrapper {
        padding: 0 10px 0 0;
    }

    .header_toplinks {
        color: rgba(255,255,255,.4);
        display: inline-block;
        vertical-align: top;
    }

        .header_toplinks a {
            color: #fff;
            padding: 0 4px;
        }

            .header_toplinks a:hover {
                text-decoration: underline;
            }

        .header_toplinks .Link-account {
            font-weight: 600;
            margin-right: 3px;
        }

        .header_toplinks .Link-support {
            position: relative;
            display: inline-block;
            height: 35px;
            width: 30px;
            vertical-align: top;
        }

            .header_toplinks .Link-support a {
                font-size: 0;
            }

                .header_toplinks .Link-support a:after {
                    content: '\f059';
                    font-family: 'FontAwesome';
                    font-size: 21px;
                    display: inline-block;
                    font-weight: 400;
                    position: relative;
                    bottom: -1px;
                }

                .header_toplinks .Link-support a:hover {
                    text-decoration: underline;
                }

                .header_toplinks .Link-support a:hover {
                    text-decoration: none;
                }

    .header_welcome {
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        vertical-align: top;
    }

        .header_welcome > span > span > a:hover:after {
            text-decoration: underline;
        }

        .header_welcome > span > span > a:hover:after {
            text-decoration: none;
        }

        .header_welcome > span > span > a:empty:after {
            content: none;
        }

        .header_welcome .logoutlink {
            display: inline-block;
        }

        .header_welcome a {
            display: inline-block;
            color: #fff;
            padding: 0 4px;
            font-weight: 600;
            /*padding-left: 20px;*/
        }

            .header_welcome a:empty {
                padding: 0;
            }

            .header_welcome a:hover {
                text-decoration: underline;
            }

        .header_welcome .LoginText:empty {
            padding-left: 0;
        }

    .header_welcome_divider {
        font-weight: 600;
        display: inline-block;
        vertical-align: top;
    }

    .header_wecome_divider_middle {
        /*padding-left: 20px;*/
    }

    .header_main {
        height: 75px;
    }

        .header_main .innerwrapper {
            padding: 0 30px;
        }

            .header_main .innerwrapper:after {
                content: '';
                display: table;
                clear: both;
            }

    .header_phone {
        text-align: center;
        font-family: 'Open Sans', sans-serif;
        font-size: 15px;
        font-weight: 600;
        padding: 10px 0;
        margin-bottom: -10px;
        position: relative;
        background: #fff;
        border-left: 1px solid #ddd;
        border-right: 1px solid #ddd;
    }

        .header_phone > span {
            position: relative;
            display: inline-block;
            padding-left: 10px;
            line-height: 30px;
        }

            .header_phone > span:before {
                content: '\f095';
                font-size: 17px;
                font-family: 'FontAwesome';
                position: absolute;
                top: 2px;
                left: -10px;
                font-weight: 400;
                line-height: 30px;
            }

            .header_phone > span > span {
                color: #444;
            }

        .header_phone img {
            display: none;
        }

        .header_phone a {
            color: #444;
        }

    .header_cart {
        margin-left: 35px;
        width: 33px;
        margin-top: 13px;
    }

        .header_cart > img {
            margin-bottom: 10px;
            width: auto;
        }

    /*menu*/
    .header_main .category_nav {
        display: block;
        font-size: 14px;
        font-weight: 600;
        position: relative;
        z-index: 2;
        margin-top: 5px;
    }

    .category_nav #Menu {
        text-align: left;
        display: inline-block;
    }

        .category_nav #Menu img {
            display: none;
        }

        .category_nav #Menu > table a {
            display: inline-block;
            height: 24px;
            line-height: 40px;
            border-bottom: 3px solid #fff !important;
            padding: 0 3px;
            margin: 0 7px;
            line-height: 25px;
        }

            .category_nav #Menu > table a:hover {
                border-bottom: 3px solid #333 !important;
            }

    .DynamicMenuStyle {
        margin-top: 5px;
    }

    .header-mobile_navicon {
        display: none;
    }
}

.main {
    min-width: 320px;
}

    .main:after {
        content: "";
        display: table;
        clear: both;
    }

/*support popup*/
.uv-popover-iframe-container {
    border: 1px solid #ddd;
    background: #fff;
}

/******************************/
/* Footer Content
/******************************/

footer {
    background: #262626;
    padding: 30px 0 50px 0;
    color: #fff;
    min-width: 320px;
    text-align: center;
    width: 100%;
}

.footer_links {
    color: #c6c6c6;
    margin-bottom: 20px;
    line-height: 24px;
}

    .footer_links a {
        color: #fff;
        font-size: 14px;
        display: inline-block;
        padding: 0 2px;
    }

        .footer_links a:hover {
            text-decoration: underline;
        }

.footer_social {
    margin-bottom: 20px;
}

    .footer_social table {
        margin: 0 auto;
    }

    .footer_social img {
        margin: 0 2px;
    }

.footer_logo {
    margin-bottom: 20px;
}

.footer_copyright {
    font-size: 11px;
    margin-bottom: 3px;
}

.footer_description {
    font-size: 11px;
}

@media (min-width: 900px) {
    footer {
        text-align: left;
    }

    .footer_social table {
        margin: 0;
    }

    .footer_logo {
        float: right;
        margin-right: 150px;
    }
}

@media (max-width: 768px) {
    .footer_logo {
        float: none;
    }
}


/**************************************************/
/* CONTENT PAGE SECTIONS
/**************************************************/
.ContentPage {
}

    .ContentPage .PageTitle {
        padding-left: 0px;
    }

    .ContentPage .SubTitle {
    }

/**************************************************/
/* HOME QUICK SEARCH
/**************************************************/
#HomepageStyle {
}

    #HomepageStyle .HomePagePromo {
        float: left;
        clear: left;
        margin-right: 6px;
        margin-top: 7px;
        padding-bottom: 10px;
        width: 100%;
    }

        #HomepageStyle .HomePagePromo img {
            width: 100%;
            height: 350px;
        }

    #HomepageStyle .HomePagePromoRightTop {
        float: left;
        position: relative;
        top: 8px;
    }

        #HomepageStyle .HomePagePromoRightTop img {
            width: 227px;
            height: 166px;
            border: none;
        }

    #HomepageStyle .HomePagePromoRightBottom {
        float: left;
        clear: none;
        position: relative;
        top: 25px;
    }

        #HomepageStyle .HomePagePromoRightBottom img {
            width: 227px;
            height: 166px;
            border: none;
        }

    #HomepageStyle .HomePageSpecials {
        clear: left;
    }

    #HomepageStyle .horizontalline {
        border-top: 1px solid silver;
        margin-bottom: 10px;
    }

#HomeQuickSearch {
    float: left;
    margin-top: 8px;
    margin-bottom: 0px;
}

    #HomeQuickSearch .WaterMark {
        font-size: 15px;
        font-family: 'Open Sans', sans-serif;
        font-style: italic;
        color: #a6a6a6;
    }

    #HomeQuickSearch .TextBox {
        font-size: 12px;
        font-family: Arial;
        color: #6f6f6e;
        margin-top: 10px;
    }

    #HomeQuickSearch .Button {
        position: relative;
        top: 5px;
    }


/**************************************************/
/* HOME 
/**************************************************/



.home {
    margin-bottom: -60px;
}

h1.home_heading {
    font-size: 26px;
    line-height: 33px;
    text-align: center;
    border: none;
    padding: 0;
    margin-bottom: 30px;
    margin-top: 20px;
}

.home_subheading {
    color: #909090;
    font-size: 17px;
    line-height: 23px;
    letter-spacing: .5px;
    display: block;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 25px;
}

.home_heading-small {
    font-size: 21px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 22px;
}

@media (min-width: 900px) {

    h1.home_heading {
        font-size: 33px;
        line-height: 33px;
    }
}

.home_section {
    margin-top: 20px;
    display: flex;
}

.home_section-empty {
    display: none;
}

header .col-10 .header-search {
    display: flex;
    flex-wrap: nowrap;
}

.home_hero {
    width: 100%;
}

    .home_hero .home_banner {
        width: 100%;
    }



.home_featured {
    display: block;
}

    .home_featured:after {
        content: '';
        display: table;
        clear: both;
    }

.home_featured_block {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.home_featured_link a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    text-indent: -99999px;
}

.home_featured_block img {
    transition: opacity 0.2s ease;
}

.home_featured_text > span {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,.6);
    padding: 9px 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    letter-spacing: 1px;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.home_featured_text span:empty {
    padding: 0;
}

.home_featured_block:hover .home_featured_text > span {
    background: rgba(0,0,0,.7);
}

.home_featured_block:hover img {
    opacity: .9;
}

@media (min-width: 580px) {
    .home_featured_block {
        width: calc(50% - 15px);
        float: left;
        margin-right: 20px;
    }

        .home_featured_block:nth-child(2),
        .home_featured_block:last-child {
            margin-right: 0;
        }
}

@media (min-width: 1110px) {
    .home_featured_block {
        width: calc(25% - 15px);
        margin-bottom: 0;
    }

        .home_featured_block:nth-child(2) {
            margin-right: 20px;
        }
}

.home_group_title {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

.home_group_image {
    width: 100%;
    padding-bottom: 15px;
}

.home_topbanner_image {
    width: 100%;
}

.home_product_title {
    font-weight: 700;
    text-align: center;
}

.home_blogitem_detail {
    height: 140px;
    padding: 10px;
    background-color:white;
}

.home_blog_group_title {
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
}

.home_blog_group_subtitle {
    font-size: 20px;
    color: red;
    text-align: center;
}

.home_blogitem_category {
    font-size: 14px;
    font-weight: bold;
    color: darkred;
    text-transform: uppercase;
}

.home_blogitem_title {
    font-size: 16px;
    font-weight: bold;
}

.home_blogitem_author {
    font-size: 16px;
}


.home_testimonial_detail {
    background-color: #c73a30;
    color: white;
    height: 160px;
    padding: 10px;
}

.home_testimonial_title
{
    font-size:16px;
    font-weight:bold;
    text-transform:uppercase;
}
.home_testimonial_text{
    font-size:13px;
}
.home_testimonial_name
{
    margin-top:5px;
    font-size:13px;
    font-weight:bold;
}
.home_testimonial_jobtitle {
    font-size: 13px;
    font-weight: bold;
}

.home_brands {
    display: block;
}

    .home_brands:after {
        content: '';
        display: table;
        clear: both;
    }

.home_brand_block {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.home_brand_link a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    text-indent: -99999px;
}

.home_brand_block img {
    height: auto !important;
    transition: opacity 0.2s ease;
}

.home_brand_text > span {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,.6);
    padding: 9px 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    letter-spacing: 1px;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.home_brand_text span:empty {
    padding: 0;
}

.home_brand_block:hover .home_brand_text > span {
    background: rgba(0,0,0,.7);
}

.home_brand_block:hover img {
    opacity: .9;
}

@media (min-width: 580px) {
    .home_brand_block {
        width: calc(30% - 15px);
        float: left;
        margin-right: 10px;

    }

        .home_brand_block:nth-child(2),
        .home_brand_block:last-child {
            margin-right: 0;
        }
}

@media (min-width: 375px) {
    .home_section_last {
        margin-bottom: 145px;
    }
}

@media (min-width: 1110px) {
    .home_brand_block {
        width: calc(20% - 15px);
        margin-bottom: 0;
    }

        .home_brand_block:nth-child(2) {
            margin-right: 20px;
        }
}


.home_blogs {
    display: block;
}

    .home_blogs:after {
        content: '';
        display: table;
        clear: both;
    }

.home_blog_block {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.home_blog_link a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    text-indent: -99999px;
}

.home_blog_block img {
    width: 100% !important;
    height: auto !important;
    transition: opacity 0.2s ease;
}

.home_blog_text > span {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,.6);
    padding: 9px 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    letter-spacing: 1px;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.home_blog_text span:empty {
    padding: 0;
}

.home_blog_block:hover .home_brand_text > span {
    background: rgba(0,0,0,.7);
}

.home_blog_block:hover img {
    opacity: .9;
}

@media (min-width: 580px) {
    .home_blog_block {
        width: calc(50% - 15px);
        float: left;
        margin-right: 20px;
    }

        .home_blog_block:last-child {
            margin-right: 0px;
        }
}

@media (min-width: 1110px) {
    .home_blog_block {
        width: calc(33% - 15px);
        margin-bottom: 0;
    }

        .home_blog_block:last-child {
            margin-right: 0px;
        }
}


.home_video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

    .home_video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.home_blurb {
    font-size: 0;
}

    .home_blurb:first-child {
        margin-bottom: 40px;
    }

.home_blurb_img {
    display: inline-block;
    vertical-align: top;
    width: 32%;
}

.home_blurb img {
    width: 100% !important;
    height: auto !important;
}

.home_blurb_desc {
    display: inline-block;
    vertical-align: top;
    width: 68%;
    box-sizing: border-box;
    padding-left: 20px;
}

    .home_blurb_desc p {
        font-size: 16px;
        line-height: 25px;
        color: #555555;
        margin-bottom: 35px;
    }

.home_blurb_btn {
    float: right;
}

    .home_blurb_btn a {
        padding: 9px 20px;
        text-align: center;
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        transition: all 0.2s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0;
        border: none;
    }

@media (min-width: 1110px) {
    .home_blurb {
        float: left;
        width: calc(50% - 30px);
    }

        .home_blurb:first-child {
            margin-right: 30px;
        }

        .home_blurb:last-child {
            margin-left: 30px
        }
}

.home_twocol {
}

.home_twocol_col {
    margin-top: 40px;
}

    .home_twocol_col img {
        width: 100% !important;
        height: auto !important;
    }

    .home_twocol_col:first-child {
        margin-bottom: 40px;
    }

    .home_twocol_col p {
        font-size: 16px;
        line-height: 25px;
        color: #555555;
        margin-bottom: 35px;
        margin-top: 0;
    }

    .home_twocol_col span {
        font-size: 16px;
        line-height: 25px;
        color: #555555;
    }

@media (min-width: 800px) {
    .home_twocol {
        font-size: 0;
    }

    .home_twocol_col {
        width: calc(50% - 30px);
        display: inline-block;
        vertical-align: top;
    }

        .home_twocol_col:first-child {
            margin-right: 30px;
            margin-bottom: 0px;
        }

        .home_twocol_col:last-child {
            margin-left: 30px
        }
}

/**************************************************/
/* CATEGORY TREEVIEW
/**************************************************/

#LeftColumn .CategoryTreeView {
    float: left;
    display: block;
    margin-right: 10px;
    width: calc(50% - 10px);
    display: none;
}

    #LeftColumn .CategoryTreeView .Title {
        cursor: pointer;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 700;
        border: 1px solid #ccc;
        padding: 10px 20px 10px 10px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

        #LeftColumn .CategoryTreeView .Title:after {
            content: '\f078';
            font-family: 'FontAwesome';
            font-size: 14px;
            position: relative;
            top: -2px;
            right: -4px;
        }

        #LeftColumn .CategoryTreeView .Title.open {
            border-bottom: 1px solid #f2f2f2;
            background: #f2f2f2;
            margin-bottom: -1px;
            padding-bottom: 30px;
            z-index: 1;
            position: relative;
        }

            #LeftColumn .CategoryTreeView .Title.open:after {
                content: '\f077';
            }

        #LeftColumn .CategoryTreeView .Title + div {
            background: #f2f2f2;
            border: 1px solid #ccc;
            padding: 14px 15px 13px 15px;
            width: calc(100% - 40px);
            min-width: 440px;
            display: none;
            position: absolute;
            box-sizing: border-box
        }

.CategoryTreeView .Title + div a {
    font-weight: 600;
    font-size: 14px !important;
    display: inline-block;
    vertical-align: middle;
    line-height: 25px;
}

    .CategoryTreeView .Title + div a:hover {
        text-decoration: underline;
    }

    .CategoryTreeView .Title + div a span span {
        font-weight: 500;
    }

.CategoryTreeView .Title + div i {
    font-size: 7px;
    color: #444;
    padding-right: 5px;
}

.CategoryTreeView .HoverNodeStyle {
}

.CategoryTreeView .SelectedNodeStyle {
    font-weight: bold;
}

.CategoryTreeView .TreeView > table {
    padding: 5px 0;
}

@media (min-width: 800px) {
    #LeftColumn .CategoryTreeView {
        float: none;
        margin: 0 0 44px;
        width: 100%;
        display: block;
    }

        #LeftColumn .CategoryTreeView .Title {
            cursor: default;
            margin-bottom: 9px;
            width: 100%;
            border: none;
            padding: 0;
            text-align: left;
        }

            #LeftColumn .CategoryTreeView .Title:after {
                content: none;
            }

            #LeftColumn .CategoryTreeView .Title.open {
                background: none;
                border: none;
                padding-bottom: 0;
                margin-bottom: 9px;
            }

                #LeftColumn .CategoryTreeView .Title.open:after {
                    content: none;
                }

            #LeftColumn .CategoryTreeView .Title + div {
                border: none;
                position: static;
                display: block !important;
                width: 100%;
                min-width: 0;
                min-height: 45px;
            }
}


/************************************************/
/* Product Tagging
/************************************************/

.ProductTagging_list {
    float: left;
    display: block;
    margin-left: 10px;
    width: calc(50% - 10px);
}

    .ProductTagging_list .Title {
        cursor: pointer;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 700;
        border: 1px solid #ccc;
        padding: 10px 20px 10px 10px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

        .ProductTagging_list .Title:after {
            content: '\f078';
            font-family: 'FontAwesome';
            font-size: 14px;
            position: relative;
            top: -2px;
            right: -4px;
        }

        .ProductTagging_list .Title.open {
            border-bottom: 1px solid #f2f2f2;
            background: #f2f2f2;
            margin-bottom: -1px;
            padding-bottom: 30px;
            z-index: 1;
            position: relative;
        }

            .ProductTagging_list .Title.open:after {
                content: '\f077';
            }

    .ProductTagging_list .menu {
        background: #f2f2f2;
        border: 1px solid #ccc;
        padding: 15px;
        width: calc(100% - 40px);
        min-width: 440px;
        display: none;
        position: absolute;
        box-sizing: border-box;
        left: 20px;
    }

    .ProductTagging_list .facetName {
        text-transform: none;
        font-family: 'Open Sans';
        font-weight: 700;
        color: #444;
        font-size: 14px;
        margin-left: 3px;
        margin-bottom: 6px;
    }

.ProductTagging_selected {
    display: none;
}

.ProductTagging .ValueStyle {
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 0px;
    margin-left: 5px;
    margin-bottom: 5px;
}

.ProductTagging .DynamicValueStyle {
    padding-bottom: 0px;
    padding-left: 0px;
    width: 150px;
}
/* DROPDOWNLIST */
.ProductTagging .dropdownText {
    margin-right: 10px;
    font-family: Arial;
    font-size: 11px;
    width: 140px;
    height: 20px;
    color: #333311;
    border: 1px solid #B7B7B7;
}
/* Links Control */
.ProductTagging .LinksTitle {
    text-transform: uppercase;
    color: #cb5d2a;
    font-size: 11px;
    margin-bottom: 0px;
    margin-left: 5px;
    font-family: Arial;
    font-weight: bold;
}

.ProductTagging .linkBtnTagText {
    font-size: 13px;
}

    .ProductTagging .linkBtnTagText:hover {
        text-decoration: underline;
    }

    .ProductTagging .linkBtnTagText i.fa-times {
        font-size: 15px;
        padding: 5px;
    }

.ProductTagging .linkBtnTagTextSelected {
    text-transform: capitalize;
}
/* RADIOBUTTON Control */
.ProductTagging .RadioButton {
    font-weight: normal;
    font-size: 8pt;
    font-family: verdana;
    padding-bottom: 2px;
    padding-top: 2px;
    color: #3a6ea5;
    padding-left: 2px;
    padding-right: 2px;
}

.ProductTagging .RadioButtonListTitle {
    text-transform: uppercase;
    color: #cb5d2a;
    font-size: 11px;
    font-weight: bold;
    font-family: verdana;
    margin-left: 5px;
}
/* Icons Control */
.ProductTagging .IconsTitle {
    text-transform: uppercase;
    color: #cb5d2a;
    font-size: 11px;
    font-weight: bold;
    font-family: verdana;
    margin-left: 5px;
}

.ProductTagging .SelectedTagText {
    font-weight: 600;
    display: block;
}

.ProductTagging .SelectedTagValue {
    display: inline-block;
    text-transform: capitalize;
}

.Product #LeftColumn {
    margin: 0;
}


@media (min-width: 800px) {

    .Product #LeftColumn {
        margin: 0 40px 0 0;
    }

    .ProductTagging_list {
        float: none;
        width: 100%;
        margin: 0;
    }

        .ProductTagging_list .Title {
            cursor: default;
            margin-bottom: 9px;
            border: none;
            padding: 0;
            width: 100%;
            text-align: left;
        }

            .ProductTagging_list .Title:after {
                content: none;
            }

            .ProductTagging_list .Title.open {
                background: none;
                border: none;
                padding-bottom: 0;
                margin-bottom: 9px;
            }

                .ProductTagging_list .Title.open:after {
                    content: none;
                }

        .ProductTagging_list .menu {
            border: none;
            padding: 15px;
            position: static;
            display: block !important;
            width: 100%;
            min-width: 0;
        }

    .ProductTagging_selected {
        display: block;
        margin-bottom: 44px;
    }

        .ProductTagging_selected .Title + div {
            background: #f2f2f2;
            padding: 15px;
            font-size: 14px;
        }

        .ProductTagging_selected .Title {
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 9px;
        }
}


/**************************************************/
/* SPECIALS TREEVIEW
/**************************************************/
.SpecialsTreeView {
    margin-bottom: 15px;
    padding-bottom: 5px;
    padding-left: 0px;
}

    .SpecialsTreeView .Title {
        text-transform: uppercase;
        color: #333333;
        font-weight: bold;
        padding-right: 10px;
        padding-left: 0px;
        padding-bottom: 5px;
        padding-top: 10px;
        font-size: 12px;
        font-family: Tahoma;
    }

    .SpecialsTreeView .TreeView {
        padding-left: 0px;
    }

    .SpecialsTreeView .LeafNodeStyle {
        padding-left: 0px;
        padding-bottom: 5px;
    }

    .SpecialsTreeView .NodeStyle {
        font-weight: normal;
        white-space: pre-wrap;
        font-size: 10pt;
        font-family: Arial;
        padding-bottom: 2px;
        padding-top: 2px;
        color: #5C5C5C;
        padding-left: 0px;
        padding-right: 2px;
    }

/**************************************************/
/*  SPECIALS Page
/**************************************************/
#Specials {
    text-align: left;
}

    #Specials .Title {
        font-size: 26px;
        color: #6f6f6e;
        letter-spacing: 0px;
        margin: 0px 0px 10px 0px;
        padding-top: 10px;
    }

    #Specials .SpecialItem {
        text-align: left;
        width: 173px;
        height: auto;
        min-height: 220px;
        margin: 3px 5px 0px 5px;
        padding: 0px 3px 10px 3px;
        background-image: url(../images/line_seperator.gif);
        background-repeat: no-repeat;
        background-position: right center;
    }

        #Specials .SpecialItem .DetailLink {
            width: 170px;
            font-family: Arial;
            font-weight: normal;
            color: #313131;
            font-size: 13pt;
            margin-right: 5px;
            min-height: 37px;
            height: auto;
            display: inline-block;
        }

            #Specials .SpecialItem .DetailLink A:link {
                color: #000000;
                text-decoration: none;
            }

            #Specials .SpecialItem .DetailLink A:Visited {
                color: #000000;
                text-decoration: none;
            }

            #Specials .SpecialItem .DetailLink A:Hover {
                color: #000000;
                text-decoration: none;
            }

        #Specials .SpecialItem .ShortDescription {
            height: 30px;
            font-size: 9pt;
            overflow: hidden;
            font-family: Arial;
            font-weight: normal;
            color: #313131;
            margin-top: 5px;
            margin-right: 5px;
        }

        #Specials .SpecialItem .Image {
            height: 95px;
            margin-bottom: 0px;
            text-align: center;
            vertical-align: text-bottom;
        }

        #Specials .SpecialItem .BuyButton {
            margin-bottom: 0px;
            margin-top: 5px;
        }

    #Specials .ItemStyle {
        vertical-align: top;
    }

    #Specials .SpecialItem .Price {
        margin-bottom: 2px;
        font-weight: normal;
        font-size: 17px;
        color: #df7228;
        text-align: left;
    }

    #Specials .SpecialItem .RegularPrice {
        font-weight: normal;
        font-size: 18px;
        font-family: verdana,arial;
        color: #df7228;
        text-decoration: line-through;
    }

    #Specials .SpecialItem .SalePrice {
        font-weight: normal;
        font-size: 18px;
        color: #df7228;
        padding-top: 5px;
    }

    #Specials .SpecialItem .CallForPrice {
        margin-bottom: 5px;
    }
    /* --------------------BANNER ROTATOR---------------------*/
    #Specials #SlideItMoo_outer {
        position: relative;
        margin-left: 5px;
        bottom: 10px;
        margin-right: 0px;
        margin-top: 7px;
        margin-bottom: 10px;
    }

        #Specials #SlideItMoo_outer .SlideItMoo_forward,
        #Specials #SlideItMoo_outer .SlideItMoo_back {
            position: absolute;
            cursor: pointer;
            width: 25px;
            height: 240px;
            top: 15px;
            right: 30px;
            background: url(../images/RightScroll.gif) no-repeat center;
        }

        #Specials #SlideItMoo_outer .SlideItMoo_back {
            left: -15px;
            background: url(../images/LeftScroll.gif) no-repeat center;
        }

    #Specials #SlideItMoo_inner {
        width: 100%;
        overflow: hidden;
        margin: 0px 0px 0px 10px;
        padding: 10px 0px 10px 0px;
    }

    #Specials #SlideItMoo_items div.SlideItMoo_element {
        float: left;
        clear: right;
    }

/**************************************************/
/* Product Dynamic Attributes/AddOns Style
/**************************************************/

#Attributes .Option,
#Attributes .Option tbody,
#Attributes .Option tr,
#Attributes .Option td {
    display: block;
    padding: 0;
}

#Attributes .Option {
    float: left;
    margin-right: 40px;
    margin-bottom: 10px;
    text-align: left;
}

#Attributes .OptionLabel,
#Add-Ons .DropDownTitle {
    font-size: 15px;
    font-weight: 600;
    padding: 0;
    margin-bottom: 6px;
    text-align: left;
}

#Attributes .Option + .Option {
    margin-right: 0;
}

#Add-Ons .Option,
#Add-Ons .Option tbody,
#Add-Ons .Option tr,
#Add-Ons .Option td {
    display: block;
    padding: 0;
}

#Add-Ons .Option {
    float: left;
    margin-bottom: 10px;
    text-align: left;
}

#Add-Ons .DropDownOption {
    margin-bottom: 5px;
    margin: 0;
}

#Add-Ons .DropDownTitle {
    padding-right: 5px;
    width: 200px;
}

#Add-Ons .DropDownValue select {
    width: 440px;
}

#Add-Ons .OptionLabel {
    padding-right: 5px;
    width: 130px;
}

#Add-Ons .Option td {
    display: block;
    padding: 0;
}

#Add-Ons .RadioButtonOption {
    margin-bottom: 5px;
    margin: 0;
}

#Add-Ons .RadioButtonTitle {
    color: #6074A6;
    font-size: 12px;
    font-weight: bold;
    width: 130px;
    vertical-align: text-top;
    padding-top: 5px;
}

#Add-Ons .RadioButtonValue label {
    font-size: 12px;
    text-transform: uppercase;
    padding-left: 5px;
}

#Add-Ons .CheckBoxOption {
    margin-bottom: 5px;
    margin: 0;
}

#Add-Ons .CheckBoxTitle {
    color: #6074A6;
    font-size: 12px;
    font-weight: bold;
    width: 130px;
    vertical-align: text-top;
    padding-top: 5px;
}

#Add-Ons .CheckBoxValue label {
    font-size: 12px;
    text-transform: uppercase;
    padding-left: 5px;
}

/**************************************************/
/* CATEGORY DETAIL
/**************************************************/

.Category .CategoryTitle {
    display: none;
}

.Category #LeftColumn {
    display: none;
}

.CategoryDetail {
    margin-bottom: 20px;
}

    .CategoryDetail #FreeShipping {
    }

    .CategoryDetail h1 {
        margin-left: 15px;
    }

    .CategoryDetail .Description {
    }

    .CategoryDetail .AlternateDescription {
        clear: both;
        display: block;
        color: #313131;
        line-height: 3;
        position: relative;
        margin-left: 20px;
        margin-top: 15px;
    }

    .CategoryDetail #ProductListNavigation {
    }
    /*---------Paging Style Starts---------*/
    .CategoryDetail .TopPagingSection {
        background: #f2f2f2;
        padding: 8px 20px;
        margin-bottom: 40px;
        text-align: center;
    }

        .CategoryDetail .TopPagingSection:before,
        .CategoryDetail .TopPagingSection:after {
            content: "";
            display: table;
            clear: both;
        }

    .CategoryDetail .Sorting {
    }

        .CategoryDetail .Sorting .Label {
            font-size: 13px;
            display: inline-block;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .CategoryDetail .Sorting select {
            height: 30px;
            color: #333;
            font-size: 13px;
            width: 150px;
            font-family: 'Open Sans', sans-serif;
            border: 1px solid #ccc;
        }

    .CategoryDetail .TopPaging {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .CategoryDetail .Paging {
        float: right;
        font-size: 13px;
    }


@media (min-width: 620px) {
    .CategoryDetail .TopPaging {
        float: right;
        margin-top: 4px;
        margin-bottom: 0;
    }

    .CategoryDetail .Sorting {
        float: right;
        margin-right: 30px;
    }
}

@media (min-width: 800px) {
    .CategoryDetail .TopPaging {
        float: none;
        margin-top: 0;
        margin-bottom: 15px;
    }

    .CategoryDetail .Sorting {
        float: none;
        margin-right: 0;
    }

    .Category #BreadCrumb {
        display: block;
    }

    .CategoryDetail .Sorting .Label {
        margin-right: 5px;
        margin-bottom: 0;
    }

    .Category #LeftColumn {
        display: block;
    }
}

@media (min-width: 950px) {
    .CategoryDetail .TopPaging {
        float: right;
        margin-top: 4px;
        margin-bottom: 0;
    }

    .CategoryDetail .Sorting {
        float: right;
        margin-right: 30px;
    }
}

/*--------Paging Button Style----------*/
.CategoryDetail .TopPaging .Button {
    padding: 1px 10px 2px 10px;
    position: relative;
    bottom: 1px;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
}

    .CategoryDetail .TopPaging .Button[disabled="disabled"] {
        background: #ccc !important;
        color: #777;
    }

.CategoryDetail .Paging .Button {
    padding: 1px 10px 2px 10px;
    position: relative;
    bottom: 1px;
    font-size: 12px;
    color: #fff;
    font-weight: 700;
}

    .CategoryDetail .Paging .Button[disabled="disabled"] {
        background: #ccc;
        color: #777;
    }

.CategoryDetail .Pagingdropdown {
    border: #f2f2f2;
    color: #444;
    background: #f2f2f2;
    font-size: 13px;
    font-family: 'Open Sans';
    margin-right: 5px;
    height: 21px;
}

.CategoryDetail .SlashSeparator {
    margin-right: 5px;
    margin-left: 5px;
}

.CategoryDetail .BottomPaging {
    background: #f2f2f2;
    padding: 10px 20px;
    margin-bottom: 40px;
}

    .CategoryDetail .BottomPaging:after {
        content: "";
        display: table;
        clear: both;
    }

.CategoryDetail .ActivePage {
    color: #ffffff;
    background-color: #61AD40;
    text-align: center;
    padding: 1px 5px 1px 5px;
    font-size: 13px;
    margin: 0px 2px 0px 2px;
    font-weight: normal;
    text-decoration: none;
}

.CategoryDetail .InactivePage {
    color: #7F7F7F;
    background-color: #ECECEC;
    text-align: center;
    padding: 1px 5px 1px 5px;
    font-size: 13px;
    margin: 0px 2px 0px 2px;
    font-weight: normal;
    text-decoration: none;
}

.CategoryDetail .NavigationStyle {
    text-align: right;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 11px;
    color: #444444;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 3px;
    padding-top: 3px;
    border-top-width: 1px;
    border-top-color: #d3d3d3;
    border-right-width: 1px;
    border-right-color: #d3d3d3;
    border-left-width: 1px;
    border-left-color: #d3d3d3;
    border-bottom-width: 1px;
    border-bottom-color: #8e9fba;
}
/*---------Paging Style Ends--------*/
.CategoryDetail .ProductList {
    text-align: center;
    margin-bottom: 0px;
}

.CategoryDetail .CategoryProductlist {
    width: 100%;
}

    .CategoryDetail .CategoryProductlist table {
        width: 100%;
    }

.ProductListItem {
    height: 100%;
    width: 100%;
}

    .ProductListItem .GrayBorder {
        background-color: #D1D1D1;
        width: 160px;
        height: 1px;
        margin-top: 5px;
        clear: both;
        display: inline-block;
        *margin-top: 0px;
    }

    .ProductListItem .DetailLink {
        font-size: 13px;
        margin-bottom: 5px;
        font-weight: 600;
        margin-top: 20px;
        overflow: hidden;
        position: relative;
        text-align: left;
        line-height: 1.4rem;
        min-height: 2.5rem;
    }

    .ProductListItem .ShortDescription {
        height: 15px;
        font-size: 9pt;
        font-family: Arial;
        font-weight: normal;
        color: #313131;
        margin-top: 3px;
    }

    .ProductListItem a {
        color: black;
    }

    .ProductListItem .Image {
        width: 100%;
        height: 42vw;
        background: #fff;
    }

        .ProductListItem .Image a {
            width: 100%;
            height: 100%;
            display: block;
            position: relative;
        }

            .ProductListItem .Image a img {
                position: absolute;
                top: 50%;
                left: 50%;
                max-width: 100%;
                max-height: 100%;
                -webkit-transform: translate(-50%,-50%);
                -ms-transform: translate(-50%,-50%);
                transform: translate(-50%,-50%);
            }

.StarRating {
    display: none;
}

.ProductListItem .Price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ProductListItem .RegularPrice {
    font-weight: normal;
    font-size: 18px;
    font-family: verdana,arial;
    color: #df7228;
    text-decoration: line-through;
}

.ProductListItem .SalePrice {
    font-weight: normal;
    font-size: 18px;
    color: #df7228;
    padding-top: 5px;
}
/*--------View Button Style----------*/

.ProductListItem .CallForPrice {
    font-weight: normal;
    font-size: 18px;
    color: #df7228;
    text-align: left;
    margin-bottom: 5px;
}

.ProductList .Separator {
    padding-top: 20px;
}

.FeaturedCategory .SubCategoryList > table {
    width: 100%;
    margin-top: 20px;
}

    .FeaturedCategory .SubCategoryList > table > tbody > tr > td {
        padding: 0;
        display: block;
        float: left;
        width: 45%;
        margin-right: 10%;
        margin-bottom: 50px;
        text-align: center;
    }

        .FeaturedCategory .SubCategoryList > table > tbody > tr > td:nth-child(2) {
            margin-right: 0;
        }

        .FeaturedCategory .SubCategoryList > table > tbody > tr > td:last-child {
            margin-right: 0;
        }

.CategoryDetail .ProductList .ItemStyle {
    padding: 0;
    display: block;
    float: left;
    width: 45%;
    margin-right: 10%;
    margin-bottom: 50px;
    text-align: center;
}

    .CategoryDetail .ProductList .ItemStyle:nth-child(2) {
        margin-right: 0;
    }

    .CategoryDetail .ProductList .ItemStyle:last-child {
        margin-right: 0;
    }

@media (min-width: 800px) {
    .CategoryDetail .ProductListItem .Image {
        height: 14vw;
    }
}

@media (min-width: 1000px) {
    .CategoryDetail .ProductListItem .Image {
        height: 10vw;
    }

    .CategoryDetail .ProductList .ItemStyle {
        width: 22%;
        margin-right: 4%;
    }

        .CategoryDetail .ProductList .ItemStyle:nth-child(2) {
            margin-right: 4%;
        }

    .FeaturedCategory .SubCategoryList > table > tbody > tr > td {
        width: 22%;
        margin-right: 4%;
    }

        .FeaturedCategory .SubCategoryList > table > tbody > tr > td:nth-child(2) {
            margin-right: 4%;
        }
}


/*------------SubCategoryList Grid Style-------- */
.CategoryDetail .SubCategoryList {
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0px;
}

.CategoryDetail .Title {
    padding: 5px 0px 5px 5px;
    background-color: #F5F5F5;
    color: #6f6f6e;
    font-size: 25px;
    letter-spacing: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}

.CategoryDetail .SubCategoryListItem {
    text-align: center;
    margin: 0px;
}

    .CategoryDetail .SubCategoryListItem .GrayBorder {
        background-color: #D1D1D1;
        width: 160px;
        height: 1px;
        margin-top: 5px;
    }

    .CategoryDetail .SubCategoryListItem .DetailLink {
        margin-bottom: 1px;
        font-family: Arial;
        font-weight: normal;
        color: #313131;
        font-size: 13pt;
        height: 35px;
    }

    .CategoryDetail .SubCategoryListItem .ShortDescription {
        height: 15px;
        font-size: 9pt;
        font-family: Arial;
        font-weight: normal;
        color: #313131;
        margin-top: 3px;
    }

    .CategoryDetail .SubCategoryListItem .Image {
        height: 105px;
        margin-top: 2px;
        text-align: center;
    }

    .CategoryDetail .SubCategoryListItem .Price {
        border: 1px;
        font-weight: normal;
        font-size: 18px;
        color: #df7228;
        text-align: left;
        margin-bottom: 5px;
    }

    .CategoryDetail .SubCategoryListItem .RegularPrice {
        font-weight: normal;
        font-size: 18px;
        font-family: verdana,arial;
        color: #df7228;
        text-decoration: line-through;
    }

    .CategoryDetail .SubCategoryListItem .SalePrice {
        font-weight: normal;
        font-size: 18px;
        color: #df7228;
        padding-top: 5px;
    }

    .CategoryDetail .SubCategoryListItem .BuyButton {
        margin-bottom: 5px;
        margin-top: 7px;
        padding-top: 0px;
    }

    .CategoryDetail .SubCategoryListItem .CallForPrice {
        margin-bottom: 5px;
    }

    .CategoryDetail .SubCategoryListItem a {
        color: black;
    }
/*---------- SWATCHES ------------*/
.CategoryDetail .ProductListItem .ProductSwatches {
    height: auto;
    margin-top: 5px;
}

.CategoryDetail .ProductListItem .ColorCaption {
    margin-top: 4px;
    color: #848484;
    font-size: 10px;
    font-weight: bold;
    font-family: Arial;
    float: left;
    width: auto;
}

.CategoryDetail .ProductListItem .ProductViews {
    float: right;
    margin-top: -5px;
}

    .CategoryDetail .ProductListItem .ProductViews .Swatches {
        cursor: pointer;
        text-align: right;
        margin-top: 8px;
    }

        .CategoryDetail .ProductListItem .ProductViews .Swatches .ItemStyle {
            padding-left: 4px;
            padding-top: 2px;
        }

.CategoryDetail .ProductListItem .SwatchImage {
    border: solid 1px #313131;
    cursor: pointer;
    text-align: center;
    height: 10px;
}
/* Horizontal Dotted Lines between the Products.*/
.CategoryDetail .HorizontalLine {
    border-bottom: 1px solid #b8b8b8;
    display: inline-block;
    width: 762px;
    margin-top: 6px;
    margin-left: 10px;
}

/*-----------Removing the Underline For View Button Text---------------*/
.CategoryDetail .NoUnderlineText A:link {
    font-weight: bold;
    text-decoration: none;
}

/*Search Product Details*/
.CategoryDetail .Price {
    font-weight: 700;
    font-size: 20px;
}

.CategoryDetail .RegularPrice {
    text-decoration: line-through;
}

.CategoryDetail .ShortDescription {
    font-family: Arial;
    color: #666666;
}

.CategoryDetail .Image {
}

.CategoryDetail .space {
    clear: left;
    height: 15px;
}

.CategoryDetail .ProductImage {
    width: 130px;
    text-align: center;
}

/**************************************************/
/* PRODUCT DETAIL
/**************************************************/

.Product:after {
    content: '';
    display: table;
    clear: both;
}

.Product .PageTitle {
    display: none;
}

#ProductDetail {
    margin-top: 20px;
}

    #ProductDetail .Image {
        background: none;
        max-width: 400px;
        margin: 0 auto 30px;
    }

    #ProductDetail .ProductTitle {
        font-weight: 600;
        font-size: 25px;
        color: #333;
        line-height: 30px;
        margin-bottom: 7px;
        border: none;
    }

    #ProductDetail .PriceContent {
        font-weight: 700;
        font-size: 23px;
        margin-bottom: 30px;
        height: 32px;
    }

    #ProductDetail .RatingImage {
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;
    }

    #ProductDetail .OrderingOptions {
        width: 100%;
        margin: 0 auto;
    }

@media (min-width: 520px) {
    #ProductDetail .OrderingOptions {
        width: 440px;
    }
}

#ProductDetail .Quantity,
#ProductDetail .Quantity tbody,
#ProductDetail .Quantity tr,
#ProductDetail .Quantity td {
    display: block;
    padding: 0;
}

#ProductDetail .QuantityOption {
    font-weight: 600;
    font-size: 15px;
    padding: 0;
    clear: both;
    margin-bottom: 6px;
    text-align: left;
}

#ProductDetail .QuantityDropdown {
    margin-bottom: 20px;
    height: 40px;
    color: #333;
    border: 1px solid #ccc;
    font-family: 'Open Sans';
    font-size: 15px;
    padding: 0 0 0 5px;
    width: 100px !important;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

    #ProductDetail .QuantityDropdown:hover {
        background: #f4f4f4;
    }

#ProductDetail .product_embroidery .dxisControl {
    margin: 0 auto 30px auto;
    text-align: center;
    max-width: 440px;
}

    #ProductDetail .product_embroidery .dxisControl img {
        margin-left: 0 !important;
    }

    #ProductDetail .product_embroidery .dxisControl > .dxis-passePartout {
        max-width: 440px;
    }

    #ProductDetail .product_embroidery .dxisControl .dxis-imageArea {
        max-width: 440px;
    }

    #ProductDetail .product_embroidery .dxisControl .dxis-slidePanel {
        max-width: 440px;
    }

    #ProductDetail .product_embroidery .dxisControl .dxis-item {
        max-width: 440px;
    }

        #ProductDetail .product_embroidery .dxisControl .dxis-item canvas {
            position: absolute;
            top: 0;
            left: 50%;
            -webkit-transform: translateX(-50%) !important;
            -ms-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
        }

    #ProductDetail .product_embroidery .dxisControl .dxis-nbBottom {
        max-width: 440px;
    }

    #ProductDetail .product_embroidery .dxisControl > .dxis-nbBottom > .dxis-prevBtnHorWrapper,
    #ProductDetail .product_embroidery .dxisControl > .dxis-nbBottom > .dxis-nextBtnHorWrapper {
        max-width: 440px;
    }

    #ProductDetail .product_embroidery .dxisControl .dxis-nbSlidePanelWrapper {
        max-width: 440px;
        transform: none !important;
    }

    #ProductDetail .product_embroidery .dxisControl .dxis-nbBottom .dxis-nbSlidePanel {
        left: 50% !important;
        -webkit-transform: translateX(-50%) !important;
        -ms-transform: translateX(-50%) !important;
        transform: translateX(-50%) !important;
    }

#ProductDetail .AddToCartButton a {
    margin-bottom: 10px;
    box-sizing: border-box;
    font-size: 17px;
    font-weight: 600;
    width: 200px;
    padding: 11px;
    text-align: center;
    vertical-align: middle;
    margin-right: 10px;
}

#ProductDetail .AddToCartButton input {
    margin-bottom: 10px;
    box-sizing: border-box;
    font-size: 17px;
    font-weight: 600;
    width: 200px;
    padding: 11px;
    text-align: center;
    vertical-align: middle;
    margin-right: 10px;
    color: white;
    border: none;
}

#ProductDetail .DisabledAddToCartButton input {
    margin-bottom: 10px;
    box-sizing: border-box;
    font-size: 17px;
    font-weight: 600;
    width: 200px;
    padding: 11px;
    text-align: center;
    vertical-align: middle;
    margin-right: 10px;
    color: #444;
    border: none;
}

#ProductDetail #AddDesignButton {
    margin-bottom: 10px;
    box-sizing: border-box;
    font-size: 17px;
    font-weight: 600;
    width: 200px;
    padding: 11px;
    text-align: center;
    vertical-align: middle;
    margin-right: 10px;
    display: none;
}

    #ProductDetail .AddToCartButton a[style*="inline"],
    #ProductDetail #AddDesignButton[style*="inline"] {
        display: inline-block !important;
    }

.product_addtocart {
    display: inline-block;
    vertical-align: middle;
}

#ProductDetail .ItemLabel,
#ProductDetail .BrandLabel {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 3px;
}

#ProductDetail .BrandLabel {
    margin-bottom: 15px;
}

#ProductDetail .product_right {
    text-align: center;
}

#ProductDetail .product_options .StatusMsg {
    margin-bottom: 10px;
}

#ProductDetail .product_description {
    clear: both;
    border-top: 1px solid #ccc;
    padding: 30px 0;
}

#ProductDetail .Description {
    font-size: 15px;
    line-height: 25px;
}

#ProductDetail .product_description_details {
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 10px;
}

#ProductDetail hr {
    margin-bottom: 25px;
}

#ProductDetail .OrderingOptions .StatusMsg {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: red;
    background: #ffdde3;
    box-sizing: border-box;
}

#ProductDetail .StatusMsg span {
    display: inline-block;
    padding: 5px 10px;
}

#ProductDetail .OrderingOptions .StatusMsg span div {
    padding: 0;
}

#ProductDetail .OutOfStockMsg {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: red;
    background: #ffdde3;
    box-sizing: border-box;
}

    #ProductDetail .OutOfStockMsg span {
        display: block;
        padding: 5px 10px;
    }

        #ProductDetail .OutOfStockMsg span div {
            padding: 0;
        }

#ProductDetail .Label A {
    font-weight: normal;
    font-size: 10pt;
    text-decoration: none;
}

#ProductDetail .Zoom {
    margin-bottom: 20px;
    text-align: center;
}

#ProductDetail .StarRight {
    padding-left: 0px;
    margin-top: 0px;
    position: relative;
}

#ProductDetail .Tabs {
    display: none;
    border-top: 1px solid #ccc;
    padding: 30px 0;
}

#ProductDetail .Quantity {
    margin-right: 0px;
}

#ProductDetail .StockMsg {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 13px;
    color: red;
    font-weight: 600;
    text-align: center;
    width: 405px;
    background: #ffdde3;
}

    #ProductDetail .StockMsg span {
        display: block;
        padding: 5px;
    }

        #ProductDetail .StockMsg span:empty {
            padding: 0;
        }

#ProductDetail .InStockMsg {
    color: #60AF3A;
}

#ProductDetail .CallForPriceMsg {
    font-size: 14px;
    font-weight: bold;
    color: #cb5d2a;
}

#ProductDetail .addtocartText {
    text-transform: none;
}

#ProductDetail .BuyDirectFromVendor a {
    background: #44739b;
    color: white;
    margin: 15px 0 30px 0px;
    border: 1px solid #4f5353;
    width: 230px;
    text-transform: capitalize;
    font-size: 18px;
    font-family: Arial;
    padding: 5px 10px;
}

    #ProductDetail .BuyDirectFromVendor a:hover {
        background: #5088b7;
        color: white;
        margin: 15px 0 30px 0px;
        width: 230px;
        text-transform: capitalize;
        font-size: 18px;
        font-family: Arial;
        padding: 5px 10px;
    }

#ProductDetail .AttributeDropDown {
    height: 40px;
    color: #333;
    background: #fff;
    border-radius: 0;
    border: 1px solid #ccc;
    font-family: 'Open Sans';
    font-size: 15px;
    padding: 0 0 0 5px;
    width: 200px;
    cursor: pointer;
    margin-bottom: 6px;
    transition: background-color 0.2s ease;
}

    #ProductDetail .AttributeDropDown:hover {
        background: #f4f4f4;
    }

#ProductDetail .AddOnDropDown {
    height: 40px;
    color: #333;
    background: #fff;
    border-radius: 0;
    border: 1px solid #ccc;
    font-family: 'Open Sans';
    font-size: 15px;
    padding: 0 0 0 5px;
    width: 200px;
    cursor: pointer;
    margin-bottom: 6px;
    transition: background-color 0.2s ease;
}

#ProductDetail .AddOnValidator {
    padding-right: 10px;
}
/* ----------------IMAGE SLIDER STARTS------------- */
#ProductDetail #CatalogImage_outer {
}

    #ProductDetail #CatalogImage_outer .SlideItMoo_forward,
    #ProductDetail #CatalogImage_outer .SlideItMoo_back {
        display: block;
        position: absolute;
        cursor: pointer;
        width: 24px;
        height: 260px;
        bottom: 0px;
        right: 0px;
        background: url(../images/RightScroll.gif) no-repeat center;
    }

    #ProductDetail #CatalogImage_outer .SlideItMoo_back {
        left: 0px;
        background: url(../images/LeftScroll.gif) no-repeat center;
    }

#ProductDetail #CatalogImage_inner {
}

#ProductDetail #CatalogImage_items {
}

    #ProductDetail #CatalogImage_items div.CatalogImage_element {
    }

        #ProductDetail #CatalogImage_items div.CatalogImage_element img {
            width: 100% !important;
        }

    #ProductDetail #CatalogImage_items a {
    }

        #ProductDetail #CatalogImage_items a img {
            border: none;
        }

/* ----------------IMAGE SLIDER ENDS------------- */
/*---------- SWATCHES ------------*/
#ProductDetail .ProductSwatches {
    text-align: center;
    height: auto;
}

    #ProductDetail .ProductSwatches .Text {
        float: left;
        margin: 3px 20px 0px 30px;
        color: #848484;
        font-size: 10px;
        font-weight: bold;
        font-family: Arial;
    }

    #ProductDetail .ProductSwatches .ProductViews .Swatches {
    }

        #ProductDetail .ProductSwatches .ProductViews .Swatches .ItemStyle {
            padding-left: 8px;
            padding-top: 2px;
            padding-bottom: 3px;
            vertical-align: top;
        }

    #ProductDetail .ProductSwatches .SwatchImage {
        cursor: pointer;
        border: solid 1px #313131;
        cursor: pointer;
        text-align: center;
        height: 15px;
    }
/* ----------SWATCHES ENDS ---------*/



/* ----------------AJAX TAB STYLE STARTS---------- */

#ProductDetail #Tab .CustomTabStyle .ajax__tab_body {
}

#ProductDetail #Tab .CustomTabStyle .ajax__tab_outer {
}

#ProductDetail #Tab .CustomTabStyle .ajax__tab_inner {
}

#ProductDetail #Tab .CustomTabStyle .ajax__tab_tab {
    font-weight: 600;
    font-size: 21px;
    color: #333;
    line-height: 25px;
    margin-bottom: 10px;
    margin-right: 20px;
}

#ProductDetail #Tab .CustomTabStyle .ajax__tab_hover {
    cursor: pointer;
}

    #ProductDetail #Tab .CustomTabStyle .ajax__tab_hover .ajax__tab_outer {
        padding-right: 4px;
        background-position: top right;
    }

#ProductDetail #Tab .CustomTabStyle .ajax__tab_active .ajax__tab_outer {
    color: #666666;
    background-position: top right;
}

#ProductDetail #Tab .CustomTabStyle .ajax__tab_active .ajax__tab_inner {
    color: #666666;
}

#ProductDetail #Tab .Features {
    margin: 10px;
}

#ProductDetail #Tab .Reviews {
}

#ProductDetail #Tab .ShippingInfo {
    margin: 10px;
}

.ajax__scroll_vert {
    overflow: visible !important;
}

/* ----------------AJAX TAB STYLE ENDS----------------*/
#ProductDetail #RelatedTabs {
    margin-top: 20px;
    margin-left: 15px;
    vertical-align: text-bottom;
}

    #ProductDetail #RelatedTabs .RelatedProductTabStyle .ajax__tab_ {
        height: 170px;
        width: 274px;
        padding-top: 5px;
        border-top: 1px Solid #666666;
    }

    #ProductDetail #RelatedTabs .RelatedProductTabStyle .ajax__tab_tab {
        height: 19px;
        width: 134px;
        font-size: 10px;
        word-spacing: 2px;
        padding-top: 5px;
        font-family: Arial;
        font-weight: bolder;
    }

    #ProductDetail #RelatedTabs .RelatedProductTabStyle .ajax__tab_hover {
        cursor: pointer;
    }

    #ProductDetail #RelatedTabs .RelatedProductTabStyle .ajax__tab_active .ajax__tab_inner {
        background: url(../Images/tab_grey_bg.gif) no-repeat;
        text-align: center;
        color: #ffffff;
        font-size: 10px;
        word-spacing: 0px;
    }
/* ----------------AJAX RELATED TAB STYLE ENDS--------*/

#ProductDetail #DetailPageLink #InternalLinks {
    font-size: 0;
}

    #ProductDetail #DetailPageLink #InternalLinks .button_wishlist,
    #ProductDetail #DetailPageLink #InternalLinks .button_email {
        border-width: 1px;
        border-style: solid;
        background: #fff;
        padding: 8px;
        text-align: center;
        display: inline-block;
        vertical-align: middle;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        width: calc(50% - 5px);
        margin: 30px 0 15px 0;
        transition: all 0.2s ease;
        box-sizing: border-box;
    }

    #ProductDetail #DetailPageLink #InternalLinks .button_wishlist {
        margin-right: 10px;
    }

    #ProductDetail #DetailPageLink #InternalLinks .GiftImage {
        display: none;
    }

    #ProductDetail #DetailPageLink #InternalLinks .FriendImage {
        display: none;
    }


#ProductDetail #DetailPageLink #SocialLinks {
    display: none;
    float: right;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 5px;
    margin-left: 15px;
}

    #ProductDetail #DetailPageLink #SocialLinks .ShareIt {
        margin-bottom: 10px;
    }

    #ProductDetail #DetailPageLink #SocialLinks .FBImage {
        position: relative;
        top: 0px;
        right: 0px;
    }

    #ProductDetail #DetailPageLink #SocialLinks .TwitterImage {
        position: relative;
        top: 0px;
    }
/* ----------------Cross Sell Related Item------------*/
#ProductDetail .CrossSellItem .Image {
    margin: 0px;
    border: 0px;
    padding: 0px;
}

#ProductDetail .CrossSellItem #CrossSellItems_outer {
    height: 150px;
    margin-left: 5px;
    margin-top: 5px;
    overflow: hidden;
    position: relative;
    bottom: 0px;
    right: 0px;
    background: #ffffff;
    display: block;
    width: 260px !important;
}

    #ProductDetail .CrossSellItem #CrossSellItems_outer .SlideItMoo_forward,
    #ProductDetail .CrossSellItem #CrossSellItems_outer .SlideItMoo_back {
        display: block;
        position: absolute;
        cursor: pointer;
        width: 20px;
        height: 20px;
        top: 45px;
        right: 0px;
        background: url(../images/Search.gif) no-repeat center;
    }

    #ProductDetail .CrossSellItem #CrossSellItems_outer .SlideItMoo_back {
        left: 0px;
        background: url(../images/Previous_Search.png) no-repeat center;
    }

#ProductDetail .CrossSellItem #CrossSellItems_inner {
    overflow: hidden;
    position: relative;
    left: 20px;
    margin: 0px;
    padding: 0px 5px 0px 5px;
    width: 210px !important;
}

#ProductDetail .CrossSellItem #CrossSellItems {
    display: block;
    position: relative;
    width: 400px !important;
    ;
}

    #ProductDetail .CrossSellItem #CrossSellItems div.CrossSellItem {
        display: block;
        float: left;
        font-size: 11px;
        color: #FFFFFF;
    }

    #ProductDetail .CrossSellItem #CrossSellItems .Image {
        margin: 10px 5px 10px 5px;
        width: 100px;
        height: 100px;
        left: 20px;
    }

#ProductDetail .CrossSellItem .NamePriceDetail {
    width: 100px;
    margin: 0px 0px 5px 5px;
    height: 25px;
    font-size: 8pt;
    font-weight: bold;
    color: #333311;
    text-align: center;
}

    #ProductDetail .CrossSellItem .NamePriceDetail .Name {
        margin-right: 5px;
        text-align: center;
        text-wrap: normal;
    }

/* ---------------- Best Sellers ------------*/
#ProductDetail .BestSellerItem .Image {
    margin: 0px;
    border: 0px;
    padding: 0px;
}

#ProductDetail .BestSeller #BestSellers_outer {
    height: 200px;
    margin-left: 5px;
    margin-top: 5px;
    overflow: hidden;
    position: relative;
    bottom: 0px;
    right: 0px;
    background: #ffffff;
    display: block;
    width: 260px !important;
}

    #ProductDetail .BestSeller #BestSellers_outer .SlideItMoo_forward,
    #ProductDetail .BestSeller #BestSellers_outer .SlideItMoo_back {
        display: block;
        position: absolute;
        cursor: pointer;
        width: 20px;
        height: 20px;
        top: 45px;
        right: 0px;
        background: url(../images/Search.gif) no-repeat center;
    }

    #ProductDetail .BestSeller #BestSellers_outer .SlideItMoo_back {
        left: 0px;
        background: url(../images/Previous_Search.png) no-repeat center;
    }

#ProductDetail .BestSeller #BestSellers_inner {
    height: 200px;
    overflow: hidden;
    position: relative;
    left: 20px;
    margin: 0px;
    padding: 0px 5px 0px 5px;
    width: 210px !important;
}

#ProductDetail .BestSeller #BestSellers_Items {
    display: block;
    position: relative;
    width: 400px !important;
}

    #ProductDetail .BestSeller #BestSellers_Items div.BestSellerItem {
        display: block;
        float: left;
        font-size: 11px;
        color: #FFFFFF;
        margin-bottom: 50px;
    }

    #ProductDetail .BestSeller #BestSellers_Items .Image {
        margin: 10px 5px 10px 5px;
        width: 100px;
        height: 100px;
        left: 20px;
    }

#ProductDetail .BestSeller .NamePriceDetail {
    width: 100px;
    margin: 0px 0px 5px 5px;
    height: 25px;
    font-size: 8pt;
    font-weight: bold;
    color: #333311;
    text-align: center;
}

    #ProductDetail .BestSeller .NamePriceDetail .Name {
        margin-right: 5px;
        text-align: center;
        text-wrap: normal;
    }

/* ---------------- Product Reviews ------------*/
#ProductDetail #Review {
}

    #ProductDetail #Review .Sorting {
        font-size: 13px;
        font-weight: 600;
    }

    #ProductDetail #Review .TitleStyle {
        margin-right: 15px;
    }

        #ProductDetail #Review .TitleStyle + span select {
            height: 40px;
            color: #333;
            background: #fff;
            border-radius: 0;
            border: 1px solid #ccc;
            font-family: 'Open Sans';
            font-size: 15px;
            padding: 0 0 0 5px;
            width: 200px;
            transition: background-color 0.2s ease;
            cursor: pointer;
        }

            #ProductDetail #Review .TitleStyle + span select:hover {
                background: #f4f4f4;
            }

    #ProductDetail #Review .AlignRight {
        text-align: right;
    }

    #ProductDetail #Review .ItemStyle {
    }

    #ProductDetail #Review .ReviewItem {
        padding-top: 10px;
        text-align: left;
    }

        #ProductDetail #Review .ReviewItem .Title {
            font-size: 13px;
            font-weight: lighter;
            margin-top: 10px;
            margin-bottom: 10px;
            color: #444444;
            padding-right: 5px;
            padding-left: 0px;
            padding-bottom: 3px;
            padding-top: 3px;
            background-color: #eaebeb;
            border-left: #d3d3d3 1px solid;
            border-bottom: #8e9fba 1px solid;
            border-top-width: 1px;
            border-top-color: #d3d3d3;
            border-right-width: 1px;
            border-right-color: #d3d3d3;
        }

    #ProductDetail #Review .ItemStyle .Subject {
        padding-left: 10px;
        font-size: 13px;
        font-weight: bold;
        padding: 0px;
        color: #646464;
    }

    #ProductDetail #Review .ReviewItem .Text {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #ProductDetail #Review .ReviewItem .Content {
        margin-top: 5px;
        margin-bottom: 5px;
        margin-left: 10px;
        color: #646464;
    }

        #ProductDetail #Review .ReviewItem .Content .Row {
            margin-top: 5px;
            font-size: 12px;
            color: #646464;
            text-align: left;
        }

            #ProductDetail #Review .ReviewItem .Content .Row .FieldStyle {
                font-size: 12px;
                color: #646464;
                font-weight: bold;
                margin-bottom: 5px;
            }

            #ProductDetail #Review .ReviewItem .Content .Row .ValueStyle {
                margin-left: 10px;
                font-size: 12px;
                color: #646464;
                margin-bottom: 5px;
            }

    #ProductDetail #Review .Paging {
        margin-top: 5px;
        margin-bottom: 0px;
        text-align: right;
        font-size: 12px;
        color: #646464;
    }

    #ProductDetail #Review .Link {
        font-size: 11px;
        text-align: left;
        width: 40%;
    }

    #ProductDetail #Review .Spacer {
        margin-bottom: 5px;
    }
/* ---------------- Bundle Product ------------*/
#ProductDetail #BundleProduct {
    margin-bottom: 10px;
}

    #ProductDetail #BundleProduct .BundleProductlist {
        border: solid 2px #C0C0C0;
    }

    #ProductDetail #BundleProduct .BundleProductlistItem {
        width: 425px;
    }

        #ProductDetail #BundleProduct .BundleProductlistItem .Title {
            font-size: 18px;
            margin-bottom: 5px;
            margin-top: 5px;
            margin-left: 5px;
        }

        #ProductDetail #BundleProduct .BundleProductlistItem .ProductImage {
            float: left;
            width: 100px;
            margin: 0px 10px 10px 5px;
            text-align: center;
        }

    #ProductDetail #BundleProduct #Attributes .OptionLabel {
        font-size: 12px;
    }

    #ProductDetail #BundleProduct #Add-Ons {
        font-size: 12px;
    }

        #ProductDetail #BundleProduct #Add-Ons .RadioButtonOption {
            float: right;
            text-align: right
        }

        #ProductDetail #BundleProduct #Add-Ons .RadioButtonTitle {
            font-size: 12px;
        }

        #ProductDetail #BundleProduct #Add-Ons .RadioButtonValue label {
            font-size: 12px;
            text-transform: uppercase;
        }

        #ProductDetail #BundleProduct #Add-Ons .CheckBoxOption {
            float: right;
        }

        #ProductDetail #BundleProduct #Add-Ons .CheckBoxTitle {
            font-size: 12px;
        }

        #ProductDetail #BundleProduct #Add-Ons .CheckBoxValue label {
            font-size: 12px;
            text-transform: uppercase;
        }

#ProductDetail #highQualityImageWrapper {
    margin: 0 !important;
    max-width: 100%;
    width: 100% !important;
    height: auto !important;
}

    #ProductDetail #highQualityImageWrapper > img {
        max-width: 100%;
        height: auto;
    }

#ProductDetail #lowQualityImage {
    display: none;
}

#ProductDetail .dxpcLite.dxpc-mainDiv {
    left: 50% !important;
    right: auto !important;
    width: auto !important;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#imgManoj1 {
    cursor: default;
    display: inline-block;
}

@media (min-width: 1130px) {
    #ProductDetail .Image {
        float: left;
        width: 33.333333%;
        margin-right: 60px;
    }

    #ProductDetail .product_right {
        float: right;
        width: calc(66.666666% - 60px);
        text-align: left;
    }

    #ProductDetail .OrderingOptions {
        margin: 0;
    }

    #ProductDetail .product_embroidery .dxisControl {
        margin: 0 0 30px 0;
    }
}


/**************************************************/
/* EMAIL TO A FRIEND
/**************************************************/

.EmailFriend .PageTitle {
    margin-bottom: 40px;
}

.EmailFriend .Form .ValueField {
    padding: 0;
}

    .EmailFriend .Form .ValueField span[style*="inline"] {
        display: block !important;
    }

.EmailFriend .Form .Form {
    float: left;
    width: auto;
}

.EmailFriend input[type="text"] {
    width: 100%;
    box-sizing: border-box;
}

.EmailFriend .Button {
    float: right;
    width: 70px;
    margin-top: 10px;
    padding: 9px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s ease;
}

    .EmailFriend .Button:hover {
    }

.EmailFriend .SuccessMsg {
    font-size: 15px !important;
    color: #2cad5a !important;
}

.EmailFriend .Form .BackLink {
    font-size: 15px !important;
}

/**************************************************/
/* CUSTOMER REVIEW
/**************************************************/

.CustomerReview .PageTitle {
    margin-bottom: 40px;
}

.CustomerReview .ReviewLeftContent {
    width: 190px;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    margin-bottom: 15px;
}

    .CustomerReview .ReviewLeftContent:after {
        content: ":";
    }

.CustomerReview > .Container {
    float: left;
    width: 700px;
    max-width: 100%;
}

.CustomerReview .Form .Row {
    width: 100%;
}

.CustomerReview input,
.CustomerReview select,
.CustomerReview textarea {
    box-sizing: border-box;
}

.CustomerReview .Form .Row > .FieldStyle.ReviewLeftContent + div {
    width: 500px;
    max-width: calc(100% - 200px);
    float: left;
    margin-bottom: 15px;
}

.review_headline {
    width: 100%;
}

.review_rating {
    width: 100%;
    max-width: 250px;
}

.review_review {
    width: 100%;
}

    .review_review + div {
        margin-left: 0 !important;
    }

.review_name {
    width: 100%;
    max-width: 250px;
}

.review_location {
    width: 100%;
    max-width: 250px;
}

.review_note {
    margin-left: 200px;
}

.CustomerReview .Form .Row > .FieldStyle.ReviewLeftContent + div.review_buttons {
    text-align: right;
    width: 100%;
    max-width: 100%;
}

.review_cancel {
    border-width: 1px;
    border-style: solid;
    background: #fff;
    padding: 8px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
}

.review_submit {
    padding: 9px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s ease;
}

.CustomerReview .space {
    display: none;
}

/**************************************************/
/* SHOPPING CART
/**************************************************/

.ShoppingCart .PromoText span {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 19px;
}

.ShoppingCart .PageTitle {
    line-height: 70px;
    margin-bottom: 30px;
}

.ShoppingCart .btn-primary {
    margin-left: 10px;
}

#ie7css .ShoppingCart .CheckoutBox {
    margin-top: -5px;
}

.ShoppingCart .CheckoutBox {
    clear: both;
    float: right;
    font-size: 0;
}

    .ShoppingCart .CheckoutBox .Button {
        border-width: 1px;
        border-style: solid;
        background: #fff;
        padding: 8px 20px;
        text-align: center;
        display: inline-block;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        transition: all 0.2s ease;
        margin-bottom: 10px;
    }

.ShoppingCart .CompleteOrder, .CancelButton, .Form .Button, #wishlist .Button, .checkoutbox .Button, .couponcode .Button, .AddToCartButton a, .Account .Button, .CheckoutBox .checkout {
}

.ShoppingCart .CheckoutBox .Button:hover {
    background: #f4f4f4;
}

.ShoppingCart .CheckoutBox .checkout {
    padding: 9px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s ease;
}

.ShoppingCart .CustomerService {
    font-weight: bold;
    font-size: 9pt;
    font-family: Arial;
    background-color: #FFFFFF;
}

.ShoppingCart #HomeQuickSearch .Button {
    padding: 0px;
}

.ShoppingCart .Horizontal {
    display: none;
}

.ShoppingCart > div > div > div > div {
    width: 100%;
    overflow: auto;
    margin-bottom: 10px;
}

    .ShoppingCart > div > div > div > div > .Grid {
        min-width: 700px;
    }

.ShoppingCart .Grid .Quantity {
    height: 40px;
    color: #333;
    background: #fff;
    border-radius: 0;
    border: 1px solid #ccc;
    font-family: 'Open Sans';
    font-size: 15px;
    padding: 0 0 0 5px;
    width: 70px;
    cursor: pointer;
}

.ShoppingCart .Grid .RemoveItem,
.ShoppingCart .Grid .RemoveItem {
    width: 70px;
}

.ShoppingCart .Grid .AlternatingRow .RemoveItem,
.ShoppingCart .Grid .RemoveItem {
    vertical-align: middle;
    text-align: center;
}

.ShoppingCart .Grid .Header th:nth-child(5) {
    text-align: right;
}

.ShoppingCart .Grid .Header th:nth-child(4) {
    text-align: center;
}

.ShoppingCart .Grid td:nth-child(5) {
    text-align: right;
}

.ShoppingCart .Grid td:nth-child(4) {
    text-align: center;
}

.ShoppingCart .Grid .ProductName {
}

.ShoppingCart .Grid .Description {
    font-size: 14px;
    line-height: 20px;
    color: #444;
    margin-top: 2px;
}

    .ShoppingCart .Grid .Description strong {
        font-weight: 600;
    }

    .ShoppingCart .Grid .Description br {
        display: none;
    }


.ShoppingCart .Grid td:nth-child(3) .Description {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

    .ShoppingCart .Grid td:nth-child(3) .Description div {
        font-size: 14px;
        line-height: 20px;
        color: #444;
        margin-top: 7px;
    }

        .ShoppingCart .Grid td:nth-child(3) .Description div + div {
            margin-top: 0;
        }

.ShoppingCart .Update {
    font-weight: normal;
    margin-top: 5px;
}

.ShoppingCart .Quantity {
    width: 40px;
    height: 15px;
}

.ShoppingCart .CartTotals {
    margin-bottom: 10px;
    text-align: right;
}

.ShoppingCart .Apply {
    vertical-align: bottom;
    margin-top: 45px;
    color: #757575;
    font-weight: bold;
}

.ShoppingCart .TotalBox .CustomMessage {
    float: left;
    font-size: 13px;
    width: calc(100% - 250px);
}

.ShoppingCart .TotalBox .Totals {
    float: right;
}

.ShoppingCart .TotalBox .Row {
    float: right;
}

    .ShoppingCart .TotalBox .Row.Clear.bold {
        margin-bottom: 0;
    }

.ShoppingCart .TotalBox td {
    width: 122px;
    padding: 3px;
    text-align: left;
    border-bottom: solid 1px #C0C0C0;
    background-color: White;
}

.ShoppingCart .TotalBox tr {
    height: 40px;
}

.ShoppingCart .TotalBox .TotalValue {
    text-align: right;
    color: #494949
}

.ShoppingCart .bold td {
    text-align: left;
    font-weight: bold;
}

.ShoppingCart .ShipBy {
    text-align: left;
    font-weight: 600;
    color: #494949
}

.ShoppingCart .CrossSellItem {
    border: 2px solid #cccccc;
    height: auto;
    width: 175px;
    text-align: center;
    padding-right: 5px;
    padding-left: 5px;
    padding-bottom: 0px;
    padding-top: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 18px;
}

.ShoppingCart .TableContainer .TotalBox {
    width: 100%
}

    .ShoppingCart .TableContainer .TotalBox:after {
        content: "";
        display: table;
        clear: both;
    }

    .ShoppingCart .TableContainer .TotalBox .FieldValue {
    }

.ShoppingCart .ShippingText {
    padding-bottom: 20px;
    color: red
}

.ShoppingCart .PromotionText {
    margin-top: -5px;
    color: red;
    float: left;
}

#ie7css .PromotionText {
    margin-top: 13px;
    color: red;
    float: left;
}

.ShoppingCart .CartRelatedItem .ItemStyle {
    vertical-align: top;
    padding: 0px;
    text-align: left;
    padding-bottom: 5px;
}
/*.ShoppingCart .Button {padding:5px 20px 5px 20px;}*/
.ShoppingCart .GrayButton {
    background-color: #8E8E8E;
    margin-right: 5px;
}

.ShoppingCart .Totals > .Row:first-child {
    margin: 0;
}

.ShoppingCart .Totals .Error {
    margin-bottom: 15px;
    display: block;
}

    .ShoppingCart .Totals .Error:empty {
        margin-bottom: 0;
    }

/**************************************************/
/* CART ITEM RELATED PRODUCTS GRID
/**************************************************/
#CartItemRelatedProducts {
    text-align: left;
    margin-bottom: 50px;
    margin-top: 50px;
}

    #CartItemRelatedProducts .Title {
        padding: 5px 0px 5px 5px;
        background-color: #F5F5F5;
        color: #6f6f6e;
        font-size: 25px;
        letter-spacing: 0px;
        margin-bottom: 10px;
        margin-left: 0px;
    }

    #CartItemRelatedProducts .CartRelatedItem {
        vertical-align: top;
        text-align: left;
        width: 173px;
        height: 190px;
        padding-left: 5px;
        padding-right: 7px;
        margin-right: 5px;
        background-image: url(../images/line_seperator.gif);
        background-repeat: no-repeat;
        background-position: right center;
    }

        #CartItemRelatedProducts .CartRelatedItem .Price {
            font-weight: normal;
            font-size: 18px;
            color: #df7228;
            text-align: center;
        }

        #CartItemRelatedProducts .CartRelatedItem .RegularPrice {
            font-weight: normal;
            font-size: 18px;
            font-family: verdana,arial;
            color: #df7228;
            text-decoration: line-through;
        }

        #CartItemRelatedProducts .CartRelatedItem .SalePrice {
            font-weight: normal;
            font-size: 18px;
            color: #df7228;
            padding-top: 5px;
        }

        #CartItemRelatedProducts .CartRelatedItem .CallForPrice {
            margin-bottom: 5px;
        }

        #CartItemRelatedProducts .CartRelatedItem .DetailLink {
            height: 37px;
            font-family: Arial;
            font-weight: normal;
            color: #313131;
            font-size: 13pt;
        }

        #CartItemRelatedProducts .CartRelatedItem .ShortDescription {
            height: 14px;
            font-size: 9pt;
            font-family: Arial;
            font-weight: normal;
            color: #313131;
            margin-top: 3px;
        }

        #CartItemRelatedProducts .CartRelatedItem .Image {
            height: 100px;
            margin-bottom: 0px;
            text-align: center;
            vertical-align: text-bottom;
        }
    /* --------------------SLIDER---------------------*/
    #CartItemRelatedProducts #Cart_CrossSellItem_outer {
        position: relative;
        margin-left: 5px;
        bottom: 10px;
        margin-right: 0px;
        margin-top: 7px;
    }

        #CartItemRelatedProducts #Cart_CrossSellItem_outer .SlideItMoo_forward,
        #CartItemRelatedProducts #Cart_CrossSellItem_outer .SlideItMoo_back {
            position: absolute;
            cursor: pointer;
            width: 25px;
            height: 200px;
            top: 15px;
            bottom: 10px;
            right: 35px;
            background: url(../images/RightScroll.gif) no-repeat center;
        }

        #CartItemRelatedProducts #Cart_CrossSellItem_outer .SlideItMoo_back {
            left: -15px;
            background: url(../images/LeftScroll.gif) no-repeat center;
        }

    #CartItemRelatedProducts #Cart_CrossSellItem_inner {
        width: 100%;
        overflow: hidden;
        margin: 0px 0px 0px 10px;
        padding: 10px 0px 10px 0px;
    }

    #CartItemRelatedProducts #Cart_CrossSellItem_items {
    }

        #CartItemRelatedProducts #Cart_CrossSellItem_items div.Cart_CrossSellItem_element {
            float: left;
            clear: right;
        }


/*****************************************************/
/* Quick Watch page
/*****************************************************/
#Quickwatch {
    text-align: left;
    color: #666666;
}

    #Quickwatch #LeftElement {
        width: 310px;
        float: left;
        background-image: url(../Images/quickwatch_separator.jpg);
        background-position: right;
        background-repeat: no-repeat;
        height: auto;
    }

    #Quickwatch #RightElement {
        float: left;
        margin-left: 5px;
        width: 330px;
    }

    #Quickwatch .ProductDetail {
        margin-left: 0px;
    }

        #Quickwatch .ProductDetail .Title {
            font-size: 28px;
            color: #60AF3A;
        }

        #Quickwatch .ProductDetail .Description {
            font-size: 10pt;
            padding-top: 0px;
        }

        #Quickwatch .ProductDetail .ProductNum {
            font-size: 8pt;
            margin-top: 10px;
        }

        #Quickwatch .ProductDetail .StarRight {
            padding-left: 0px;
            margin-bottom: 10px;
            position: relative;
        }

    #Quickwatch .Tabs {
        margin-top: 0px;
    }

    #Quickwatch #RightElement .OrderingOptions {
        text-transform: uppercase;
        margin-top: 5px;
        margin-bottom: 5px;
        width: 340px;
        text-align: right;
    }

    #Quickwatch .Price {
        font-weight: normal;
        font-size: 15px;
        color: #df7228;
        text-align: left;
        margin-bottom: 5px;
    }

    #Quickwatch .PriceContent {
        text-transform: capitalize;
        text-align: right;
        color: #df7228;
    }

    #Quickwatch .RegularPrice {
        font-size: 17px;
        font-weight: normal;
        text-decoration: line-through;
        margin-right: 1px;
        margin-left: 2px;
    }

    #Quickwatch .SalePrice {
        font-weight: normal;
        font-size: 17px;
        color: #df7228;
        text-align: left;
        margin-bottom: 5px;
    }

    #Quickwatch .CallForPriceMsg {
        font-size: 14px;
        font-weight: bold;
        color: #cb5d2a;
    }

    #Quickwatch .StockMsg {
        margin-top: 10px;
        padding-left: 180px;
        margin-bottom: 5px;
        text-transform: capitalize;
        text-align: right;
        font-family: Arial;
        font-size: 14px;
    }

    #Quickwatch .InStockMsg {
        color: #60AF3A;
    }

    #Quickwatch .OutOfStockMsg {
        color: #E54226;
    }

    #Quickwatch .AddToCartButton {
        text-align: right;
        position: relative;
        left: 15px;
    }

    #Quickwatch .QuantityDropDown {
        font-family: Arial;
        font-size: 11px;
        width: 136px;
        height: 20px;
        color: #999999;
        border: 1px solid #B7B7B7;
    }

    #Quickwatch .AttributeDropDown {
        font-family: Arial;
        font-size: 11px;
        width: 136px;
        height: 20px;
        color: #999999;
        border: 1px solid #B7B7B7;
    }

    #Quickwatch .AddOnDropDown {
        font-family: Arial;
        font-size: 11px;
        width: 136px;
        height: 20px;
        color: #999999;
        border: 1px solid #B7B7B7;
    }

    #Quickwatch .AddOnTextBox {
        font-family: Arial;
        font-size: 11px;
        width: 136px;
        height: 20px;
        color: #999999;
        border: 1px solid #B7B7B7;
    }

    #Quickwatch .AddOnValidator {
        padding-right: 10px;
    }
    /* ----------------IMAGE SLIDER------------- */
    #Quickwatch #CatalogImage_outer {
        width: 280px;
        margin: 0px;
        background: #ffffff;
        overflow: hidden;
        position: relative;
        bottom: 0px;
        right: 9px;
        padding: 0px
    }

        #Quickwatch #CatalogImage_outer .SlideItMoo_forward,
        #Quickwatch #CatalogImage_outer .SlideItMoo_back {
            display: block;
            position: absolute;
            cursor: pointer;
            width: 24px;
            height: 260px;
            bottom: 0px;
            right: 0px;
            background: url(../images/RightScroll.gif) no-repeat center;
        }

        #Quickwatch #CatalogImage_outer .SlideItMoo_back {
            left: 0px;
            background: url(../images/LeftScroll.gif) no-repeat center;
        }

    #Quickwatch #CatalogImage_inner {
        width: 270px;
        overflow: hidden;
        position: relative;
        left: 25px;
        right: 5px;
        padding: 0px 0px 0px 0px;
        margin: 0px;
    }

    #Quickwatch #CatalogImage_items {
        display: block;
        position: relative;
        height: 250px;
        width: 270px;
    }

        #Quickwatch #CatalogImage_items div.CatalogImage_element {
            width: 270px;
            height: 260px;
            display: block;
            position: relative;
            float: left;
            margin: 0px 0px 0px 0px;
            font-size: 11px;
            text-align: center;
            color: #FFFFFF;
        }

        #Quickwatch #CatalogImage_items a {
        }

            #Quickwatch #CatalogImage_items a img {
                border: none;
            }
    /*---------- SWATCHES ------------*/
    #Quickwatch .ProductSwatches {
        text-align: left;
        margin: 10px 0px 20px 10px;
        height: 20px;
    }

        #Quickwatch .ProductSwatches .Text {
            float: left;
            margin: 3px 10px 0px 20px;
            color: #848484;
            font-size: 10px;
            font-weight: bold;
            font-family: Arial;
        }

        #Quickwatch .ProductSwatches .ProductViews .Swatches .ItemStyle {
            padding-left: 8px;
            padding-top: 2px;
            vertical-align: top;
        }

        #Quickwatch .ProductSwatches .SwatchImage {
            cursor: pointer;
            border: solid 1px #313131;
            cursor: pointer;
            text-align: left;
            height: 15px;
        }
    /* ---------------- Details Page Link ----------------*/
    #Quickwatch #DetailPageLink {
        height: 64px;
        width: 305px;
        word-spacing: 0.5px;
        color: #313131;
        font-size: 12px;
        background: #f5f5f5;
        background: url(../Images/emailfriend_bg.gif);
        background-repeat: repeat-x;
    }

        #Quickwatch #DetailPageLink #InternalLinks {
            float: left;
            margin-top: 10px;
            margin-left: 15px;
        }

            #Quickwatch #DetailPageLink #InternalLinks .GiftImage {
                position: relative;
                left: 5px;
            }

            #Quickwatch #DetailPageLink #InternalLinks .FriendImage {
                position: relative;
                left: 3px;
            }

        #Quickwatch #DetailPageLink #SocialLinks {
            float: right;
            margin-top: 10px;
            margin-right: 10px;
            margin-bottom: 5px;
            margin-left: 15px;
        }

            #Quickwatch #DetailPageLink #SocialLinks .FBImage {
                position: relative;
                top: 0px;
                right: 0px;
            }

            #Quickwatch #DetailPageLink #SocialLinks .TwitterImage {
                position: relative;
                top: 0px;
            }
    /* ----------------AJAX RELATED TAB STYLE STARTS----------------*/
    #Quickwatch #RelatedTabs {
        margin-top: 20px;
        margin-left: 0px;
    }

        #Quickwatch #RelatedTabs .RelatedProductTabStyle .ajax__tab_body {
            height: 100px;
            width: 306px;
            border-top: 1px Solid #666666;
        }

        #Quickwatch #RelatedTabs .RelatedProductTabStyle .ajax__tab_tab {
            height: 22px;
            width: 137px;
            font-size: 10px;
            word-spacing: 2px;
            padding-top: 4px;
        }

        #Quickwatch #RelatedTabs .RelatedProductTabStyle .ajax__tab_hover {
            cursor: pointer;
        }

        #Quickwatch #RelatedTabs .RelatedProductTabStyle .ajax__tab_active .ajax__tab_inner {
            background: url(../Images/tab_grey_bg.gif);
            background-repeat: repeat;
            color: #ffffff;
            font-size: 10px;
            word-spacing: 2px;
        }
    /* ----------------Cross Sell Related Item------------*/

    #Quickwatch .CrossSellItem .Image {
        margin: 0px;
        border: 0px;
        padding: 0px;
    }

    #Quickwatch .CrossSell #CrossSellItems_outer {
        height: 70px;
        overflow: hidden;
        position: relative;
        bottom: 0px;
        right: 0px;
        margin-top: 5px;
        margin-left: 5px;
        background: #ffffff;
        display: block;
        width: 290px !important;
    }

        #Quickwatch .CrossSell #CrossSellItems_outer .SlideItMoo_forward,
        #Quickwatch .CrossSell #CrossSellItems_outer .SlideItMoo_back {
            display: block;
            position: absolute;
            cursor: pointer;
            width: 14px;
            height: 50px;
            top: 10px;
            bottom: 0px;
            right: 0px;
            background: url(../images/crossSell_RightScroll.gif) no-repeat center;
        }

        #Quickwatch .CrossSell #CrossSellItems_outer .SlideItMoo_back {
            left: 0px;
            background: url(../images/crossSell_LeftScroll.gif) no-repeat center;
        }

    #Quickwatch .CrossSell #CrossSellItems_inner {
        overflow: hidden;
        position: relative;
        left: 20px;
        margin: 0px;
        padding: 0px 15px 0px 15px;
    }

    #Quickwatch .CrossSell #CrossSellItems {
        display: block;
        position: relative;
        width: 250px !important;
    }

        #Quickwatch .CrossSell #CrossSellItems div.CrossSellItem {
            display: block;
            float: left;
            padding: 0px 10px 0px 10px;
            font-size: 11px;
            text-align: center;
            color: #FFFFFF;
        }

        #Quickwatch .CrossSell #CrossSellItems .Image {
            text-align: center;
            margin: 10px 6px 10px 0px;
            width: 50px;
            height: 50px;
        }

        #Quickwatch .CrossSell #CrossSellItems a {
        }

            #Quickwatch .CrossSell #CrossSellItems a img {
                border: none;
            }
    /* ---------------- Best Sellers ------------*/
    #Quickwatch .BestSellerItem .Image {
        margin: 0px;
        border: 0px;
        padding: 0px;
    }

    #Quickwatch .BestSeller #BestSellers_outer {
        height: 70px;
        margin-left: 5px;
        margin-top: 5px;
        overflow: hidden;
        position: relative;
        bottom: 0px;
        right: 0px;
        background: #ffffff;
        display: block;
        width: 290px !important;
    }

        #Quickwatch .BestSeller #BestSellers_outer .SlideItMoo_forward,
        #Quickwatch .BestSeller #BestSellers_outer .SlideItMoo_back {
            display: block;
            position: absolute;
            cursor: pointer;
            width: 14px;
            height: 50px;
            top: 10px;
            right: 0px;
            background: url(../images/crossSell_RightScroll.gif) no-repeat center;
        }

        #Quickwatch .BestSeller #BestSellers_outer .SlideItMoo_back {
            left: 0px;
            background: url(../images/crossSell_LeftScroll.gif) no-repeat center;
        }

    #Quickwatch .BestSeller #BestSellers_inner {
        overflow: hidden;
        position: relative;
        left: 20px;
        margin: 0px;
        padding: 0px 15px 0px 15px;
        width: 270px !important;
    }

    #Quickwatch .BestSeller #BestSellers_Items {
        display: block;
        position: relative;
        width: 250px !important;
    }

        #Quickwatch .BestSeller #BestSellers_Items div.BestSellerItem {
            display: block;
            float: left;
            padding: 0px 10px 0px 10px;
            font-size: 11px;
            text-align: center;
            color: #FFFFFF;
        }

        #Quickwatch .BestSeller #BestSellers_Items .Image {
            text-align: center;
            margin: 10px 6px 10px 0px;
            width: 50px;
            height: 50px;
        }

        #Quickwatch .BestSeller #BestSellers_Items a {
        }

            #Quickwatch .BestSeller #BestSellers_Items a img {
                border: none;
            }
    /* ----------------AJAX TAB STYLE----------------*/

    #Quickwatch #Tab .CustomTabStyle .ajax__tab_body {
        height: 150px;
        width: 331px;
        *width: 339px;
        border-top: Solid 1px #c0c0c0;
        border-left: Solid 4px #c0c0c0;
        border-left: Solid 4px #c0c0c0;
        border-bottom: Solid 4px #c0c0c0;
        border-right: Solid 4px #c0c0c0;
        color: #666666;
        font-size: 10pt;
        color: #666666;
        font-size: 10pt;
        background-color: #ffffff;
    }

    #Quickwatch #Tab .CustomTabStyle .ajax__tab_outer {
        padding-right: 4px;
        background: url(../Images/Rplain.gif) no-repeat right;
        background-position: top right;
    }

    #Quickwatch #Tab .CustomTabStyle .ajax__tab_inner {
        padding-left: 4px;
        background: url(../Images/Lplain.gif) no-repeat;
    }

    #Quickwatch #Tab .CustomTabStyle .ajax__tab_tab {
        text-align: center;
        width: 105px;
        padding: 10px 0px 9px 0px;
        margin: 0;
        background: url(../Images/mplain.gif) repeat-x;
    }

    #Quickwatch #Tab .CustomTabStyle .ajax__tab_hover {
        cursor: pointer;
    }

        #Quickwatch #Tab .CustomTabStyle .ajax__tab_hover .ajax__tab_outer {
            padding-right: 4px;
            background: url(../Images/Rplain.gif) no-repeat right;
            background-position: top right;
        }

        #Quickwatch #Tab .CustomTabStyle .ajax__tab_hover .ajax__tab_inner {
            padding-left: 4px;
            background: url(../Images/Lplain.gif) no-repeat;
        }

        #Quickwatch #Tab .CustomTabStyle .ajax__tab_hover .ajax__tab_tab {
            background: url(../Images/mplain.gif) repeat-x;
        }

    #Quickwatch #Tab .CustomTabStyle .ajax__tab_active .ajax__tab_outer {
        background: url(../Images/faright.gif) no-repeat right;
        color: #333311;
        background-position: top right;
    }

    #Quickwatch #Tab .CustomTabStyle .ajax__tab_active .ajax__tab_inner {
        background: url(../Images/faleft.gif) no-repeat;
        color: #333311;
    }

    #Quickwatch #Tab .CustomTabStyle .ajax__tab_active .ajax__tab_tab {
        background: url(../Images/famiddle.gif) repeat-x;
        color: #333311;
        font-weight: 600;
    }

    #Quickwatch #Tab .Features {
        margin: 10px 0px 10px 10px;
    }

    #Quickwatch #Tab .Reviews {
        margin: 10px 0px 10px 10px;
    }

    #Quickwatch #Tab .ShippingInfo {
        margin: 10px 0px 10px 10px;
    }
    /* ---------------- Product Reviews ------------*/
    #Quickwatch #Review {
        margin-left: 10px;
        margin-right: 0px;
        width: 270px;
        color: #646464;
        font-size: 12px;
    }

        #Quickwatch #Review .ReviewList {
            width: 200px;
        }

        #Quickwatch #Review .TitleStyle {
            font-size: 11px;
            word-wrap: break-word;
            font-weight: bold;
            padding: 0px;
            color: #646464;
        }

        #Quickwatch #Review .AlignRight {
            text-align: right;
        }

        #Quickwatch #Review .ReviewItem {
            padding-top: 10px;
            text-align: left;
        }

        #Quickwatch #Review .ItemStyle {
            width: 265px;
            overflow: hidden;
        }

        #Quickwatch #Review .ReviewItem .Title {
            font-size: 13px;
            font-weight: lighter;
            margin-top: 10px;
            margin-bottom: 0px;
            color: #444444;
            padding-right: 5px;
            padding-left: 0px;
            padding-bottom: 3px;
            padding-top: 3px;
        }

            #Quickwatch #Review .ReviewItem .Title .Subject {
                padding-left: 0px;
                font-size: 13px;
                font-weight: bold;
                color: #000000;
            }

        #Quickwatch #Review .ReviewItem .Text {
            padding-top: 5px;
            padding-bottom: 5px;
        }

        #Quickwatch #Review .ReviewItem .Content {
            margin-top: 0px;
            margin-bottom: 5px;
            margin-left: 0px;
            color: #646464;
        }

            #Quickwatch #Review .ReviewItem .Content .Row {
                margin-top: 5px;
                font-size: 12px;
                color: #646464;
                text-align: left;
            }

                #Quickwatch #Review .ReviewItem .Content .Row .FieldStyle {
                    font-size: 12px;
                    color: #646464;
                    font-weight: bold;
                    margin-bottom: 5px;
                }

                #Quickwatch #Review .ReviewItem .Content .Row .ValueStyle {
                    margin-left: 10px;
                    font-size: 12px;
                    color: #646464;
                    margin-bottom: 5px;
                }

        #Quickwatch #Review .Paging {
            margin-top: 5px;
            margin-bottom: 0px;
            text-align: right;
            font-size: 12px;
            color: #646464;
        }

        #Quickwatch #Review .Sorting {
            text-align: right;
            font-size: 12px;
        }

        #Quickwatch #Review .Link {
            font-size: 11px;
            text-align: left;
            width: 40%;
        }

        #Quickwatch #Review .Spacer {
            margin-bottom: 5px;
        }

        #Quickwatch #Review .SortByDropdown {
            font-family: Arial;
            font-size: 11px;
            width: 100px;
            height: 20px;
            color: #999999;
            border: 1px solid #B7B7B7;
        }
    /* ---------------- Bundle Product ------------*/
    #Quickwatch #BundleProduct {
        margin-bottom: 10px;
        width: 340px;
    }

        #Quickwatch #BundleProduct .PageTitle {
            background-color: #f5f5f5;
            height: 25px;
            color: #333333;
            padding-bottom: 5px;
        }

        #Quickwatch #BundleProduct .BundleProductlist {
            border: solid 2px #C0C0C0;
            width: 340px;
        }

        #Quickwatch #BundleProduct .BundleProductlistItem {
            width: 340px;
        }

            #Quickwatch #BundleProduct .BundleProductlistItem .Title {
                color: #60AF3A;
                font-size: 12px;
                margin-bottom: 5px;
                margin-top: 5px;
                margin-left: 5px;
            }

            #Quickwatch #BundleProduct .BundleProductlistItem .Description {
                display: none;
            }

            #Quickwatch #BundleProduct .BundleProductlistItem .ProductImage {
                float: left;
                width: 100px;
                margin: 0px 5px 10px 5px;
            }

        #Quickwatch #BundleProduct #Attributes .OptionLabel {
            font-size: 12px;
        }

        #Quickwatch #BundleProduct #Add-Ons {
            font-size: 12px;
        }

            #Quickwatch #BundleProduct #Add-Ons .RadioButtonOption {
                float: right;
            }

            #Quickwatch #BundleProduct #Add-Ons .RadioButtonTitle {
                font-size: 12px;
            }

            #Quickwatch #BundleProduct #Add-Ons .RadioButtonValue label {
                font-size: 12px;
                text-transform: uppercase;
            }

            #Quickwatch #BundleProduct #Add-Ons .CheckBoxOption {
                float: right;
            }

            #Quickwatch #BundleProduct #Add-Ons .CheckBoxTitle {
                font-size: 12px;
            }

            #Quickwatch #BundleProduct #Add-Ons .CheckBoxValue label {
                font-size: 12px;
                text-transform: uppercase;
            }

/**************************************************/
/*  Recently Viewed Products Page
/**************************************************/
#RecentlyViewedProduct {
    display: none;
    background: #f5f5f5;
    margin-top: 10px;
    margin-bottom: 50px;
    max-height: 200px;
}

    #RecentlyViewedProduct .ItemBorder {
        margin: 0px 7px 0px 10px;
        background-color: #D1D1D1;
        width: 160px;
        height: 1px;
    }

    #RecentlyViewedProduct .RecentlyViewedItem {
        max-height: 200px;
        margin-bottom: 50px;
    }

    #RecentlyViewedProduct .CustomTitle {
        color: #333311;
        font-weight: bold;
        font-size: 10pt;
        background-color: #f5f5f5;
        width: 165px;
        padding: 7px 7px 5px 10px;
    }

    #RecentlyViewedProduct .RegularPrice {
        text-align: center;
        font-weight: bold;
        font-size: 8pt;
        color: #666666;
        text-decoration: line-through;
    }

    #RecentlyViewedProduct .SalePrice {
        text-align: center;
        font-weight: bold;
        font-size: 8pt;
        color: #cc6600;
    }

    #RecentlyViewedProduct .NamePriceDetail {
        width: 160px;
        height: 24px;
        margin: 5px 0px 10px 10px;
        font-size: 8pt;
        font-weight: bold;
        color: #333311;
    }

        #RecentlyViewedProduct .NamePriceDetail .Name {
            margin-right: 5px;
        }

        #RecentlyViewedProduct .NamePriceDetail .Price {
            text-align: center;
            font-weight: bold;
            font-size: 8pt;
            color: #cc6600;
            background-color: #f5f5f5;
        }

    #RecentlyViewedProduct .RelatedImage {
        border: 0px;
        padding: 0px;
        text-align: center;
        margin: 5px 0px 5px 0px;
    }
/* ----------------IMAGE SLIDER STARTS-------------*/
#RecentlyViewed_outer {
    overflow: hidden;
    width: 180px;
    height: 170px;
    background: #f5f5f5;
    position: relative;
    display: block;
    padding-bottom: 10px;
}

    #RecentlyViewed_outer .SlideItMoo_forward,
    #RecentlyViewed_outer .SlideItMoo_back {
        top: 45px;
        right: 10px;
        display: block;
        overflow: hidden;
        position: absolute;
        cursor: pointer;
        width: 20px;
        height: 20px;
        background: url(../images/Search.gif) no-repeat center;
    }

    #RecentlyViewed_outer .SlideItMoo_back {
        overflow: hidden;
        left: 10px;
        background: url(../images/Previous_Search.png) no-repeat center;
    }

    #RecentlyViewed_outer #RecentlyViewed_Items {
        margin-left: 0px !important;
    }

        #RecentlyViewed_outer #RecentlyViewed_Items div.RecentlyViewedItem {
            padding-bottom: 10px;
        }

        #RecentlyViewed_outer #RecentlyViewed_Items a {
        }

        #RecentlyViewed_outer #RecentlyViewed_Items .Image {
            text-align: center;
            height: 105px;
            width: 100px;
            margin-left: 40px !important;
            margin-top: 2px;
            margin-bottom: 2px;
        }

        #RecentlyViewed_outer #RecentlyViewed_Items a img {
            margin: 5px 0px 5px 0px;
        }
/* ----------------IMAGE SLIDER ENDS------------- */

/************************************************/
/* Shopping Cart Navigation						*/
/************************************************/
#NavigationCart {
    display: none;
    font-weight: bold;
    font-size: 10pt;
    color: #333311;
    font-family: Arial;
    background: #F5F5F5;
    width: 180px;
    margin-bottom: 50px;
    height: 165px;
}

    #NavigationCart .GrayBorder {
        background-color: #D1D1D1;
        width: 160px;
        height: 1px;
        margin-left: 10px;
    }

    #NavigationCart .CallForPrice {
        text-align: center;
        font-weight: bold;
        font-size: 11px;
        color: #cc6600;
    }

    #NavigationCart .RegularPrice {
        text-align: center;
        font-weight: bold;
        font-size: 8pt;
        color: #666666;
        text-decoration: line-through;
    }

    #NavigationCart .SalePrice {
        text-align: center;
        font-weight: bold;
        font-size: 8pt;
        color: #cc6600;
    }

    #NavigationCart .Price {
        text-align: left;
        font-weight: bold;
        font-size: 8pt;
        color: #cc6600;
        margin: 0px;
        padding: 0px;
    }

    #NavigationCart .ShortDescription {
        margin-bottom: 5px;
    }

    #NavigationCart .Image {
        background: #f5f5f5;
        border: 0px;
        text-align: left;
    }

    #NavigationCart #Header {
        margin: 0px;
        padding: 0px;
    }

        #NavigationCart #Header .MyCartTitle {
            float: left;
            clear: both;
            margin: 5px 0px 5px 10px;
            text-align: left;
        }

        #NavigationCart #Header .Total {
            margin: 5px 0px 0px 10px;
            width: 160px;
            font-weight: normal;
            color: #df7228;
            text-align: right;
        }

    #NavigationCart .Detail {
        width: 160px;
        height: 22px;
        margin: 2px 0px 7px 10px;
        font-size: 8pt;
        font-weight: bold;
        color: #333311;
    }

        #NavigationCart .Detail .Name {
            margin-right: 5px;
        }

    #NavigationCart .BuyButton {
        margin: 0px 0px 10px 10px;
        overflow: hidden;
        display: block;
    }
/* ----------------IMAGE SLIDER STARTS-------------*/
#NavigationCart_outer {
    overflow: hidden;
    width: 180px;
    height: 160px;
    background: #f5f5f5;
    display: block;
    position: relative;
    padding-bottom: 5px;
}

    #NavigationCart_outer .SlideItMoo_forward,
    #NavigationCart_outer .SlideItMoo_back {
        display: block;
        top: 45px;
        right: 10px;
        overflow: hidden;
        position: absolute;
        cursor: pointer;
        width: 20px;
        height: 20px;
        background: url(../images/Search.gif) no-repeat center;
    }

    #NavigationCart_outer .SlideItMoo_back {
        left: 10px;
        background: url(../images/Previous_Search.png) no-repeat center;
    }

    #NavigationCart_outer #NavigationCart_Items {
        margin-left: 0px !important;
    }

        #NavigationCart_outer #NavigationCart_Items div.NavigationCartItem {
        }

        #NavigationCart_outer #NavigationCart_Items .Image {
            text-align: center;
            height: 105px;
            width: 100px;
            margin-left: 40px !important;
            margin-top: 2px;
            margin-bottom: 2px;
        }

        #NavigationCart_outer #NavigationCart_Items a img {
            margin: 5px 0px 5px 0px;
        }
/* ----------------IMAGE SLIDER STARTS-------------*/

/**************************************************/
/*  Shop By Brand Page
/**************************************************/
.Brand {
    margin-bottom: 20px;
}

    .Brand #FreeShipping {
    }

    .Brand h1 {
        margin-left: 15px;
    }

    .Brand .Description {
        margin: 15px;
    }

    .Brand #ProductListNavigation {
    }
    /*---------Paging Style Starts---------*/
    .Brand .TopPagingSection {
    }

    .Brand .Sorting {
        float: left;
        margin-top: 10px;
    }

        .Brand .Sorting .Label {
            color: #313131;
            font-weight: bold;
            font-size: 10px;
            margin-right: 5px;
        }

        .Brand .Sorting select {
            font-size: 8pt;
            font-family: verdana;
        }

    .Brand .TopPaging {
        margin-right: 10px;
        margin-top: 10px;
        float: right;
        color: #313131;
        font-family: Arial;
        font-size: 12px;
    }

    .Brand .Paging {
        text-align: right;
        margin-right: 10px;
        margin-bottom: 10px;
        margin-top: 10px;
        color: #313131;
        font-family: Arial;
        font-size: 12px;
    }

    .Brand .Previous {
        margin-right: 5px;
        position: relative;
        top: 3px;
    }

    .Brand .Pagenumbers {
        margin-right: 5px;
        position: relative;
        top: -1px;
    }

    .Brand .Next {
        margin-left: 5px;
        margin-right: 10px;
        position: relative;
        top: 3px;
    }

    .Brand .Pagingdropdown {
        border: #f5f5f5;
        color: #313131;
        font-family: Arial;
        font-size: 12px;
        background-color: #f5f5f5;
    }

    .Brand .SlashSeparator {
        margin-right: 5px;
        margin-left: 5px;
    }

    .Brand .BottomPaging {
        height: 39px;
        float: left;
        border-top: solid 1px #c0c0c0;
        border-bottom: solid 1px #c0c0c0;
        width: 765px;
        padding-bottom: 0px;
        display: block;
        text-align: right;
    }

    .Brand .ActivePage {
        color: #ffffff;
        background-color: #61AD40;
        text-align: center;
        padding: 1px 5px 1px 5px;
        font-size: 13px;
        margin: 0px 2px 0px 2px;
        font-weight: normal;
        text-decoration: none;
    }

    .Brand .InactivePage {
        color: #7F7F7F;
        background-color: #ECECEC;
        text-align: center;
        padding: 1px 5px 1px 5px;
        font-size: 13px;
        margin: 0px 2px 0px 2px;
        font-weight: normal;
        text-decoration: none;
    }

    .Brand .NavigationStyle {
        text-align: right;
        margin-top: 15px;
        margin-bottom: 10px;
        font-size: 11px;
        color: #444444;
        padding-right: 5px;
        padding-left: 5px;
        padding-bottom: 3px;
        padding-top: 3px;
        border-top-width: 1px;
        border-top-color: #d3d3d3;
        border-right-width: 1px;
        border-right-color: #d3d3d3;
        border-left-width: 1px;
        border-left-color: #d3d3d3;
        border-bottom-width: 1px;
        border-bottom-color: #8e9fba;
    }
    /*---------Pagingn Style Ends--------*/
    .Brand .ProductList {
        text-align: left;
        margin-bottom: 0px;
        margin-left: 20px;
    }

    .Brand .BrandProductlist {
        float: left;
    }

    .Brand .BrandListItem {
        vertical-align: top;
        text-align: left;
        width: 170px;
        height: auto;
        display: inline-block;
        margin: 0px 7px 40px 7px;
    }

        .Brand .BrandListItem .GrayBorder {
            background-color: #D1D1D1;
            width: 160px;
            height: 1px;
            margin-top: 5px;
        }

        .Brand .BrandListItem .DetailLink {
            margin-bottom: 1px;
            font-family: Arial;
            font-weight: normal;
            color: #313131;
            font-size: 13pt;
            height: auto;
            display: inline-block;
        }

            .Brand .BrandListItem .DetailLink A:link {
                color: #000000;
                text-decoration: none;
            }

            .Brand .BrandListItem .DetailLink A:Visited {
                color: #000000;
                text-decoration: none;
            }

            .Brand .BrandListItem .DetailLink A:Hover {
                color: #000000;
                text-decoration: none;
            }

        .Brand .BrandListItem .ShortDescription {
            height: 15px;
            font-size: 9pt;
            font-family: Arial;
            font-weight: normal;
            color: #313131;
            margin-top: 3px;
        }

        .Brand .BrandListItem .Image {
            height: 105px;
            margin-top: 2px;
            text-align: center;
        }

        .Brand .BrandListItem .Price {
            border: 1px;
            font-weight: normal;
            font-size: 18px;
            color: #df7228;
            text-align: left;
            margin-bottom: 5px;
        }

        .Brand .BrandListItem .RegularPrice {
            font-weight: normal;
            font-size: 18px;
            font-family: verdana,arial;
            color: #df7228;
            text-decoration: line-through;
        }

        .Brand .BrandListItem .SalePrice {
            font-weight: normal;
            font-size: 18px;
            color: #df7228;
            padding-top: 5px;
        }

        .Brand .BrandListItem .BuyButton {
            margin-bottom: 5px;
            margin-top: 7px;
            padding-top: 0px;
        }

        .Brand .BrandListItem .CallForPrice {
            margin-bottom: 5px;
        }

        .Brand .BrandListItem .Separator {
            padding-top: 20px;
        }

        .Brand .BrandListItem .ItemStyle {
            padding-top: 15px;
        }
        /*---------- SWATCHES ------------*/
        .Brand .BrandListItem .ProductSwatches {
            height: 15px;
            width: 160px;
            margin-top: 5px;
        }

        .Brand .BrandListItem .ColorCaption {
            float: left;
            margin-top: 4px;
            color: #848484;
            font-size: 10px;
            font-weight: bold;
            font-family: Arial;
        }

        .Brand .BrandListItem .ProductViews .Swatches {
            cursor: pointer;
            text-align: right;
            float: right;
            margin-top: 2px;
        }

            .Brand .BrandListItem .ProductViews .Swatches .ItemStyle {
                padding-left: 4px;
                padding-top: 2px;
            }

        .Brand .BrandListItem .SwatchImage {
            border: solid 1px #313131;
            cursor: pointer;
            text-align: center;
            height: 10px;
        }

/**************************************************/
/*  Shop By Price Page
/**************************************************/
.Price {
}

    .Price #FreeShipping {
    }

    .Price h1 {
        margin-left: 15px;
    }

    .Price .Description {
        margin: 15px;
    }

    .Price #ProductListNavigation {
        height: 39px;
        border-bottom: solid 1px #c0c0c0;
        margin-bottom: 15px;
    }
    /*---------Paging Style Starts---------*/
    .Price .TopPagingSection {
    }

    .Price .Sorting {
        float: left;
        margin-top: 10px;
    }

        .Price .Sorting .Label {
            color: #313131;
            font-weight: bold;
            font-size: 10px;
            margin-right: 5px;
        }

        .Price .Sorting select {
            font-size: 8pt;
            font-family: verdana;
        }

    .Price .TopPaging {
        margin-right: 10px;
        margin-top: 10px;
        float: right;
        color: #313131;
        font-family: Arial;
        font-size: 12px;
    }

    .Price .Paging {
        text-align: right;
        margin-right: 10px;
        margin-bottom: 10px;
        margin-top: 10px;
        color: #313131;
        font-family: Arial;
        font-size: 12px;
    }

    .Price .Previous {
        margin-right: 5px;
        position: relative;
        top: 3px;
    }

    .Price .Pagenumbers {
        margin-right: 5px;
        position: relative;
        top: -1px;
    }

    .Price .Next {
        margin-left: 5px;
        margin-right: 10px;
        position: relative;
        top: 3px;
    }

    .Price .Pagingdropdown {
        border: #f5f5f5;
        color: #313131;
        font-family: Arial;
        font-size: 12px;
        background-color: #f5f5f5;
    }

    .Price .SlashSeparator {
        margin-right: 5px;
        margin-left: 5px;
    }

    .Price .BottomPaging {
        height: 39px;
        float: left;
        border-top: solid 1px #c0c0c0;
        border-bottom: solid 1px #c0c0c0;
        width: 765px;
        padding-bottom: 0px;
        display: block;
        text-align: right;
    }

    .Price .ActivePage {
        color: #ffffff;
        background-color: #61AD40;
        text-align: center;
        padding: 1px 5px 1px 5px;
        font-size: 13px;
        margin: 0px 2px 0px 2px;
        font-weight: normal;
        text-decoration: none;
    }

    .Price .InactivePage {
        color: #7F7F7F;
        background-color: #ECECEC;
        text-align: center;
        padding: 1px 5px 1px 5px;
        font-size: 13px;
        margin: 0px 2px 0px 2px;
        font-weight: normal;
        text-decoration: none;
    }

    .Price .NavigationStyle {
        text-align: right;
        margin-top: 15px;
        margin-bottom: 10px;
        font-size: 11px;
        color: #444444;
        padding-right: 5px;
        padding-left: 5px;
        padding-bottom: 3px;
        padding-top: 3px;
        border-top-width: 1px;
        border-top-color: #d3d3d3;
        border-right-width: 1px;
        border-right-color: #d3d3d3;
        border-left-width: 1px;
        border-left-color: #d3d3d3;
        border-bottom-width: 1px;
        border-bottom-color: #8e9fba;
    }
    /*---------Pagingn Style Ends--------*/
    .Price .ProductList {
        text-align: left;
        margin-bottom: 0px;
        margin-left: 20px;
    }

    .Price .PriceProductlist {
        float: left;
    }

    .Price .PriceListItem {
        vertical-align: top;
        text-align: left;
        width: 170px;
        height: auto;
        display: inline-block;
        margin: 0px 7px 40px 7px;
    }

        .Price .PriceListItem .GrayBorder {
            background-color: #D1D1D1;
            width: 160px;
            height: 1px;
            margin-top: 5px;
        }

        .Price .PriceListItem .DetailLink {
            margin-bottom: 1px;
            font-family: Arial;
            font-weight: normal;
            color: #313131;
            font-size: 13pt;
            height: auto;
            display: inline-block;
        }

        .Price .PriceListItem .ShortDescription {
            height: 15px;
            font-size: 9pt;
            font-family: Arial;
            font-weight: normal;
            color: #313131;
            margin-top: 3px;
        }

        .Price .PriceListItem .Image {
            height: 105px;
            margin-top: 2px;
            text-align: center;
        }

        .Price .PriceListItem .Price {
            border: 1px;
            font-weight: normal;
            font-size: 18px;
            color: #df7228;
            text-align: left;
            margin-bottom: 5px;
        }

        .Price .PriceListItem .RegularPrice {
            font-weight: normal;
            font-size: 18px;
            font-family: verdana,arial;
            color: #df7228;
            text-decoration: line-through;
        }

        .Price .PriceListItem .SalePrice {
            font-weight: normal;
            font-size: 18px;
            color: #df7228;
            padding-top: 5px;
        }

        .Price .PriceListItem .BuyButton {
            margin-bottom: 5px;
            margin-top: 7px;
            padding-top: 0px;
        }

        .Price .PriceListItem .CallForPrice {
            margin-bottom: 5px;
        }

        .Price .PriceListItem .Separator {
            padding-top: 20px;
        }

        .Price .PriceListItem .ItemStyle {
            padding-top: 15px;
        }
        /*---------- SWATCHES ------------*/
        .Price .PriceListItem .ProductSwatches {
            height: 15px;
            width: 160px;
            margin-top: 5px;
        }

        .Price .PriceListItem .ColorCaption {
            float: left;
            margin-top: 4px;
            color: #848484;
            font-size: 10px;
            font-weight: bold;
            font-family: Arial;
        }

        .Price .PriceListItem .ProductViews .Swatches {
            cursor: pointer;
            text-align: right;
            float: right;
            margin-top: 2px;
        }

            .Price .PriceListItem .ProductViews .Swatches .ItemStyle {
                padding-left: 4px;
                padding-top: 2px;
            }

        .Price .PriceListItem .SwatchImage {
            border: solid 1px #313131;
            cursor: pointer;
            text-align: center;
            height: 10px;
        }

/**************************************************/
/* News Letter Singup
/**************************************************/
#NewsLetter {
    margin-bottom: 35px;
}

    #NewsLetter .Title {
        text-transform: uppercase;
        color: #333333;
        padding-right: 10px;
        padding-left: 0px;
        padding-bottom: 5px;
        padding-top: 10px;
        font-size: 12px;
        font-family: Tahoma;
        font-weight: bold;
    }

    #NewsLetter .Text {
        text-decoration: none;
        color: #5C5C5C;
        padding-left: 0px;
    }

/**************************************************/
/* PRODUCT SEARCH
/**************************************************/

.DetailLink a {
    color: black !important;
}

#ProductSearch {
}

    #ProductSearch h1 {
        margin-left: 15px;
        margin-top: 10px;
    }

    #ProductSearch .Description {
        margin-left: 15px;
        margin-bottom: 15px;
    }

    #ProductSearch .SearchForm {
        margin-bottom: 0px;
        border-bottom: solid 1px #c0c0c0;
        margin-left: 20px;
    }

        #ProductSearch .SearchForm .Row {
            height: 40px;
        }

        #ProductSearch .SearchForm .FieldStyle {
            text-align: right;
            width: 140px;
            left: 215px;
            white-space: nowrap;
            font-size: 11px;
            font-weight: bold;
            color: #4b4b4b;
            margin-bottom: 10px;
            padding-right: 10px;
            padding-top: 6px;
        }

        #ProductSearch .SearchForm .ValueStyle {
            margin-left: 160px;
            font-size: 11px;
            font-weight: normal;
            color: #333333;
            margin-bottom: 10px;
            padding-right: 10px;
            padding-top: 0px;
            margin-top: -30px;
        }

.SearchResults:after {
    display: table;
    content: '';
    clear: both;
}

.SearchResults > .Title {
    font-weight: 600;
    font-size: 40px;
    color: #333;
    line-height: 40px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin: 0;
}

.SearchResults > #MiddleColumn {
    margin-top: 20px;
}

.SearchResults > #LeftColumn {
    margin-top: 74px;
}

.SearchResults .CategoryDetail > div {
    margin: 0 !Important;
}

.SearchResults .CategoryDetail .TopPagingSection {
    width: 100% !important;
    box-sizing: border-box;
    margin-bottom: 0;
}

.SearchResults .CategoryDetail .UnderlineText {
    border-bottom: 1px solid #ddd;
}

.SearchResults .ProductImage .Image {
    margin-top: -45px;
}

.SearchResults .ProductLink {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
}

.SearchResults .Price {
    margin-bottom: 10px;
}

.SearchResults .BoldTitle {
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 5px;
}

.SearchResults .ShortDescription {
    display: none;
}

    .SearchResults .CallForPrice + br,
    .SearchResults .BoldTitle + br,
    .SearchResults .ShortDescription + br,
    .SearchResults .StarRating + br {
        display: none;
    }

.SearchResults .reviews_title {
    display: none;
}

.SearchResults .HorizontalLine {
    display: none;
}

.SearchResults .Button {
    padding: 9px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s ease;
}

.SearchResults .ItemStyle_details {
    float: left;
}

.SearchResults .ItemStyle_view {
    clear: both;
    float: left;
    margin-bottom: 20px;
}

.SearchResults .BottomPaging {
    margin: 0 !important;
}

    .SearchResults .BottomPaging .Sorting {
        display: none;
    }

.SearchResults .space {
    display: none;
}

.SearchResults .CategoryProductlist table tr:last-child td .UnderlineText {
    border: none;
}

.SearchError {
}

.SearchFound {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 20px;
    text-align: center;
}



@media (min-width: 700px) {
    .SearchResults .ItemStyle_view {
        clear: none;
        float: right;
        margin-top: 5px;
        margin-bottom: 0;
    }
}

@media (min-width: 800px) {
    .SearchFound {
        margin-bottom: 5px;
        text-align: left;
    }

    .SearchResults .ItemStyle_view {
        clear: both;
        float: left;
        margin-bottom: 20px;
    }
}

@media (min-width: 1000px) {
    .SearchFound {
        margin-bottom: 5px;
        text-align: left;
    }

    .SearchResults .ItemStyle_view {
        clear: none;
        float: right;
        margin-top: 5px;
        margin-bottom: 0;
    }
}



/**************************************************/
/* Wish List Grid
/**************************************************/
.WishList {
}

    .WishList .Grid {
        width: 100%;
    }

    .WishList .Header {
    }

    .WishList .Grid .Row {
        background: #f2f2f2;
    }

    .WishList .Grid .AlternatingRow {
        background: #fff;
    }

    .WishList .Grid .Description {
        font-size: 13px;
        color: #868686;
        padding-top: 5px;
    }

    .WishList .Grid .CallForPrice {
        text-align: center;
        font-weight: bold;
        font-size: 12px;
        color: #646464;
    }

    .WishList .RegularPrice {
        text-align: center;
        font-weight: bold;
        font-size: 12px;
        color: #646464;
        text-decoration: line-through;
    }

    .WishList .SalePrice {
        text-align: center;
        font-weight: bold;
        font-size: 12px;
        color: #cc6600;
        padding-top: 5px;
    }

    .WishList .Grid tr td:first-child a {
        font-size: 0;
    }

        .WishList .Grid tr td:first-child a:hover {
            text-decoration: none;
        }

        .WishList .Grid tr td:first-child a:after {
            content: '\f057';
            font-family: 'FontAwesome';
            visibility: visible;
            font-size: 28px;
            color: #CC3333;
            margin-left: 17px;
        }

    .WishList .Grid .Header th:nth-child(2) {
        display: none;
    }

    .WishList .Grid tr td:nth-child(2) {
        display: none;
    }

    .WishList .Grid tr td:last-child {
        text-align: right;
    }

.WishListGrid-mobile tr td:nth-child(3) .Description + a {
    color: red;
    font-size: 12px;
}

.Account .WishListGrid-mobile tr td .Button {
    padding: 6px 15px;
    min-width: 0;
}

.WishList .Grid {
    display: none;
}

.WishList .WishListGrid-mobile {
    display: table;
}

@media (min-width: 550px) {
    .WishList .Grid {
        display: table;
    }

    .WishList .WishListGrid-mobile {
        display: none;
    }
}


/**************************************************/
/* GiftCardHistory List Grid
/**************************************************/
.GiftCardHistory {
    font-size: 14px;
    width: 100%;
    overflow-x: auto;
}

    .GiftCardHistory > div {
        min-width: 700px;
    }

        .GiftCardHistory > div + div {
            display: none;
        }

.Account .GiftCardHistory .Grid {
    width: 100%;
    margin-bottom: 0;
}

.GiftCardHistory .Header {
}

.GiftCardHistory .Grid .Header th {
    padding: 5px 15px;
}

.GiftCardHistory .Header th:first-child {
    width: 130px;
}

.GiftCardHistory .Header th:nth-child(4) {
    text-align: right;
}

.GiftCardHistory .Header th:nth-child(5) {
    text-align: right;
    width: 190px;
}

.GiftCardHistory .Header th:last-child {
    width: 200px;
}

.GiftCardHistory .Grid .Row td:last-child,
.GiftCardHistory .Grid .AlternatingRow td:last-child {
    text-align: right;
}

.GiftCardHistory .Grid .Row td:nth-child(5),
.GiftCardHistory .Grid .AlternatingRow td:nth-child(5) {
    text-align: right;
}

.GiftCardHistory .Grid {
    border: none;
}

    .GiftCardHistory .Grid .GiftCardHistoryID {
    }

    .GiftCardHistory .Grid .CardNumber {
    }

    .GiftCardHistory .Grid .TransactionDate, .GiftCardHistory .Grid .TransactionAmount {
    }

.Grid .GiftCardHistory_paging {
    border-top: 1px solid #ccc;
}

    .Grid .GiftCardHistory_paging a {
        color: inherit;
        text-decoration: underline;
        font-weight: normal;
    }

    .Grid .GiftCardHistory_paging span {
        color: #959595;
    }

    .Grid .GiftCardHistory_paging td {
        padding: 5px 6px;
    }

        .Grid .GiftCardHistory_paging td:first-child {
            padding: 5px;
        }

    .Grid .GiftCardHistory_paging > td:first-child {
        padding: 5px 0 0 0;
    }

/**************************************************/
/* GRID
/**************************************************/

.Grid {
    width: 100%;
    border-bottom: 1px solid #eee;
}

    .Grid .Header {
        text-transform: uppercase;
        font-weight: 700;
        font-size: 15px;
    }

        .Grid .Header th {
            padding: 5px 15px;
        }

    .Grid td {
        padding: 15px 15px;
    }

    .Grid .Header th:last-child {
        padding-right: 15px;
    }

    .Grid td:last-child {
        padding-right: 15px;
    }

    .Grid .Header th:first-child {
        padding-left: 15px;
    }

    .Grid td:first-child {
        padding-left: 15px;
    }

    .Grid .Row {
        background: #f2f2f2;
    }

    .Grid .AlternatingRow {
        background: #fff;
    }

    .Grid .RemoveItem i.fa-times-circle {
        color: red;
        font-size: 25px;
        line-height: 22px;
        transition: color 0.2s ease;
    }

    .Grid .RemoveItem a {
        background: #fff;
        display: block;
        width: 21px;
        height: 21px;
        border-radius: 50%;
        margin: 0 auto;
        position: relative;
        left: -6px;
    }

    .Grid .RemoveItem input {
        cursor: pointer;
    }

    .Grid img {
        max-width: 50px;
        max-height: 50px;
        display: block;
        margin: 0 auto;
    }

    .Grid a {
        color: black;
        font-weight: 700;
        text-decoration: none;
    }

        .Grid a:hover {
            text-decoration: underline;
        }


.HeaderStyle {
}

.RowStyle {
    background: #f2f2f2;
}

.AlternatingRowStyle {
    background: #fff;
}

.FooterStyle {
    background-color: #507CD1;
    color: white;
    font-weight: bold;
}

.PagerStyle {
    background-color: #fbfbfb;
    text-align: center;
}

/**************************************************/
/* SITE MAP
/**************************************************/
.SiteMap {
}

    .SiteMap h1 {
        padding-left: 0px;
    }

    .SiteMap .ShoppingCartNavigation {
        margin-right: 20px;
    }

    .SiteMap h5 {
        margin-left: 15px;
        margin-top: 0px;
    }

    .SiteMap .CatalogMap {
        width: 350px;
        padding-left: 5px;
    }

    .SiteMap #MiddleColumn {
        padding-top: 0 !important;
    }

        .SiteMap #MiddleColumn .CatalogMap {
            padding: 0;
        }

            .SiteMap #MiddleColumn .CatalogMap .CategoryNavigation .Title {
                font-weight: 700;
                font-size: 16px;
                margin-bottom: 10px;
                margin-top: 0;
                line-height: 20px;
                text-transform: uppercase;
            }

                .SiteMap #MiddleColumn .CatalogMap .CategoryNavigation .Title + div {
                    background: #f2f2f2;
                    padding: 14px 15px 13px 15px;
                }

            .SiteMap #MiddleColumn .CatalogMap .Title {
                padding: 0;
                margin-bottom: 20px;
            }

    .SiteMap .PageTitle {
        margin-bottom: 30px;
    }

    /**************************************************/
    /* SHOPPING CART NAVIGATION
/**************************************************/

    .SiteMap .ShoppingCartNavigation {
        background: #f2f2f2;
        padding: 10px 0;
    }

        .SiteMap .ShoppingCartNavigation table {
            width: 100%;
        }

        .SiteMap .ShoppingCartNavigation .NodeStyle {
            padding: 0;
            border-bottom: none;
            display: block;
        }

            .SiteMap .ShoppingCartNavigation .NodeStyle a {
                padding: 5px 20px;
                display: block;
                font-weight: 600;
            }

                .SiteMap .ShoppingCartNavigation .NodeStyle a:hover {
                    text-decoration: underline;
                }

        .SiteMap .ShoppingCartNavigation .RootNodeStyle {
            text-transform: uppercase;
            color: #333333;
            font-weight: bold;
            padding-right: 10px;
            padding-left: 0px;
            padding-bottom: 5px;
            padding-top: 10px;
            font-size: 12px;
            font-family: Tahoma;
        }

        .SiteMap .ShoppingCartNavigation .ParentNodeStyle {
        }

        .SiteMap .ShoppingCartNavigation .SelectedNodeStyle {
        }

/***************************************************/
/* STORE LOCATOR
/***************************************************/
.StoreLocator {
    margin-bottom: 20px;
}

    .StoreLocator h1 {
        padding-left: 0px;
    }

    .StoreLocator .SearchContent {
        background-color: white;
        padding-left: 10px;
        width: 440px;
        margin-bottom: 10px;
    }

        .StoreLocator .SearchContent table {
            margin-left: 10px;
            margin-top: 15px;
            color: White;
        }

    .StoreLocator .Row {
        padding-bottom: 10px;
    }

    .StoreLocator .FieldStyle {
        vertical-align: top;
        display: block;
        white-space: nowrap;
        font-size: 11px;
        font-weight: bold;
        color: #6F6F6E;
        text-align: right;
        margin-bottom: 10px;
        padding-right: 10px;
        padding-top: 6px;
    }

    .StoreLocator .Button {
    }

.StoreList {
}

    .StoreList .TextContent {
        float: left;
        margin-left: 5px;
        margin-top: 20px;
    }

        .StoreList .TextContent div {
            margin-bottom: 4px;
        }

    .StoreList .ImageContent {
        float: right;
    }

    .StoreList .Address {
        color: Black;
    }


/**************************************************/
/*  ACCOUNT
/**************************************************/

.Account .PageTitle {
    font-weight: 600;
    font-size: 40px;
    color: #333;
    line-height: 40px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin: 0 0 20px 0;
}

@media (min-width: 800px) {
    .Account .PageTitle {
        font-size: 45px;
        line-height: 70px;
    }
}

.Account_login {
    background: #f2f2f2;
    padding: 20px;
    line-height: 25px;
    margin-top: 10px;
}

    .Account_login .HeaderStyle,
    .Account_login img,
    .Account_login br {
        display: none;
    }

    .Account_login .LeftContent span {
        display: block;
        font-weight: 600;
    }

    .Account_login .Button {
        box-shadow: none;
        text-decoration: underline;
    }

    .Account_login .RightContent {
        float: none;
    }

.Account .Grid {
    margin-top: 20px;
    margin-bottom: 20px;
}


.AddressGrid {
    display: none;
}

.AddressGrid-mobile {
    display: block;
}

.AddressGrid {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 50px;
}

    .AddressGrid .Grid {
        margin-bottom: 0;
    }

    .AddressGrid > img,
    .AddressGrid > br {
        display: none;
    }

.AddressGrid-mobile td:first-child span {
    display: block;
    font-size: 11px;
}

.AddressGrid-mobile td:nth-child(4) span {
    display: block;
    margin-bottom: 10px;
}

.Account .AddressGrid-mobile .Grid td .Button {
    min-width: 0;
    padding: 6px 15px;
}

@media (min-width: 800px) {
    .AddressGrid {
        display: block;
    }

    .AddressGrid-mobile {
        display: none;
    }
}

.Account .Grid .HeaderStyle {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
}

    .Account .Grid .HeaderStyle th {
        padding: 5px 15px;
    }

        .Account .Grid .HeaderStyle th:last-child {
            padding-right: 15px;
        }

        .Account .Grid .HeaderStyle th:first-child {
            padding-left: 15px;
        }

        .Account .Grid .HeaderStyle th:nth-child(2),
        .Account .Grid .HeaderStyle th:nth-child(3) {
            text-align: center;
        }

.Account .Grid td .Button {
    min-width: 55px;
    margin: 5px 3px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 9px 20px;
    border: none;
    display: inline-block;
}

    .Account .Grid td .Button:hover {
        text-decoration: none;
    }

.Account h5,
.Account .HeaderStyle {
    font-weight: 600;
    font-size: 25px;
    color: #333;
    line-height: 20px;
    margin-bottom: 7px;
    background: none;
    border: none;
    border-top: 1px solid #ccc;
    padding-top: 40px;
}

.Account .Grid .HeaderStyle {
    border: none;
}

.Account .dxgvControl_MetropolisBlue .dxgvHeader_MetropolisBlue td {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    padding: 4px 2px 5px;
    color: #444;
}

.dxgvControl_MetropolisBlue {
    border: none;
}

.dxgvHeader_MetropolisBlue {
    border: none;
    padding: 4px 3px 5px;
}

.dxgvFilterRow_MetropolisBlue td.dxgv {
    border: none;
}

.grid_check {
    text-align: center;
}
    /* .grid_check img { display:none; } */
    .grid_check[title="~/SiteAdmin/Themes/Images/206-enable.gif"]:after {
        font-family: 'FontAwesome';
        content: '\f00c';
        color: #444;
        font-size: 21px;
    }

    .grid_check[title="~/SiteAdmin/Themes/Images/202-delete.gif"] {
    }

/*Order History Grid*/

.dxgvTable_MetropolisBlue {
    border-bottom: 1px solid #eee;
}

    .dxgvTable_MetropolisBlue > tbody > tr:nth-child(2) > td {
        padding-right: 30px;
    }

        .dxgvTable_MetropolisBlue > tbody > tr:nth-child(2) > td input {
            font-family: 'Open Sans';
            font-size: 14px;
            color: #444;
            padding: 0 10px;
        }

        .dxgvTable_MetropolisBlue > tbody > tr:nth-child(2) > td img {
            margin: 0 7px;
        }

.dxeFocused_MetropolisBlue {
    border-color: #cccccc;
}

.dxeButtonEditButtonHover_MetropolisBlue {
    background: #fff;
}

.dxeButtonEditButtonPressed_MetropolisBlue {
    background: #fff;
}

.dxEditors_edtDropDown_MetropolisBlue {
    background-position: -84px -298px !important;
}

.dxgvFilterRow_MetropolisBlue {
    display: none;
}

@media (min-width: 800px) {
    .dxgvFilterRow_MetropolisBlue {
        display: table-row;
    }
}

.dxeListBoxItem_MetropolisBlue {
    text-indent: 5px;
    font-size: 14px;
    cursor: pointer;
    padding-top: 5px;
    padding-bottom: 5px;
}

.dxgvDataRow_MetropolisBlue {
    background: #f2f2f2;
}

    .dxgvDataRow_MetropolisBlue + .dxgvDetailRow_MetropolisBlue {
        background: #f2f2f2;
    }

.dxgvDataRowAlt_MetropolisBlue {
    background: #fff;
}

    .dxgvDataRowAlt_MetropolisBlue + .dxgvDetailRow_MetropolisBlue {
        background: #fff;
    }

.dxgvTable_MetropolisBlue > tbody > tr > td:first-child {
    padding-left: 15px;
}

.dxgvTable_MetropolisBlue > tbody > tr > td:last-child {
    padding-right: 15px;
}

.dxgvTable_MetropolisBlue > tbody > tr:first-child > td:first-child {
    padding-left: 0;
}

.dxgvTable_MetropolisBlue > tbody > tr:first-child > td:last-child {
    padding-right: 0;
}

.dxgvControl_MetropolisBlue, .dxgvDisabled_MetropolisBlue {
    font-size: 14px;
    font-family: 'Open Sans';
}

.dxgvEditFormDisplayRow_MetropolisBlue td.dxgv, .dxgvDetailCell_MetropolisBlue td.dxgv, .dxgvDataRow_MetropolisBlue td.dxgv, .dxgvDetailRow_MetropolisBlue.dxgvADR td.dxgvAIC {
    border: none;
    padding: 10px 6px 11px;
    color: #444;
}

.dxgvControl_MetropolisBlue a {
    font-weight: 600;
    color: inherit;
}

.dxgvControl_MetropolisBlue,
.dxgvControl_MetropolisBlue > tbody,
.dxgvControl_MetropolisBlue > tbody > tr,
.dxgvControl_MetropolisBlue > tbody > tr > td {
    display: block;
}

    .dxgvControl_MetropolisBlue > tbody > tr > td {
        width: 100%;
        margin-bottom: 20px;
        overflow-x: auto;
    }

.Account .dxgvControl_MetropolisBlue .dxgvHeader_MetropolisBlue td {
    white-space: normal
}

.dxgvControl_MetropolisBlue .dxgvTable_MetropolisBlue > tbody > tr > td:last-child {
    text-align: right;
}

.dxgvControl_MetropolisBlue .dxgvTable_MetropolisBlue > tbody > tr > td:first-child {
    display: none;
}

.dxgvControl_MetropolisBlue .dxgvPagerBottomPanel_MetropolisBlue .dxp-summary {
    display: none;
}

.dxgvControl_MetropolisBlue .dxgvPagerBottomPanel_MetropolisBlue .dxp-pageSizeItem {
    display: none;
}

.dxgvControl_MetropolisBlue .dxAC {
    overflow: visible !important;
    width: auto !important;
}

    .dxgvControl_MetropolisBlue .dxAC > div {
        margin-left: 0 !important;
        width: auto !important;
        transition: none !important;
    }

@media (min-width: 800px) {
    .Account .dxgvControl_MetropolisBlue .dxgvHeader_MetropolisBlue td {
        white-space: nowrap
    }

    .dxgvControl_MetropolisBlue .dxgvTable_MetropolisBlue > tbody > tr > td:first-child {
        display: table-cell;
    }

    .dxgvControl_MetropolisBlue .dxgvPagerBottomPanel_MetropolisBlue .dxp-summary {
        display: block;
    }

    .dxgvControl_MetropolisBlue .dxgvPagerBottomPanel_MetropolisBlue .dxp-pageSizeItem {
        display: block;
    }
}


.dxeTextBox_MetropolisBlue {
    margin-bottom: 8px;
}

.dxeButtonEditSys.dxeButtonEdit_MetropolisBlue {
    margin-bottom: 8px;
}

.dxpLite_MetropolisBlue {
    font-family: 'Open Sans';
    font-size: 14px;
    padding-left: 0;
    padding-right: 0;
    color: inherit;
}

    .dxpLite_MetropolisBlue .dxp-summary {
        padding-left: 0;
        color: #444;
    }

    .dxpLite_MetropolisBlue .dxp-num {
        color: inherit;
        padding: 3px 5px;
        text-decoration: underline;
    }

    .dxpLite_MetropolisBlue .dxp-current {
        background: none;
        color: #959595;
        text-decoration: none;
    }

    .dxpLite_MetropolisBlue .dxp-pageSizeItem {
        padding: 0;
    }

        .dxpLite_MetropolisBlue .dxp-pageSizeItem label {
            color: #444;
        }

    .dxpLite_MetropolisBlue .dxp-comboBox {
        margin: 0;
    }

        .dxpLite_MetropolisBlue .dxp-comboBox input {
            margin: 2px 1px 2px 7px;
        }

.dxp-lead + .dxp-button,
.dxp-num + .dxp-button {
    position: relative;
    margin: 0;
    padding: 0 !important;
}

    .dxp-lead + .dxp-button img,
    .dxp-num + .dxp-button img {
        visibility: hidden;
    }

    .dxp-num + .dxp-button:after {
        visibility: visible;
        position: absolute;
        content: '\f0da';
        font-family: 'FontAwesome';
        color: #555;
        font-size: 19px;
        top: 7px;
    }

    .dxp-num + .dxp-button.dxp-disabledButton:after {
        color: #999;
    }

    .dxp-lead + .dxp-button:after {
        visibility: visible;
        position: absolute;
        content: '\f0d9';
        font-family: 'FontAwesome';
        color: #555;
        font-size: 19px;
        top: 7px;
    }

    .dxp-lead + .dxp-button.dxp-disabledButton:after {
        color: #999;
    }

/*inner grid*/

.dxgvDetailRow_MetropolisBlue td.dxgvDetailCell_MetropolisBlue {
    padding: 2px 0px 20px;
}

.dxgvDetailCell_MetropolisBlue .dxgvControl {
    border: 1px solid #cccccc;
    font-family: 'Open Sans';
    font-size: 13px;
}

    .dxgvDetailCell_MetropolisBlue .dxgvControl .dxgvHeader {
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 700;
        background: #e2e2e2;
        border-right: 0;
        padding: 9px 9px;
        border-bottom: #fff;
        color: #444;
    }

        .dxgvDetailCell_MetropolisBlue .dxgvControl .dxgvHeader table {
            color: #333;
        }

.dxgvDetailCell_MetropolisBlue td.dxgv {
    padding: 9px 9px;
}

.dxgvDetailCell_MetropolisBlue .dxgvControl .dxgvTable > tbody > tr > td:nth-child(3),
.dxgvDetailCell_MetropolisBlue .dxgvControl .dxgvTable > tbody > tr > td:nth-child(4) {
    text-align: right;
}

.dxgvDetailCell_MetropolisBlue .dxgvControl .dxgvHeader:nth-child(3),
.dxgvDetailCell_MetropolisBlue .dxgvControl .dxgvHeader:nth-child(4) {
    text-align: right;
}




/**************************************************/
/* ORDER HISTORY
/**************************************************/

.Order .PageTitle {
    margin-bottom: 30px;
}

.Order .Form:after {
    content: '';
    display: table;
    clear: both;
}

.Order .Order_info h3 {
    margin: 0 0 15px 0;
}

.Order .Order_info .LeftContent {
    display: inline-block;
}

.Order .Order_info .Row {
    margin-bottom: 10px;
}

    .Order .Order_info .Row .LeftContent:first-child {
        width: 150px;
        text-align: right;
        margin-right: 10px;
    }

    .Order .Order_info .Row .LeftContent b {
        font-weight: 600;
    }

.Order .Order_Billing {
    line-height: 25px;
}

    .Order .Order_Billing b {
        font-weight: 600;
        font-size: 21px;
        margin: 0 0 15px 0;
        display: block;
    }

.Order .Order_Shipping {
    line-height: 25px;
}

    .Order .Order_Shipping b {
        font-weight: 600;
        font-size: 21px;
        margin: 0 0 15px 0;
        display: block;
    }

.Order .Grid th {
    padding: 5px 15px;
    text-transform: uppercase;
}

    .Order .Grid th:first-child,
    .Order .Grid td:first-child {
        text-align: center;
    }

.Order .Order_gridwrap {
    width: 100%;
    overflow: auto;
}

    .Order .Order_gridwrap .Grid {
        min-width: 550px;
    }

.Order .Grid th:nth-child(4),
.Order .Grid td:nth-child(4) {
    text-align: right;
}

.Order_back {
    padding: 9px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: all 0.2s ease;
}

@media (min-width: 950px) {
    .Order .Order_info {
        float: left;
        width: 330px;
        margin-right: 30px;
    }

    .Order .Order_Billing {
        float: left;
        width: 230px;
        margin-right: 30px;
    }

    .Order .Order_Shipping {
        float: left;
        width: 230px;
    }
}

@media (min-width: 1000px) {
    .Order .Order_info {
        width: calc(40% - 40px);
        margin-right: 60px;
    }

    .Order .Order_Billing {
        width: calc(30% - 40px);
        margin-right: 60px;
    }

    .Order .Order_Shipping {
        width: calc(30% - 40px);
    }
}

/*************************************/
/* Contact Us
/*************************************/
.ContactUs h1 {
    padding-left: 0px;
}

/*************************************/
/* Customer Feedback
/*************************************/
.Feedback h1 {
    padding-left: 0px;
}

/**************************************************/
/* CHECKOUT
/**************************************************/

.Checkout {
    margin-left: 50px;
}

    .Checkout .PageTitle {
        font-weight: 600;
        font-size: 40px;
        color: #333;
        line-height: 40px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px;
        margin: 0 0 40px 0;
    }

@media (min-width: 800px) {
    .Checkout .PageTitle {
        font-size: 45px;
        line-height: 70px;
    }
}

.Checkout .PageTitle + .Row span span {
    font-size: 15px !important;
}


.Checkout .HeaderStyle {
    font-weight: 600;
    font-size: 21px;
    color: #333;
    line-height: 25px;
    margin-bottom: 20px;
    margin-top: 0;
}

.Checkout hr {
    margin-bottom: 30px;
}

.Checkout .FormTitle {
    font-weight: 600;
    font-size: 21px;
    color: #333;
    line-height: 25px;
    margin-bottom: 10px;
    margin-top: 0;
    background: none;
    padding: 0;
}

.Checkout .message span span {
    font-size: 15px !important;
    color: #444 !important;
}

.Checkout .Overview {
    font-size: 11px;
    padding-bottom: 20px;
}

.Checkout .Or {
    font-weight: bold;
    font-size: 16px;
    color: #0099cc;
    padding-right: 10px;
    padding-left: 10px;
}

.Checkout .Steps {
    background: #f2f2f2;
    font-size: 16px;
    font-weight: 700;
    padding: 7px 10px;
    margin-bottom: 30px;
}

    .Checkout .Steps span {
        margin-right: 30px;
    }

    .Checkout .Steps .Passive {
        color: #acacac;
    }

    .Checkout .Steps .Active {
    }

.Checkout > .Form > .LeftContent {
    margin-bottom: 50px;
    max-width: 430px;
    width: auto !important;
}

    .Checkout > .Form > .LeftContent + .LeftContent {
        display: none;
    }

        .Checkout > .Form > .LeftContent + .LeftContent + .LeftContent {
            display: block;
            max-width: 430px;
        }

.Checkout .Form,
.Checkout .Form * {
    box-sizing: border-box;
}

    .Checkout .Form input[type="text"],
    .Checkout .Form select {
        width: 100% !important;
    }

    .Checkout .Form .checkout_firstname {
        width: 46.5%;
        float: left;
        margin-right: 7%;
    }

    .Checkout .Form .checkout_lastname {
        width: 46.5%;
        float: left;
        clear: none;
    }

    .Checkout .Form .checkout_city {
        width: 46.5%;
        float: left;
        margin-right: 7%;
    }

    .Checkout .Form .checkout_state {
        width: 100px;
        float: left;
        clear: none;
    }

    .Checkout .Form input.checkout_zip_1 {
        width: 46.5% !important;
        float: left;
    }

        .Checkout .Form input.checkout_zip_1 + span {
            width: 7%;
            text-align: center;
            display: inline-block;
            float: left;
            height: 40px;
            line-height: 40px;
        }

    .Checkout .Form input.checkout_zip_2 {
        width: 100px !important;
    }

    .Checkout .Form .checkout_country {
        width: 46.5%;
        float: left;
        margin-right: 7%;
        margin-bottom: 20px;
    }

    .Checkout .Form .checkout_phone {
        width: 46.5%;
        float: left;
        clear: none;
    }

    .Checkout .Form .checkbox {
        margin-top: 5px;
    }

.Checkout .Review {
    color: #313131;
    margin-left: 0px;
    text-align: left;
}

.Checkout .BackLink {
    margin-top: 50px;
}

.Checkout .ShoppingCart.Form .gridwrap .Grid {
    min-width: 440px;
}

.Checkout .ShoppingCart.Form .TableContainer > .LeftContentShipAddress {
    float: left;
    width: 40%;
    min-width: 600px;
}

.Checkout .ShoppingCart.Form .TableContainer > .LeftContentShipBy {
    float: left;
    min-width: 440px;
    width: 30%;
}

.Checkout .ShoppingCart.Form .TableContainer > .RightContent {
    float: right;
    width: 250px !important;
}

.Checkout .ShoppingCart.Form .TableContainer .LeftContent .ShipBy b {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

#ShipSection {
    width: 250px;
}

.Checkout .ShoppingCart.Form .Grid .ProductName {
    font-weight: 700;
}

.Checkout .ShoppingCart.Form .Grid .Description,
.Checkout .ShoppingCart.Form .Grid .Description > div {
    font-size: 14px;
    line-height: 20px;
    color: #444;
    margin: 0;
}

.Checkout .ShoppingCart.Form .Grid td:nth-child(2) .Description > div:first-child {
    font-size: 13px;
    color: #868686;
    margin-bottom: 8px;
}


.Checkout .ShoppingCart.Form .Grid .Header th:nth-child(3),
.Checkout .ShoppingCart.Form .Grid .Header th:nth-child(4),
.Checkout .ShoppingCart.Form .Grid td:nth-child(3),
.Checkout .ShoppingCart.Form .Grid td:nth-child(4) {
    text-align: right;
}


.Checkout .Address .HeaderStyle {
    display: none;
}

.Checkout .Address .FieldStyle {
    font-weight: 600;
    font-size: 21px;
    color: #333;
    line-height: 25px;
    margin-bottom: 15px;
    margin-top: 0;
}

.Checkout .Address .PaymentContent {
    line-height: 21px;
    width: 100%;
    display: block;
    float: left;
    margin-bottom: 20px;
}

    .Checkout .Address .PaymentContent a {
        display: block;
        margin-top: 3px;
        margin-bottom: 15px;
    }

.Checkout .Payment {
    width: 100%;
    margin-bottom: 30px;
}

    .Checkout .Payment table,
    .Checkout .Payment tbody,
    .Checkout .Payment tr,
    .Checkout .Payment td {
        display: block;
        margin: 0;
        padding: 0;
    }

    .Checkout .Payment .payment_method {
        float: left;
        margin-right: 30px;
    }

        .Checkout .Payment .payment_method select {
            width: 230px !important;
        }

    .Checkout .Payment .payment_cardnum {
        float: left;
        margin-bottom: 15px;
        clear: none !important;
    }

        .Checkout .Payment .payment_cardnum .LeftContent {
            width: 230px !important;
        }

        .Checkout .Payment .payment_cardnum input {
            width: 230px !important;
            margin-bottom: 3px;
        }

    .Checkout .Payment .payment_expdate {
        clear: left;
        float: left;
        width: 230px;
        margin-right: 30px;
    }

        .Checkout .Payment .payment_expdate .LeftContent {
            width: 230px !important;
        }

        .Checkout .Payment .payment_expdate .payment_expdate_month {
            width: 110px;
            float: left;
            margin-right: 10px;
        }

        .Checkout .Payment .payment_expdate .payment_expdate_year {
            width: 110px;
            float: left;
        }

    .Checkout .Payment .payment_code {
        float: left;
        clear: none !important;
    }

        .Checkout .Payment .payment_code .LeftContent {
            width: 230px !important;
        }

        .Checkout .Payment .payment_code a {
            text-transform: capitalize;
            display: inline-block;
        }

        .Checkout .Payment .payment_code input {
            width: 110px !important;
        }

    .Checkout .Payment .payment_po {
        float: left;
    }

        .Checkout .Payment .payment_po:after {
            content: '';
            display: table;
            clear: both;
        }

        .Checkout .Payment .payment_po .Row {
            width: 350px;
        }

.Checkout .GiftCard {
    width: 100%;
}

    .Checkout .GiftCard input[type="text"] {
        width: 490px !important;
        max-width: 100%;
        margin-bottom: 5px;
    }

    .Checkout .GiftCard a {
        text-decoration: underline;
    }

.Checkout .GiftcardSpace {
}

    .Checkout .GiftcardSpace textarea {
        max-width: 490px;
        width: 100%;
        border: 1px solid #ccc;
        height: 120px;
        box-sizing: border-box;
    }

.Checkout .Submit,
.Checkout .Submit tbody,
.Checkout .Submit tr,
.Checkout .Submit td {
    display: block;
    margin: 0;
    padding: 0;
}

.Checkout .Submit {
    width: 490px;
    text-align: right;
    max-width: 100%;
}

    .Checkout .Submit img {
        display: none;
    }

.Checkout .ProceedtoNextButton a {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 9px 20px;
    border: none;
    display: inline-block;
}

.Checkout .Submit .ProceedtoNextButton a {
    width: 230px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 13px;
    border: none;
    display: inline-block;
}

.SubmitButton a {
    width: 230px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border: none;
    display: inline-block;
    height: 48px;
}


.ProceedtoNextButton {
    width: 230px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 13px;
    border: none;
    display: inline-block;
}

.SecureCheckout {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 600px) {
    .Checkout .Address .PaymentContent {
        width: 50%;
        margin-bottom: 0;
    }
}

@media (min-width: 830px) {
    .Checkout .Payment {
        float: right;
        width: 50%;
        margin-bottom: 0;
    }

    .Checkout .GiftCard {
        float: left;
        width: 50%;
        padding-right: 60px;
    }

    .Checkout .GiftcardSpace {
        float: left;
    }

    .Checkout .Submit {
        float: right;
        width: auto;
    }

        .Checkout .Submit .ProceedtoNextButton a {
            margin-top: 107px;
        }
}

@media (min-width: 850px) {
    .Checkout > .Form > .LeftContent {
        width: 46% !important;
        float: left;
        margin-right: 8%;
    }

        .Checkout > .Form > .LeftContent + .LeftContent + .LeftContent {
            width: 46% !important;
            float: left;
            margin-right: 0;
        }

    .Checkout > .Form > .LeftContent {
        margin-bottom: 0px;
    }
}

@media (min-width: 1030px) {
    .Checkout > .Form > .LeftContent {
        margin-right: 8%;
    }

        .Checkout > .Form > .LeftContent + .LeftContent + .LeftContent {
            float: right;
        }
}

@media (min-width: 1250px) {
    .Checkout > .Form > .LeftContent {
        margin-right: 290px
    }

        .Checkout > .Form > .LeftContent + .LeftContent + .LeftContent {
            float: left;
        }
}


/* background style for the screen when an ajax progress update is displayed */
#ajaxProgressBg {
    border: 0;
    padding: 0;
    margin: 0;
    width: auto;
    position: absolute;
    background-color: #444444;
    opacity: 0.3;
    filter: Alpha(opacity:30);
    z-index: 1000;
}

#ajaxProgress {
    padding: 0;
    position: absolute;
    background-color: #FFFFFF;
    background: #FFFFFF url(../images/loading.gif) no-repeat 50%;
    z-index: 1;
    left: 50%;
    margin-left: -100px;
    width: 100px;
    height: 100px;
    border: solid 2px #444444;
}


/*Address Verification*/

.confirm_table {
    width: 100%;
    margin-bottom: 10px;
}

    .confirm_table > tbody > tr:nth-child(2) {
        display: none;
    }

    .confirm_table > tbody > tr:nth-child(3) {
        display: table-cell;
        line-height: 40px;
        vertical-align: top;
        text-align: right;
        padding-right: 10px;
    }

    .confirm_table > tbody > tr:nth-child(4) {
        display: table-cell;
    }

    .confirm_table > tbody > tr:nth-child(3) td {
        height: 40px;
        padding: 0;
        margin-bottom: 15px;
        display: block;
        min-width: 70px;
        line-height: 40px;
    }

    .confirm_table > tbody > tr:nth-child(4) td {
        height: 40px;
        padding: 0;
        margin-bottom: 15px;
        display: block;
        min-width: 70px;
    }

.Checkout .Form .confirm_zip {
    font-size: 0;
}

    .Checkout .Form .confirm_zip input[type="text"] {
        width: 47% !important;
    }

    .Checkout .Form .confirm_zip input {
        margin: 0;
    }

    .Checkout .Form .confirm_zip span {
        display: inline-block;
        height: 40px;
        line-height: 40px;
        width: 6%;
        font-size: 15px;
        text-align: center;
    }

.confirm_btn input[type="radio"] {
    position: relative;
    top: 20px;
    left: -54px;
}

.Checkout .Form .confirm_state input[type="text"],
.Checkout .Form .confirm_phone input[type="text"] {
    width: 47% !important;
}


@media (min-width: 1000px) {
    .confirm_table > tbody > tr:nth-child(3) {
        display: table-row;
        line-height: normal;
        padding-top: 0;
        text-align: left;
        padding-right: 0;
    }

    .confirm_table > tbody > tr:nth-child(4) {
        display: table-row;
    }

    .confirm_table > tbody > tr:nth-child(3) td {
        height: auto;
        padding: 15px 0 5px;
        margin-bottom: 0;
        display: table-cell;
        min-width: 0;
        line-height: normal;
    }

    .confirm_table > tbody > tr:nth-child(4) td {
        display: table-cell;
        margin-bottom: 0;
        min-width: 0;
        padding-right: 10px;
    }

    .confirm_btn input[type="radio"] {
        position: static;
    }

    .Checkout .Form .confirm_state input[type="text"],
    .Checkout .Form .confirm_phone input[type="text"] {
        width: 100% !important;
    }


    .confirm_table {
        width: 100%;
    }

        .confirm_table td {
            padding: 1px 10px;
        }

    .confirm_btn {
        width: 3%;
    }

    .confirm_street {
        width: 20%;
    }

    .confirm_city {
        width: 15%
    }

    .confirm_state {
        width: 10%;
    }

    .confirm_zip {
        width: 20%
    }

    .confirm_phone {
        width: 12%
    }

    .Checkout .Form .confirm_zip {
        font-size: 0;
    }
}


.AddAddress {
    width: 100%;
    max-width: 500px;
}

    .AddAddress input.checkout_zip_2 {
        background: #eee !important;
    }

    .AddAddress .checkbox > span {
        width: 100% !important;
    }

    .AddAddress .checkout_buttons {
        text-align: right;
    }


/**************************************************/
/* RECEIPT
/**************************************************/

.Receipt_wrap {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid #ccc;
}

.Receipt_inner {
    min-width: 600px;
    padding: 10px;
}

.Receipt strong {
    font-weight: 600;
}

.Receipt_header {
    background: #f2f2f2;
    padding: 10px;
    font-weight: 600;
    font-size: 21px;
}

.Receipt_topnote {
    padding: 20px 0 10px;
}

.Receipt_infotable {
    line-height: 25px;
}

    .Receipt_infotable td {
        vertical-align: top;
        padding-right: 10px;
    }

.receipt_ordernum {
    width: 100px !important;
}

.receipt_email,
.receipt_phone {
    padding-left: 10px;
    text-align: right;
}

.receipt_address {
    padding-left: 10px;
}

.Receipt_heading {
    color: #333;
    font-weight: 600;
    font-size: 21px;
    margin: 15px 0;
}

.Receipt_orderinfo_hr hr {
    margin-top: 15px;
}

.Receipt_carttable_wrap {
    margin-top: 20px;
}

.Receipt_carttable td {
    vertical-align: top;
}

.Receipt_carttable a {
    text-decoration: underline;
}

.Receipt_carttable_header {
    background: #f2f2f2;
}

    .Receipt_carttable_header td {
        padding: 10px;
        font-size: 15px;
        text-transform: uppercase;
    }

        .Receipt_carttable_header td strong {
            font-weight: 700;
        }

.Receipt_carttable_body td {
    padding: 10px;
}

.Receipt_carttable_hr hr {
    background: #ddd;
    margin-bottom: 10px;
}

.Receipt_carttable_footer td {
    padding: 5px 10px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    -webkit-text-size-adjust: 100%;
    line-height: 21px;
}

    .Receipt_carttable_footer td strong {
        font-weight: 700;
        line-height: 21px;
    }

.Receipt_carttable_total td {
    line-height: 27px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    border-bottom: 1px solid #ccc;
    padding: 5px 10px 35px 10px;
}

    .Receipt_carttable_total td strong {
        line-height: 27px;
        font-weight: 700;
    }

.Receipt_carttable_right {
    text-align: right;
}

.Receipt_feedback {
    display: block;
    text-align: center;
    margin-top: 30px;
    text-decoration: underline;
}

    .Receipt_feedback:hover {
        text-decoration: underline;
    }


/**************************************************/
/* Hightlight
/**************************************************/
.Highlight {
    padding-top: 5px;
    border: 0px;
    text-align: left;
}

    .Highlight .HighlightName {
        font-size: 11px;
    }

.HighlightItem {
    margin: 0px 3px 5px 0px;
    padding-right: 5px;
}

    .HighlightItem .DetailLink {
        padding-top: 15px;
        font-size: 12px;
        font-weight: bold;
    }

/*************************************************/
/* Highlight tool Tip style
/*************************************************/
#dhtmltooltip {
    position: absolute;
    left: -300px;
    width: 200px;
    font: Arial;
    border: 1px solid black;
    padding: 2px;
    background-color: lightyellow;
    visibility: hidden;
    z-index: 100;
    filter: progid:DXImageTransform.Microsoft.Shadow(color=gray,direction=120,Strength=3);
}

#dhtmlframe {
    position: absolute;
    left: -300px;
    font: Arial;
    border: 0px;
    padding: 0px;
    visibility: hidden;
    z-index: 99;
}

/**************************************************/
/* NOTIFICATION - PAYPAL & GOOGLE EXPRESS CHECKOUT
/**************************************************/
#Notification {
    margin-bottom: 200px;
}

    #Notification .BackLink A:Link {
        margin-left: 10px;
    }

    #Notification .BackLink A:Visited {
        margin-left: 10px;
    }

    #Notification .BackLink A:Hover {
        margin-left: 10px;
    }

    #Notification .Text {
        margin-left: 10px;
        font-size: 12px;
        font-weight: normal;
        font-family: Verdana;
        text-align: left;
        margin-bottom: 10px;
        margin-bottom: 15px;
    }


.overlay {
    max-width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-weight: bold;
    outline: none;
    top: 40%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: #ccc;
    color: #313131;
    opacity: 0.7;
    content: "OUT OF STOCK";
}

/** THIRD PARTY CONTROL STYLE STARTS**/

/* SqueezeBox - Expandable Lightbox
 *
 * Allows to open various content as modal,
 * centered and animated box.
 *
 * @version		1.1 rc4
 *
 * @license		MIT-style license
 * @author		Harald Kirschner <mail [at] digitarald.de>
 * @copyright	Author
 */

#sbox-overlay {
    position: absolute;
    background-color: #000;
    left: 0px;
    top: 0px;
    zoom: 1;
}

#sbox-window {
    position: absolute;
    background-color: #fff;
    text-align: left;
    overflow: visible;
    padding: 0px;
    /* invalid values, but looks smoother! */
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border: solid 8px #61ae3f;
}

#sbox-btn-close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    top: -15px;
    background: url(../images/closebox.png) no-repeat center;
    border: none;
}

.sbox-window-ie6 #sbox-btn-close {
    background-image: url(../images/closebox.png);
}

.sbox-loading #sbox-content {
    background-image: url(../images/loading.gif);
    background-repeat: no-repeat;
    background-position: center;
}

#sbox-content {
    clear: both;
    overflow: auto;
    background-color: #fff;
    height: 100%;
    width: 100%;
}

.sbox-content-image#sbox-content {
    overflow: visible;
}

#sbox-image {
    display: block;
}

.sbox-content-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.sbox-content-iframe#sbox-content {
    overflow: visible;
}

/* Hides scrollbars */
.body-overlayed {
    overflow: hidden;
}
    /* Hides flash (Firefox problem) and selects (IE) */
    .body-overlayed embed, .body-overlayed object, .body-overlayed select {
        visibility: hidden;
    }

#sbox-window embed, #sbox-window object, #sbox-window select {
    visibility: visible;
}

/* Shadows */
.sbox-bg {
    position: absolute;
    width: 33px;
    height: 40px;
}

.sbox-bg-n {
    left: 0;
    top: -40px;
    width: 100%;
}

.sbox-bg-ne {
    right: -33px;
    top: -40px;
}

.sbox-bg-e {
    right: -33px;
    top: 0;
    height: 100%;
}

.sbox-bg-se {
    right: -33px;
    bottom: -40px;
}

.sbox-bg-s {
    left: 0;
    bottom: -40px;
    width: 100%;
}

.sbox-bg-sw {
    left: -33px;
    bottom: -40px;
}

.sbox-bg-w {
    left: -33px;
    top: 0;
    height: 100%;
}

.sbox-bg-nw {
    left: -33px;
    top: -40px;
}

/** THIRD PARTY CONTROL STYLE ENDS**/


/***************************************/
/* Banners
/***************************************/
.BannerItems {
    display: block;
    clear: left;
    border: solid 1px #eeeeee;
}

    .BannerItems div.rotator {
        position: absolute;
        padding: 5px;
    }



/***************************************/
/**Facet Search
/***************************************/

.facetName {
    display: inline-block;
    vertical-align: middle;
}

.facetValue {
    padding: 5px 0px 5px 20px;
    text-transform: capitalize;
}

    .facetValue:before {
    }

    .facetValue span {
        font-weight: 500;
        color: #444;
    }

/* Menu container */
.menu {
}

    /* Menu styles */
    .menu ul {
        margin: 0px;
        padding: 0px;
        list-style-type: none;
    }

    .menu li {
    }

    /* Submenu styles */
    .menu ul ul {
    }

    .menu li li {
    }

        .menu li li a {
            font-weight: 600 !important;
            font-size: 14px;
            line-height: 16px;
        }

            .menu li li a:hover {
                text-decoration: underline;
            }

    /* Symbol styles */

    .menu .symbol-item {
        display: none;
    }

    .menu .symbol-open,
    .menu .symbol-close {
        float: left;
        width: 16px;
        height: 16px;
        cursor: pointer;
        display: inline-block;
        vertical-align: middle;
        line-height: 22px;
    }

        .menu .symbol-open:before {
            content: '\f147';
            font-family: 'FontAwesome';
            color: #444;
            font-size: 14px;
            font-weight: normal;
        }

        .menu .symbol-close:before {
            content: '\f196';
            font-family: 'FontAwesome';
            color: #444;
            font-size: 14px;
            font-weight: normal;
        }


    /* Menu line styles */
    .menu li.open {
        font-weight: bold;
    }

    .menu li.close {
        font-weight: normal;
    }

*:focus {
    outline: none;
}
/* 
	CSS For PopUp
*/
#backgroundPopup {
    z-index: 1;
    position: fixed;
    display: none;
    height: 100%;
    width: 100%;
    background: #000000;
    top: 0px;
    left: 0px;
}

#toPopup {
    font-family: "lucida grande",tahoma,verdana,arial,sans-serif;
    background: none repeat scroll 0 0 #FFFFFF;
    border: 10px solid #ccc;
    border-radius: 3px 3px 3px 3px;
    color: #333333;
    display: none;
    font-size: 14px;
    left: 50%;
    margin-left: -402px;
    position: fixed;
    top: 20%;
    width: 800px;
    z-index: 2;
}

#toPopupImage {
    font-family: "lucida grande",tahoma,verdana,arial,sans-serif;
    background: none repeat scroll 0 0 #FFFFFF;
    border: 10px solid #ccc;
    border-radius: 3px 3px 3px 3px;
    color: #333333;
    display: none;
    font-size: 14px;
    left: 50%;
    margin-left: -160px;
    margin-top: -75px;
    position: fixed;
    top: 50%;
    width: 800px;
    z-index: 2;
}

div.loader {
    background: url("/Themes/Images/loading.gif") no-repeat scroll 0 0 transparent;
    height: 32px;
    width: 32px;
    display: none;
    z-index: 9999;
    top: 40%;
    left: 50%;
    position: absolute;
    margin-left: -10px;
}

div.Imageloader {
    background: url("/Themes/Images/loading.gif") no-repeat scroll 0 0 transparent;
    height: 32px;
    width: 32px;
    display: none;
    z-index: 9999;
    top: 40%;
    left: 50%;
    position: absolute;
    margin-left: -10px;
}

div.close {
    background: url("/Themes/Images/closebox.png") no-repeat scroll 0 0 transparent;
    bottom: 24px;
    cursor: pointer;
    float: right;
    height: 30px;
    left: 27px;
    position: relative;
    width: 30px;
}

div.Imageclose {
    background: url("/Themes/Images/closebox.png") no-repeat scroll 0 0 transparent;
    bottom: 24px;
    cursor: pointer;
    float: right;
    height: 30px;
    left: 27px;
    position: relative;
    width: 30px;
}

span.ecs_tooltip {
    background: none repeat scroll 0 0 #000000;
    border-radius: 2px 2px 2px 2px;
    color: #FFFFFF;
    display: none;
    font-size: 11px;
    height: 16px;
    opacity: 0.7;
    padding: 4px 3px 2px 5px;
    position: absolute;
    right: -62px;
    text-align: center;
    top: -51px;
    width: 93px;
}

span.arrow {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #000000;
    display: block;
    height: 1px;
    left: 40px;
    position: relative;
    top: 3px;
    width: 1px;
}

div#popup_content {
    margin: 4px 7px;
}

#backgroundLoadPopup {
    z-index: 1;
    position: fixed;
    display: none;
    height: 100%;
    width: 100%;
    background: #000000;
    top: 0px;
    left: 0px;
}

#divImageUplaod {
    font-family: "lucida grande",tahoma,verdana,arial,sans-serif;
    background: none repeat scroll 0 0 #FFFFFF;
    border: 10px solid #ccc;
    border-radius: 3px 3px 3px 3px;
    color: #333333;
    display: none;
    font-size: 14px;
    left: 50%;
    margin-left: -230px;
    margin-top: -70px;
    position: fixed;
    top: 50%;
    width: 800px;
    z-index: 2;
    height: 120px;
    width: 440px;
    vertical-align: central;
}

/*Embrodary Adon Feature*/
.SelectColorArea {
    padding: 0;
    width: 100%;
    cursor: pointer;
    display: inline-block;
}

.ImgSection {
    background-color: #888;
    width: 200px;
    padding: 10px;
    margin: 0 10px 10px 0;
    float: left;
}

    .ImgSection .ImgArea {
        background-color: #fff;
        flex-align: center;
        text-align: center;
        margin: auto auto;
        padding: 10px 0;
    }

.ImgArea img {
    margin: auto auto;
}

.EmbrodaryOption {
    clear: both;
}

    .EmbrodaryOption .Option {
        width: 100%;
    }

#Add-Ons.EmbrodaryOption .Option .OptionLabel {
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    padding: 0;
    margin-bottom: 6px;
    text-align: left;
}

#Add-Ons.EmbrodaryOption .Option .OptionValue input {
    margin-bottom: 6px;
    width: 100%;
    box-sizing: border-box;
}

.AddOnImages {
    width: 32px;
    height: 32px;
    float: right;
    margin-left: 10px;
    display: inline-block;
}

.ImgUploaderSection {
    float: right;
    width: 205px;
    cursor: pointer;
}

.RemoveLink {
    display: inline-block;
    margin-top: 5px;
    width: 100px;
    cursor: pointer;
}

.UploadedImage {
    height: 180px;
    width: 180px;
    flex-align: center;
}


/* Formerly found in defaul/jsCss/jquery.selectbox */
.sbHolder {
    background-color: #fff;
    border: 1px solid #ccc;
    box-sizing: border-box;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    height: 40px;
    position: relative;
    width: 180px;
    text-align: left;
}

    .sbHolder:focus .sbSelector {
    }

.sbSelector {
    display: block;
    height: 40px;
    left: 0;
    line-height: 40px;
    outline: none;
    overflow: hidden;
    position: absolute;
    text-indent: 10px;
    top: 0;
    width: 150px;
}

    .sbSelector:link, .sbSelector:visited, .sbSelector:hover {
        color: #444;
        outline: none;
        text-decoration: none;
    }

.sbToggle {
    background: url(/Themes/Images/arrow.png) no-repeat;
    display: block;
    height: 17px;
    outline: none;
    position: absolute;
    right: 3px;
    top: 13px;
    width: 20px;
}

    .sbToggle:hover {
        background: url(/Themes/Images/arrow.png) no-repeat;
    }

.sbToggleOpen {
    background: url(/Themes/Images/arrow.png) no-repeat;
}

    .sbToggleOpen:hover {
        background: url(/Themes/Images/arrow.png) no-repeat;
    }

.sbHolderDisabled {
    background-color: #3C3C3C;
    border: solid 1px #515151;
}

    .sbHolderDisabled .sbHolder {
    }

    .sbHolderDisabled .sbToggle {
    }

.sbOptions {
    background-color: #fff;
    border: solid 1px #999;
    list-style: none;
    left: -1px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 17px;
    width: 170px;
    z-index: 3;
    overflow-y: auto;
}

    .sbOptions li {
        padding: 0px;
    }

    .sbOptions a {
        display: block;
        outline: none;
        padding: 8px 0 8px 10px;
    }

        .sbOptions a:link, .sbOptions a:visited {
            color: Black;
            text-decoration: none;
        }

        .sbOptions a:hover,
        .sbOptions a:focus,
        .sbOptions a.sbFocus {
            color: #444;
            background-color: #f2f2f2;
        }

    .sbOptions li.last a {
        border-bottom: none;
    }

    .sbOptions .sbDisabled {
        border-bottom: dotted 1px #515151;
        color: #999;
        display: block;
        padding: 7px 0 7px 3px;
    }

    .sbOptions .sbGroup {
        border-bottom: dotted 1px #515151;
        color: #EBB52D;
        display: block;
        font-weight: bold;
        padding: 7px 0 7px 3px;
    }

    .sbOptions .sbSub {
        padding-left: 17px;
    }

/*autocomplete*/
.ui-widget.ui-autocomplete {
    background: #eee;
    border-radius: 0;
}

    .ui-widget.ui-autocomplete .ui-menu-item {
        font-family: 'Open Sans', sans-serif;
        font-size: 15px;
    }

        .ui-widget.ui-autocomplete .ui-menu-item a {
            border-radius: 0;
        }

            .ui-widget.ui-autocomplete .ui-menu-item a.ui-state-focus {
                border: 1px solid transparent;
                background: #f2f2f2;
                color: #444;
            }

/*subnav menu*/

.DynamicMenuStyle {
    border: 1px solid #ccc;
    border-top: 0;
    padding: 10px 30px 0;
    box-shadow: 0px 7px 18px -10px #000;
    clip: auto !important;
    max-height: calc(100vh - 360px);
    overflow: auto !important;
}

    .DynamicMenuStyle table a {
        font-size: 16px !important;
        line-height: 33px;
        font-weight: 400;
        text-transform: none;
        text-decoration: none;
        color: black;
    }

        .DynamicMenuStyle table a:hover {
        }

    .DynamicMenuStyle > table {
        display: block;
    }

        .DynamicMenuStyle > table > tbody {
            display: block;
        }

            .DynamicMenuStyle > table > tbody > tr {
                margin-right: 30px;
                display: block;
            }

                .DynamicMenuStyle > table > tbody > tr td {
                    display: inline-block;
                }


@media (min-width: 950px) {
    .DynamicMenuStyle {
        max-height: none;
        overflow: hidden !important;
    }

        .DynamicMenuStyle table a {
            font-size: 14px !important;
            text-decoration: none;
            color: black;
        }

        .DynamicMenuStyle > table > tbody {
            -webkit-column-count: 2;
            -moz-column-count: 2;
            column-count: 2;
            -webkit-column-gap: 50px;
            -moz-column-gap: 50px;
            column-gap: 50px;
            -webkit-column-rule: 1px outset #ccc;
            -moz-column-rule: 1px outset #ccc;
            column-rule: 1px outset #ccc;
        }

        .DynamicMenuStyle.cols-3 > table > tbody {
            -webkit-column-count: 3;
            -moz-column-count: 3;
            column-count: 3;
            -webkit-column-gap: 30px;
            -moz-column-gap: 30px;
            column-gap: 30px;
        }

            .DynamicMenuStyle.cols-3 > table > tbody > tr {
                margin-right: 20px;
            }

        .DynamicMenuStyle.cols-3 {
            padding: 10px 20px 0;
            margin-left: -30px;
        }

        .DynamicMenuStyle.cols-4 > table > tbody {
            -webkit-column-count: 4;
            -moz-column-count: 4;
            column-count: 4;
            -webkit-column-gap: 30px;
            -moz-column-gap: 30px;
            column-gap: 30px;
        }

            .DynamicMenuStyle.cols-4 > table > tbody > tr {
                margin-right: 10px;
            }

        .DynamicMenuStyle.cols-4 {
            padding: 10px 10px 0;
            margin-left: -50px;
        }
}


/* Embroidery Styles */

.mydesigns {
    margin: 10px 0 60px;
}

    .mydesigns:after {
        display: table;
        content: '';
        clear: both;
    }

    .mydesigns #BreadCrumb {
        margin-bottom: 15px;
    }

        .mydesigns #BreadCrumb span {
            display: inline-block;
            padding: 0 3px;
        }

        .mydesigns #BreadCrumb .BreadCrumbLabel span a {
            font-size: 15px;
        }

    .mydesigns h1 {
        margin-bottom: 40px;
        padding-bottom: 15px;
    }

    .mydesigns .btn-primary {
        float: right;
        min-width: 160px;
    }

.mydesigns_grid {
    min-height: 100px;
    position: relative;
}

    .mydesigns_grid .k-loading-image {
        display: none;
    }

    .mydesigns_grid .k-loading-text {
        text-indent: 0;
        display: block;
        position: absolute;
        right: 0;
        left: 0;
        margin: auto;
        color: #000;
        top: 50%;
        margin-top: 10px;
        background: #fff;
        padding: 10px;
        border-radius: 5px;
        width: 80px;
        padding-top: 30px;
        box-shadow: 0px 0px 11px -5px #000;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        .mydesigns_grid .k-loading-text:before {
            content: url('/Themes/Visus/Images/loading.gif');
            position: absolute;
            top: 9px;
            left: 41px;
        }

    .mydesigns_grid.k-loading-color {
        background: rgba(255,255,255,.5);
        opacity: 1;
    }

.ui-loader {
    display: none;
}

#grid-designs {
    border: none;
    margin-bottom: 40px;
    box-shadow: none;
    max-height: 604px;
    height: auto !important;
}

    #grid-designs tr {
        background: #f2f2f2;
    }

        #grid-designs tr.k-alt {
            background: #fff;
        }

        #grid-designs tr th {
            border: none;
            background: #fff;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 15px;
            line-height: 20px;
            padding: 5px 15px;
        }

        #grid-designs tr td {
            border: none;
            padding: 15px 15px;
        }

    #grid-designs .k-grid-header-wrap {
        border: none;
    }

    #grid-designs .k-grid-header {
        border: none;
        padding: 0 !important;
    }

    #grid-designs .k-grid-content {
        border: 1px solid #f0f0f0;
        overflow-y: auto;
        height: auto !important;
        max-height: 575px;
    }

        #grid-designs .k-grid-content tr {
            height: 115px;
        }

    #grid-designs a {
        font-weight: 700;
    }

        #grid-designs a:hover {
            text-decoration: underline;
        }

    #grid-designs img {
        max-height: 85px;
        max-width: 215px;
    }

#big {
    display: none;
    z-index: 9999;
    position: absolute;
    text-align: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
}

    #big img {
        width: 100%;
        height: 100%;
        max-width: 500px;
        max-height: 500px;
    }

    #big .big_text {
        width: auto;
        height: auto;
        max-width: 250px;
        max-height: 60px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    #big .big_logo {
        max-width: 250px;
    }

    #big img + img {
        margin-top: 10px;
    }


.designdetails {
    margin: 10px 0 60px;
}

    .designdetails #BreadCrumb {
        font-size: 13px;
        margin-bottom: 15px;
    }

        .designdetails #BreadCrumb span {
            display: inline-block;
            padding: 0 3px;
        }

    .designdetails h1 {
        margin-bottom: 40px;
        padding-bottom: 15px;
    }

.designdetails_info {
    margin-bottom: 40px;
    clear: both;
}

    .designdetails_info span {
        color: #444;
    }

    .designdetails_info:before {
        font-family: 'FontAwesome';
        font-size: 18px;
        content: '\f05a';
        padding-right: 6px;
    }

.designdetails #btnGenerate {
    margin-bottom: 20px;
    cursor: pointer;
}

.designdetails_text,
.designdetails_logo {
    display: none;
}

    .designdetails_logo .designdetails_width {
        float: none;
    }

.designdetails_cancel {
    float: right;
    margin-left: 10px;
    cursor: pointer;
}

#ifrUpload {
    max-height: calc(100vh - 80px);
}

.form_group.designdetails_text_lines {
    background: #f2f2f2;
    margin-bottom: 0;
    padding: 20px 10px;
}

    .form_group.designdetails_text_lines:after {
        clear: both;
        display: table;
        content: '';
    }

    .form_group.designdetails_text_lines:nth-child(even) {
        background: #fff;
    }

.designdetails_text_lines > div {
    margin-bottom: 15px;
}

.designdetails_text_preview {
    display: none;
    clear: left;
}

    .designdetails_text_preview img {
        background: #f2f2f2;
        max-height: 90px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .designdetails_text_preview label.required:after {
        content: none;
    }

.designdetails_text .designdetails_info {
    margin-top: 20px;
}

.form_group {
    margin-bottom: 25px;
}

    .form_group label {
        display: block;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .form_group input {
        width: 430px;
        box-sizing: border-box;
        max-width: 100%;
    }

.designdetails .k-dropdown {
    width: 100%;
}

.designdetails_line {
    width: 430px;
    max-width: 100%;
    float: left;
}

.designdetails_type {
    width: 160px;
}

.designdetails_width {
    float: left;
    clear: left;
}

    .designdetails_width .k-numerictextbox {
        width: 160px;
        vertical-align: middle;
    }

    .designdetails_width > span:not(.k-widget) {
        display: inline-block;
        height: 40px;
        line-height: 40px;
        margin-left: 10px;
        vertical-align: top;
    }

    .designdetails_width > .k-widget.k-tooltip.k-tooltip-validation.k-invalid-msg[style*="inline"] {
        display: block !important;
    }


.designdetails_addline {
    text-decoration: underline;
    font-weight: 600;
    display: inline-block;
    margin: 20px 0 30px;
}

    .designdetails_addline:hover {
        text-decoration: underline;
    }

.designdetails_text_line2,
.designdetails_text_line3,
.designdetails_text_line4 {
    display: none;
}

.designdetails_remove {
    font-size: 28px;
    color: #c4112f;
    cursor: pointer;
    float: left;
    margin: 31px 0 0 30px;
}


.designdetails_color {
    width: calc(50% - 15px);
    max-width: 200px;
    float: left;
    clear: left;
    margin-right: 30px;
}

.designdetails_font {
    width: calc(50% - 15px);
    max-width: 200px;
    float: left;
}

.designdetails_logo_preview {
    margin-top: 40px;
    display: inline-block;
}

    .designdetails_logo_preview:after {
        clear: both;
        content: '';
        display: table;
    }

    .designdetails_logo_preview #div-artwork {
        width: 300px;
        min-height: 150px;
        border: 1px solid #ccc;
        position: relative;
        padding: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .designdetails_logo_preview #div-artwork img {
            max-width: 100%;
        }

        .designdetails_logo_preview #div-artwork label {
            position: absolute;
            left: 0px;
            top: -26px;
        }

    .designdetails_logo_preview #div-embroidered {
        width: 300px;
        min-height: 150px;
        border: 1px solid #ccc;
        position: relative;
        padding: 20px;
        margin-top: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

        .designdetails_logo_preview #div-embroidered img {
            max-width: 100%;
        }

        .designdetails_logo_preview #div-embroidered label {
            position: absolute;
            left: 0;
            top: -26px;
        }


@media (min-width: 750px) {
    .designdetails_text_lines:after {
        content: "";
        display: table;
        clear: both;
    }

    .designdetails_line {
        margin-right: 30px;
    }

    .designdetails_color {
        margin-right: 0;
        clear: none;
    }

    .designdetails_font {
        clear: left;
        margin-right: 30px;
    }

    .designdetails_text .designdetails_width {
        clear: none;
        float: left;
    }

    .designdetails_text_preview {
        clear: left;
    }

    .designdetails_logo_preview {
        border: 1px solid #ccc;
        margin-top: 40px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

        .designdetails_logo_preview:after {
            clear: both;
            content: '';
            display: table;
        }

        .designdetails_logo_preview #div-artwork {
            border: 0;
            float: left;
        }

            .designdetails_logo_preview #div-artwork img {
            }

            .designdetails_logo_preview #div-artwork label {
            }

        .designdetails_logo_preview #div-embroidered {
            border: 0;
            border-left: 1px solid #ccc;
            padding: 30px;
            float: left;
            margin-top: 0;
        }

            .designdetails_logo_preview #div-embroidered img {
            }

            .designdetails_logo_preview #div-embroidered label {
            }
}

@media (min-width: 1295px) {
    .form_group.designdetails_text_lines {
        background: #fff;
        padding: 0;
        margin-bottom: 15px;
    }

    .designdetails_color {
        margin-right: 30px;
    }

    .designdetails_font {
        clear: none;
    }

    .designdetails_addline {
        margin: 0 0 30px;
    }
}


/*product pages*/

.product_adddesign {
    box-sizing: border-box;
    display: none;
    width: 490px;
    max-width: 100%;
    margin: -10px auto 0 auto;
}

    .product_adddesign * {
        box-sizing: border-box;
    }

.product_adddesign_section {
    border: 1px solid #ccc;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 10px;
    clear: both;
    max-height: 460px;
    overflow: auto;
}

    .product_adddesign_section:after {
        content: "";
        display: table;
        clear: both;
    }

.product_adddesign_heading {
    background: #f2f2f2;
    font-size: 16px;
    font-weight: 700;
    padding: 9px 13px;
    margin-bottom: 10px;
    margin-left: -10px;
    width: calc(100% + 20px);
}

.product_adddesign_item {
    width: 33.3333%;
    float: left;
    text-align: center;
    margin-bottom: 10px;
    border: 2px solid #fff;
    cursor: pointer;
}

    .product_adddesign_item.active {
        border: 2px solid #444;
    }

    .product_adddesign_item > div {
        padding: 20px;
        height: 155px;
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .product_adddesign_item img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        margin: 0;
        -webkit-box-flex: 0;
        -webkit-flex: none;
        -ms-flex: none;
        flex: none;
    }

    .product_adddesign_item span {
        display: block;
        font-size: 13px;
        margin-bottom: 10px;
    }

.product_adddesign_uploadbtn {
    float: right;
    margin-bottom: 30px;
}

    .product_adddesign_uploadbtn i {
        padding-right: 5px;
    }

.product_adddesign_cancelbtn {
    float: right;
    margin: 20px 0 60px 0;
    width: 160px;
}

.product_adddesign_applybtn {
    float: right;
    margin: 20px 10px 60px 0;
    width: 200px;
}

    .product_adddesign_applybtn i {
        padding-right: 5px;
    }


.product_selecteddesign {
    box-sizing: border-box;
    margin: -10px auto 50px auto;
    width: 450px;
    max-width: 100%;
    display: none;
}

    .product_selecteddesign:after {
        content: "";
        display: table;
        clear: both;
    }

    .product_selecteddesign * {
        box-sizing: border-box;
    }

    .product_selecteddesign .product_adddesign_section {
        width: calc(50% - 5px);
        margin: 0 10px 10px 0;
        float: left;
        clear: none;
    }

        .product_selecteddesign .product_adddesign_section + .product_adddesign_section {
            margin-right: 0;
        }

    .product_selecteddesign .product_adddesign_heading {
        text-align: center;
    }

    .product_selecteddesign .product_adddesign_item {
        width: 100%;
        float: none;
        cursor: default;
    }

        .product_selecteddesign .product_adddesign_item > div {
            height: 120px;
            padding: 15px;
        }

    .product_selecteddesign .product_addtocart {
        float: right;
    }

.product_adddesign_removebtn {
    float: right;
    margin: 0 0 40px 0;
}

.product_adddesign_editbtn {
    float: right;
    margin: 0 10px 40px 0;
    width: 160px;
}

.product_adddesign_popup {
    display: none;
}

@media (min-width: 1130px) {
    .product_adddesign {
        margin: -10px 0 0 0;
    }

    .product_selecteddesign {
        margin: -10px 0 50px 0;
    }
}

/*status*/
.designdetails .status_wrap {
    display: none;
}

.status_wrap {
    clear: both;
    margin-top: 20px;
}

.status {
    border-radius: 0;
    border-width: 2px;
    padding: 8px 10px;
    line-height: 17px;
    display: inline-block;
    vertical-align: middle;
}

    .status.status-error {
        color: #f64944;
        background: #fde1e0;
        border-color: #fcbfbe;
        border-style: solid;
    }

/*validation*/

.k-widget.k-tooltip.k-tooltip-validation.k-invalid-msg {
    background: none;
    color: red;
    border: none;
    font-size: 13px;
    padding: 0;
    display: block;
    text-align: left;
    margin-top: 5px;
    white-space: normal;
}

    .k-widget.k-tooltip.k-tooltip-validation.k-invalid-msg .k-icon {
        display: none;
    }

    .k-widget.k-tooltip.k-tooltip-validation.k-invalid-msg:before {
        font-family: 'FontAwesome';
        font-size: 14px;
        content: '\f05a';
        color: red;
        padding-right: 3px;
    }

/*kendo dropdown*/

.k-widget.k-dropdown.k-header {
    background: none;
}

.k-widget.k-dropdown .k-dropdown-wrap {
    border-radius: 0;
}

    .k-widget.k-dropdown .k-dropdown-wrap.k-state-default {
        background: #fff;
        box-shadow: none;
        border-radius: 0;
    }

        .k-widget.k-dropdown .k-dropdown-wrap.k-state-default.k-state-hover {
            border-color: #ccc;
        }

            .k-widget.k-dropdown .k-dropdown-wrap.k-state-default.k-state-focused,
            .k-widget.k-dropdown .k-dropdown-wrap.k-state-default.k-state-hover.k-state-focused {
                border-color: #ccc;
            }

                .k-widget.k-dropdown .k-dropdown-wrap.k-state-default.k-state-focused .k-input {
                    border: none;
                }

        .k-widget.k-dropdown .k-dropdown-wrap.k-state-default.k-state-border-down {
            padding: 0;
            border-bottom-width: 1px;
            border-radius: 0;
        }

        .k-widget.k-dropdown .k-dropdown-wrap.k-state-default.k-state-active.k-state-border-down {
            box-shadow: none;
        }

        .k-widget.k-dropdown .k-dropdown-wrap.k-state-default .k-select {
            border: none;
        }

    .k-widget.k-dropdown .k-dropdown-wrap .k-textbox {
        border: 1px solid #ccc;
    }

        .k-widget.k-dropdown .k-dropdown-wrap .k-textbox:hover {
            border-color: #ccc;
        }

            .k-widget.k-dropdown .k-dropdown-wrap .k-textbox:hover:focus {
                border-color: #ccc;
            }

    .k-widget.k-dropdown .k-dropdown-wrap.k-state-disabled {
        opacity: 1;
    }

        .k-widget.k-dropdown .k-dropdown-wrap.k-state-disabled .k-input {
            height: 40px;
            line-height: 40px;
            background: none;
            box-shadow: none;
        }

    .k-widget.k-dropdown .k-dropdown-wrap .k-input {
        text-indent: 0;
        text-align: left;
        padding: 0 0 0 7px;
        height: 40px;
        line-height: 40px;
    }

    .k-widget.k-dropdown .k-dropdown-wrap .k-select {
        border-radius: 0;
        color: #fff;
        width: 24px;
    }

        .k-widget.k-dropdown .k-dropdown-wrap .k-select .k-icon:before {
            content: none;
        }

        .k-widget.k-dropdown .k-dropdown-wrap .k-select:before {
            content: none;
        }

        .k-widget.k-dropdown .k-dropdown-wrap .k-select:after {
            content: '\f0d7';
            color: #444;
            font-family: 'FontAwesome';
            position: absolute;
            font-size: 16px;
            line-height: 10px;
            width: 100%;
            right: 2px;
            top: 16px;
        }

.k-widget.k-dropdown .k-dropdown.k-header {
    background: none;
}

.k-list-container.k-popup {
    border: 1px solid #ccc;
}

    .k-list-container.k-popup .k-list .k-item {
    }

    .k-list-container.k-popup .k-list .k-state-focused {
        border-radius: 0;
    }

    .k-list-container.k-popup .k-list .k-item {
        min-height: 0;
        padding: 10px 6px;
        cursor: pointer;
        overflow: hidden;
        line-height: 18px;
        border: none !important;
    }

    .k-list-container.k-popup .k-list > .k-state-focused.k-state-selected {
        background: #f2f2f2;
        color: #444;
    }

    .k-list-container.k-popup .k-list > .k-state-hover {
        background: #f2f2f2;
        border-radius: 0;
    }

    .k-list-container.k-popup .k-list-optionlabel.k-state-selected.k-state-focused {
        background: #f2f2f2;
        color: #444;
        min-height: 0;
        border: 0;
        border-radius: 0;
        padding: 10px 6px;
        cursor: pointer;
        line-height: 18px;
    }

        .k-list-container.k-popup .k-list-optionlabel.k-state-selected.k-state-focused.k-state-hover {
            background: #f2f2f2;
            color: #444;
        }

/*kendo numeric*/
.k-widget.k-numerictextbox .k-numeric-wrap {
    border-radius: 0;
}

    .k-widget.k-numerictextbox .k-numeric-wrap.k-state-default {
        background: #fff;
        box-shadow: none;
    }

        .k-widget.k-numerictextbox .k-numeric-wrap.k-state-default.k-state-hover {
            border-color: #ccc;
        }

            .k-widget.k-numerictextbox .k-numeric-wrap.k-state-default.k-state-focused,
            .k-widget.k-numerictextbox .k-numeric-wrap.k-state-default.k-state-hover.k-state-focused {
                border-color: #ccc;
            }

                .k-widget.k-numerictextbox .k-numeric-wrap.k-state-default.k-state-focused .k-input {
                    border: none;
                }

        .k-widget.k-numerictextbox .k-numeric-wrap.k-state-default.k-state-border-down {
            padding: 0;
            border-bottom-width: 1px;
            border-radius: 0;
        }

        .k-widget.k-numerictextbox .k-numeric-wrap.k-state-default.k-state-active.k-state-border-down {
            box-shadow: none;
        }

        .k-widget.k-numerictextbox .k-numeric-wrap.k-state-default .k-select {
            border: none;
        }

    .k-widget.k-numerictextbox .k-numeric-wrap .k-input {
        text-indent: 0;
        text-align: left;
        padding: 0 0 0 7px;
        height: 40px;
        line-height: 40px;
        box-shadow: none !important;
    }

    .k-widget.k-numerictextbox .k-numeric-wrap .k-link {
        height: 20px;
        position: relative;
        color: #444;
    }

        .k-widget.k-numerictextbox .k-numeric-wrap .k-link.k-state-selected {
            background: none;
            box-shadow: none;
            color: #444;
        }

    .k-widget.k-numerictextbox .k-numeric-wrap .k-icon {
        background: none;
        height: 100%;
        width: 100%;
        vertical-align: baseline;
    }

        .k-widget.k-numerictextbox .k-numeric-wrap .k-icon:before {
            font-family: 'FontAwesome';
            font-size: 14px;
            position: absolute;
            top: 50%;
            right: 10px;
            height: 14px;
            line-height: 14px;
        }

    .k-widget.k-numerictextbox .k-numeric-wrap .k-i-arrow-60-up:before {
        content: '\f0d8';
        margin-top: -6px;
    }

    .k-widget.k-numerictextbox .k-numeric-wrap .k-i-arrow-60-down:before {
        content: '\f0d7';
        margin-top: -8px;
    }

    .k-widget.k-numerictextbox .k-numeric-wrap .k-icon.k-i-warning {
        display: none !important;
    }

    .k-widget.k-numerictextbox .k-numeric-wrap .k-tooltip-validation {
        display: none !important;
    }


/*kendo upload*/

.k-widget.k-upload {
    border-radius: 0;
    background: none;
    border: none;
}

    .k-widget.k-upload .k-dropzone {
        padding: 0;
        border-radius: 0;
        max-width: 430px;
    }

    .k-widget.k-upload .k-button.k-upload-button {
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 0;
        padding: 0;
        margin: 0;
        width: 160px;
        height: 42px;
        line-height: 40px;
    }

        .k-widget.k-upload .k-button.k-upload-button:hover,
        .k-widget.k-upload .k-button.k-upload-button:active,
        .k-widget.k-upload .k-button.k-upload-button:active:hover,
        .k-widget.k-upload .k-button.k-upload-button.k-state-focused {
            background: #fff;
            border: 1px solid #ccc;
        }

        .k-widget.k-upload .input:focus,
        .k-widget.k-upload .k-button.k-upload-button.k-state-focused,
        .k-widget.k-upload .k-button.k-upload-button:focus {
            outline: 0 !important;
            box-shadow: none !important;
        }

        .k-widget.k-upload .k-button.k-upload-button ~ .k-upload-status.k-upload-status-total {
            display: none;
        }

    .k-widget.k-upload .k-upload-files {
        margin-top: 10px;
        border-top: 1px solid #ccc;
        width: 430px;
    }

    .k-widget.k-upload .k-file {
        border: 1px solid #ccc;
        padding: 10px;
        border-top: 0;
    }

        .k-widget.k-upload .k-file.k-file-invalid .k-file-name-invalid {
            color: red;
        }

        .k-widget.k-upload .k-file.k-file-validation-message {
            color: red;
            position: relative;
            padding-left: 18px;
        }

            .k-widget.k-upload .k-file.k-file-validation-message:before {
                content: '\f06a';
                font-family: 'FontAwesome';
                font-size: 14px;
                left: 0;
                top: 0;
                position: absolute;
            }

        .k-widget.k-upload .k-file .k-file-name-size-wrapper {
            vertical-align: top;
            width: 320px;
        }

        .k-widget.k-upload .k-file .k-file-name {
            line-height: 22px;
        }

    .k-widget.k-upload .k-upload-status {
        position: static;
        margin-left: 20px;
        display: inline-block;
        vertical-align: middle;
        height: 38px;
        opacity: 1;
    }

        .k-widget.k-upload .k-upload-status .k-button {
            height: 100%;
            opacity: 1;
        }

            .k-widget.k-upload .k-upload-status .k-button.k-state-focused {
                background: none;
            }

            .k-widget.k-upload .k-upload-status .k-button:hover {
                border: none;
            }

        .k-widget.k-upload .k-upload-status .k-icon.k-i-close {
            background: none;
            height: 100%;
            display: block;
        }

            .k-widget.k-upload .k-upload-status .k-icon.k-i-close:before {
                color: #444;
                content: '\f00d';
                font-family: 'FontAwesome';
                font-size: 18px;
                position: absolute;
                height: 38px;
                line-height: 36px;
                top: 0;
                bottom: auto;
                right: 0;
            }

    .k-widget.k-upload .k-upload-action {
        width: auto;
        margin: 0;
        border: none;
    }

        .k-widget.k-upload .k-upload-action.k-state-focused {
            border: none;
        }

/* Clearable text inputs */
.clearable {
    width: 100%;
    position: relative;
    display: inline-block;
}

    .clearable input[type=text] {
        padding-right: 24px;
        padding-left: 18px;
        width: 100%;
        box-sizing: border-box;
    }

    .clearable img {
        position: absolute;
        top: 1px;
        right: 0px;
        padding: 7px;
        border-top-right-radius: 25px;
        border-bottom-right-radius: 25px;
        background-color: lightgrey;
    }

.clearable__clear {
    display: none;
    position: absolute;
    right: 35px;
    top: 3px;
    padding: 0 8px;
    color: rgb(102, 102, 102);
    font-style: normal;
    font-size: 1.3em;
    user-select: none;
    cursor: pointer;
}

.clearable input::-ms-clear { /* Remove IE default X */
    display: none;
}


/*kendo window*/

.k-widget.k-window {
    background: #fff;
    border: 1px solid #fff;
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    padding: 20px;
    box-shadow: none;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 80px);
    border-radius: 0;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    -webkit-transform: translate(-50%,-50%) !important;
    -ms-transform: translate(-50%,-50%) !important;
    transform: translate(-50%,-50%) !important;
}

    .k-widget.k-window * {
        box-sizing: border-box;
    }

    .k-widget.k-window .k-window-titlebar.k-header {
        display: none;
    }

    .k-widget.k-window .k-window-content.k-content {
        padding: 0;
    }

    .k-widget.k-window .k-resize-handle {
        display: none;
    }

.popup_close {
    position: absolute;
    top: -3px;
    right: 0px;
    padding: 10px;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
}

    .popup_close span {
        display: inline-block;
        width: 20px;
        height: 20px;
        overflow: hidden;
        position: relative
    }

        .popup_close span:before,
        .popup_close span:after {
            content: '';
            position: absolute;
            height: 3px;
            width: 100%;
            top: 50%;
            left: 0;
            margin-top: -1px;
            background: #777;
            border-radius: 5px;
        }

        .popup_close span:before {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .popup_close span:after {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }


/*Product Zoom*/

.product_hovertext {
    display: none;
}

/* Compatibility styles for frameworks like bootstrap, foundation e.t.c */

.xzoom-source img,
.xzoom-preview img,
.xzoom-lens img {
    display: block;
    max-width: none;
    max-height: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

/* xZoom Styles below */

.xzoom-container {
    display: inline-block;
}

.xzoom-source,
.xzoom-hidden {
    display: block;
    position: static;
    float: none;
    clear: both;
}

.xzoom-hidden {
    overflow: hidden;
}

.xzoom-lens {
    border: 1px solid #777;
}

    .xzoom-lens > img {
        display: none !important;
    }

.xzoom-loading {
    display: none;
}

.xzoom-preview img {
    min-width: 1000px !important;
    height: auto !important;
}

.xzoom-preview {
    border: 2px solid #777;
}


@media (min-width: 1130px) {
    .product_hovertext {
        margin-top: 10px;
        text-align: center;
        font-size: 13px;
        font-style: italic;
        color: #666;
        display: block;
    }
}

@media only screen and (max-width: 550px) {
    .header_welcome_divider {
        display: none !important;
    }
}


@media (max-width: 1130px) {
    .xzoom-source {
        display: none !important;
    }
}





.cartcontainer {
    width: 50px;
    display: table-cell;
    padding: 2px;
    vertical-align: middle;
    text-align: center;
}



span.cart_number {
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    display: inline-block;
    border-radius: 1px;
    padding: 0 7px;
}

/* override on menu */
.k-item .k-menu-group {
    text-align: left !important;
}

/* Facet List panel */
@media screen and (min-width: 0px) and (max-width: 800px) {
    .FacetList {
        display: none;
    }
}

@media screen and (min-width: 801px) {
    .FacetList {
        display: block;
    }
}

.mlsPager {
    display: inline;
    float: left;
}

.mlsPagerButton {
    background-color: #eee;
    display: inline;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: bold;
}

    .mlsPagerButton:hover {
        cursor: pointer;
        background-color: #c4112f;
        color: #fff;
    }

    .mlsPagerButton a {
        color: #000;
    }

        .mlsPagerButton a:hover {
            color: #fff;
            cursor: pointer;
            text-decoration: underline;
        }

.mlsPagerButtonActive {
    display: inline;
    padding: 8px 16px;
    background-color: #c4112f;
    color: #fff;
}

.mlsPagerButtonInactive {
    border: none;
    color: #fff;
    display: inline;
    padding: 8px 16px;
    background-color: #eee;
    font-size: 15px;
    font-weight: bold;
}

.mlsPagerGoto {
    display: inline;
    padding: 8px 16px;
    margin-right: 4px;
    background-color: #eee;
}

.mlsPagerFooter {
    margin-top: 15px;
    font-size: 13px;
    float: left;
    font-weight: 600;
}

@media screen and (max-width: 500px) {
    .mlsPagerButton {
        display: inline;
        padding: 5px 10px;
        font-size: 11px;
    }

    .mlsPagerButtonActive {
        display: inline;
        padding: 5px 10px;
        font-size: 11px;
    }

    .mlsPagerButtonInactive {
        display: inline;
        padding: 5px 10px;
        font-size: 11px;
    }

    .mlsPagerGoto {
        display: inline;
        padding: 5px 10px;
        font-size: 11px;
    }

    .mlsPagerFooter {
        font-size: 12px;
    }
}
