﻿@charset "utf-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,800,600);

/* css reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    margin: 2%;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* end reset */

/* body *{ font: 14px 'Open Sans',Helvetica, sans-serif; font-weight:600; color:#444; } */
html, body, table, form, input, textarea, select, button {
    font: 14px 'Open Sans',Helvetica, sans-serif;
    font-weight: 600;
    color: #444;
    line-height: normal;
}

    input[type="checkbox"] {
        vertical-align: middle;
    }

    select, textarea, input[type="text"] {
        border-radius: 3px;
        border: 1px solid #CCC;
        box-shadow: 1px 1px 0px rgba(0,0,0,.15);
    }

    input[type="number"] {
        border-radius: 3px;
        border: 1px solid #CCC;
        box-shadow: 1px 1px 0px rgba(0,0,0,.15);
    }

.cloak {
    display: none;
}

#loading {
    background: #000;
    opacity: .25;
    padding-top: 15%;
    display: none;
    font-size: 16px;
    text-align: center;
    position: fixed;
    z-index: 999992;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #ccc;
}

    #loading .fa {
        color: #ccc;
        margin-top: 10px;
        display: block;
    }

/* .imageLoading {
opacity:0.45;
position:absolute;
height:48px;
width:48px;
z-index:10;
margin-left: 300px;
margin-top: 175px;
} */
.imageLoading {
    opacity: 0.75;
    color: #555;
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 25%;
}

    .imageLoading .fa {
        color: #555;
        margin-top: 10px;
        display: block;
    }

#uploading {
    opacity: 1;
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
    text-align: center;
    padding-top: 60px;
    background: rgba(255,255,255,.70);
    color: #999;
    border-radius: 6px;
}

    #uploading .fa {
        display: block;
        color: #999;
    }

/* form validation */
div.errorWrap {
    position: relative;
}

.errorWrap span.errorMsg {
    background-color: #F33;
    position: absolute;
    white-space: nowrap;
    display: block;
    padding: 2px 8px;
    z-index: 1;
    top: -15px;
    font-weight: bold;
    color: #FFF;
    font-size: 11px;
    line-height: 1.5;
}

    .errorWrap span.errorMsg:after {
        border-top: 6px solid #F33;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        width: 0;
        height: 0;
        content: "";
        display: block;
        position: absolute;
        top: 100%;
        left: 1em;
    }
/*
<div class="errorWrap">
<span class="errorMsg">Invalid Quantity</span>
</div>
*/


button {
    font-size: 14px; /* line-height:2.6; */
    line-height: 36px;
    cursor: pointer;
    border: 1px solid #DDD;
    border-radius: 4px;
    outline: none;
    color: #666;
    transition: .5s ease all;
    box-shadow: 1px 1px 0px rgba(0,0,0,.15);
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(241,241,241,1) 50%, rgba(225,225,225,1) 51%, rgba(246,246,246,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(50%,rgba(241,241,241,1)), color-stop(51%,rgba(225,225,225,1)), color-stop(100%,rgba(246,246,246,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(241,241,241,1) 50%,rgba(225,225,225,1) 51%,rgba(246,246,246,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(241,241,241,1) 50%,rgba(225,225,225,1) 51%,rgba(246,246,246,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(241,241,241,1) 50%,rgba(225,225,225,1) 51%,rgba(246,246,246,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(241,241,241,1) 50%,rgba(225,225,225,1) 51%,rgba(246,246,246,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f6f6f6',GradientType=0 ); /* IE6-9 */
}

    button:active, button:hover, button:focus,
    a:active, a:hover, a:focus {
        outline: none;
    }

    button:hover {
        border-color: #999;
        color: #222;
        box-shadow: none;
    }

    button .fa {
        margin-right: 10px;
        color: #666;
    }

    button.disabled, .button.disabled {
        background: #ccc;
        color: #FFF;
        text-shadow: -1px -1px 0px rgba(0,0,0,.5);
        opacity: .5;
        cursor: default;
        border: none;
        box-shadow: none;
    }

#cspContainerMain {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.cspProductInfo {
    padding: 10px 0 20px 0;
}

    .cspProductInfo .h-title {
        font-weight: 700;
        font-size: 22px;
        display: block;
    }

/******** product preview - left side ********/
.cspPreviewContainer {
    float: left; /*padding-right:25px;*/
    width: 100%;
    max-width: 650px;
}

.cspPreviewImageContainer {
    position: relative;
    border: 1px solid #CCC;
    width: 99.5%;
    border-radius: 3px;
    box-shadow: 0 2px 3px rgba(0,0,0,.10);
}

    .cspPreviewImageContainer img {
        width: 99%;
        margin: 1% auto;
        display: block;
    }

    /* powered by csp */
    .cspPreviewImageContainer .poweredbyCSP {
        padding: 5px;
        margin: auto;
        max-width: 302px;
    }

        .cspPreviewImageContainer .poweredbyCSP img {
            width: 100%;
        }

    .cspPreviewImageContainer .csp-loading-container {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #FFF;
        opacity: .8;
        display: none;
    }

    .cspPreviewImageContainer .csp-branded-loading {
        width: 150px;
        text-align: center;
        margin: 30% auto;
        position: relative;
    }

        .cspPreviewImageContainer .csp-branded-loading img.masklayer {
            position: absolute;
            top: 0;
            z-index: 5;
        }

        .cspPreviewImageContainer .csp-branded-loading img.bglayer {
            position: absolute;
            top: 0;
            z-index: 3;
        }

        .cspPreviewImageContainer .csp-branded-loading img.animatelayer {
            position: absolute;
            top: 0;
            z-index: 4;
            /* -webkit-filter: blur(3px); */
            -webkit-animation-name: spinnerRotate;
            -webkit-animation-duration: .7s;
            -webkit-animation-iteration-count: infinite;
            -webkit-animation-timing-function: linear;
            -webkit-animation-direction: reverse;
            /* -moz-filter: blur(3px); */
            -moz-animation-name: spinnerRotate;
            -moz-animation-duration: .7s;
            -moz-animation-iteration-count: infinite;
            -moz-animation-timing-function: linear;
            -moz-animation-direction: reverse;
            /*-ms-filter: blur(3px); */
            -ms-animation-name: spinnerRotate;
            -ms-animation-duration: .7s;
            -ms-animation-iteration-count: infinite;
            -ms-animation-timing-function: linear;
            -ms-animation-direction: reverse;
        }

@-webkit-keyframes spinnerRotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spinnerRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* .cspPreviewImageContainer .csp-branded-loading { background:url(../images/csp-loading.png) no-repeat transparent center top;
width:150px; text-align:center; margin:30% auto;
-webkit-animation: fade 2s linear infinite;
animation: fade 2s linear infinite;
 } */
/* Chrome, Safari, Opera */
/*
@-webkit-keyframes fade {
    0% {opacity:.25}
    50% {opacity:1;}
	100% {opacity:.25;}
}
*/
/* Standard syntax */
/*
@keyframes fade {
    0% {opacity:.25}
    50% {opacity:1;}
	100% {opacity:.25;}
}
*/
.cspPreviewImageContainer .csp-branded-loading .loading-txt {
    font-size: 16px;
    color: #FF8300;
    padding-top: 160px;
    display: block;
}

.cspPreviewButtonContainer {
    background: #EEE;
    padding: 10px;
    margin-top: 10px;
    border-radius: 6px;
}

    .cspPreviewButtonContainer button {
        margin-right: 10px;
        width: 100%;
        max-width: 150px;
    }

        .cspPreviewButtonContainer button.preview-zoom {
            float: right;
            max-width: 125px;
        }

.csp-prod-option-box {
    background: #EEE;
    padding: 15px 20px;
    margin-top: 10px;
    border-radius: 6px;
}

    .csp-prod-option-box .h-title {
        font-weight: 600;
        font-size: 16px;
        line-height: normal;
        margin-bottom: 0px;
        color: #444;
    }

    .csp-prod-option-box .ui-helper-txt {
        font-weight: 400;
        font-size: 13px;
        color: #666;
        line-height: normal;
    }

    .csp-prod-option-box ul.option-list {
        display: block;
    }

    .csp-prod-option-box ul li {
        display: inline-block;
        padding-right: 3px;
        padding-bottom: 5px;
        vertical-align: top;
    }

        .csp-prod-option-box ul li a {
            display: block;
            border: 2px solid #CCC;
            font-size: 0;
            width: 30px;
            height: 30px;
            border-radius: 3px;
        }

            .csp-prod-option-box ul li a:hover {
                border-color: #AAA;
            }

            .csp-prod-option-box ul li a.selected {
                border-color: #444;
            }

.csp-prod-alert-wrap {
    background: #EEE;
    padding: 15px 0;
    margin-top: 10px;
    border-radius: 6px;
    box-sizing: border-box;
    width: 100%;
}

    .csp-prod-alert-wrap .prod-min-cost {
        display: table;
        width: 100%;
    }

        .csp-prod-alert-wrap .prod-min-cost li {
            display: table-cell;
            vertical-align: middle;
            width: 50%;
            padding: 0 20px;
        }

            .csp-prod-alert-wrap .prod-min-cost li:first-child {
                border-right: 2px solid #DDD;
            }

            .csp-prod-alert-wrap .prod-min-cost li dl {
                display: block;
                text-align: center;
            }

                .csp-prod-alert-wrap .prod-min-cost li dl dt {
                    font-weight: 600;
                    font-size: 16px;
                    display: block;
                }

                .csp-prod-alert-wrap .prod-min-cost li dl dd {
                    font-size: 13px;
                    font-weight: 400;
                    display: block;
                    margin-top: 10px;
                }

.csp-prod-warning {
    position: relative;
    border: 2px solid #FF8300;
    padding: 15px 15px 15px 0;
    margin-top: 10px;
    border-radius: 6px;
    background: #FFF;
}

    .csp-prod-warning .warning-icon {
        position: absolute;
        left: -2px;
        top: -2px;
        bottom: -2px;
        width: 50px;
        background: #FF8300;
        border-radius: 6px 0 0 6px;
        text-align: center;
    }

        .csp-prod-warning .warning-icon .fa {
            color: #FFF;
            font-size: 32px;
            line-height: 32px;
            position: absolute;
            top: 50%;
            left: 50%;
            -moz-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        }

    .csp-prod-warning .warning-message {
        margin-left: 65px;
        font-size: 13px;
        color: #666;
        font-weight: 400;
    }

.csp-prod-alert-wrap.tieredPriceBox {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    width: 100%;
}

.csp-prod-alert-wrap:after {
    clear: both;
    content: "";
    display: block;
}

.csp-prod-alert-wrap.tieredPriceBox .tiered-price-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    width: 50%;
    float: left;
    box-sizing: border-box;
}

.csp-prod-alert-wrap.tieredPriceBox .print-colors-select {
    text-align: right;
    line-height: 1.4;
    width: 50%;
    float: left;
    box-sizing: border-box;
}

    .csp-prod-alert-wrap.tieredPriceBox .print-colors-select label {
        font-size: 14px;
        padding: 5px;
        display: inline-block;
        padding-left: 0;
    }

    .csp-prod-alert-wrap.tieredPriceBox .print-colors-select select {
        font-size: 12px;
        padding: 4px;
        min-width: 55px;
    }

.clearfix {
    clear: both;
}

.csp-prod-alert-wrap.tieredPriceBox table.tp-table {
    width: 100%;
    clear: both;
    margin-top: 15px;
}

    .csp-prod-alert-wrap.tieredPriceBox table.tp-table td {
        font-size: 14px;
        font-weight: 400;
        text-align: center;
        padding: 8px 8px;
        border-bottom: 1px solid #CCC;
        border-left: 1px solid #CCC;
    }

    .csp-prod-alert-wrap.tieredPriceBox table.tp-table tbody {
        border-top: 1px solid #CCC;
        border-right: 1px solid #CCC;
    }

    .csp-prod-alert-wrap.tieredPriceBox table.tp-table tr td:first-of-type {
        font-weight: 600;
        text-align: left;
    }


@media (max-width: 908px) {
    .wrap-on-mobile {
        position: absolute;
        bottom: -630px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        height: 650px;
        overflow-y: auto;
        padding: 0 5px;
    }

    .csp-prod-alert-wrap {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .csp-prod-warning {
        max-width: 381px;
        margin-left: auto;
        margin-right: auto;
    }

    .csp-prod-alert-wrap .prod-min-cost {
        display: block;
    }

        .csp-prod-alert-wrap .prod-min-cost li {
            display: block;
            vertical-align: middle;
            width: auto;
            padding: 10px;
        }

            .csp-prod-alert-wrap .prod-min-cost li:first-child {
                border-right: 0;
            }

    .cspProductInfo .h-title {
        margin-right: 50px;
        font-size: 18px;
    }

    .csp-prod-alert-wrap.tieredPriceBox {
        overflow-x: auto;
    }

        .csp-prod-alert-wrap.tieredPriceBox .tiered-price-title {
            width: 100%;
        }

        .csp-prod-alert-wrap.tieredPriceBox .print-colors-select {
            text-align: left;
            width: 100%;
        }

        .csp-prod-alert-wrap.tieredPriceBox table.tp-table {
            overflow: auto;
        }
}

/******** UI block - right side ********/
.cspUIBlockcontainer {
    float: right;
    width: 400px;
}

.UIblock-designtools, .UIblock-orderinfo {
    border: 1px solid #CCC;
    margin-bottom: 25px;
    border-radius: 6px;
    box-shadow: 0 2px 3px rgba(0,0,0,.10);
}

    .UIblock-designtools.selectImage {
    }

.selectImage .tools-target-image {
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border: 5px solid #444;
    border-bottom: 0;
    border-radius: 6px;
}

    .selectImage .tools-target-image img {
        width: 100%;
    }

    .selectImage .tools-target-image img {
        position: absolute;
        top: 50%;
        left: 50%;
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin-top: -18px;
    }
/*
.selectImage .tools-target-image img {
position: absolute;
top: -15%;
right: 0;
bottom: 0;
left: 0;
max-width: 100%;
max-height: 100%;
margin: auto;
-webkit-transform: translateZ(0) scale(1,1);
}
*/

.selectImage .target-image-title {
    text-transform: uppercase;
    position: absolute;
    width: 150px;
    bottom: 0;
    right: 0;
    left: 0;
    font-weight: bold;
    font-size: 12px;
    line-height: 3;
    color: #FFF;
    background: #444;
    width: 100%;
    text-align: center;
    z-index: 1;
}

.selectImage .tools-select-image {
    display: inline-block;
    position: relative;
    float: right;
    width: 100%;
    max-width: 195px;
    padding-top: 7px;
}

    .selectImage .tools-select-image button {
        margin-bottom: 10px;
        width: 100%;
        text-align: left;
    }

        .selectImage .tools-select-image button .fa {
            width: 20px;
            margin-right: 10px;
            margin-left: 27px;
        }

.UIblock-designtools.applyImage {
}

    .UIblock-designtools.applyImage.NoAreas #tabs-imprint-location .ui-tabs-panel {
        display: none !important;
    }

    .UIblock-designtools.applyImage.NoAreas #tabs-imprint-location ul.ui-tabs-nav > li {
        border-radius: 3px;
        margin: 3px;
        width: 45%;
    }

.ui-title {
    display: block;
    line-height: 2.8;
    font-size: 16px;
    text-transform: uppercase;
    border-bottom: 0px solid #DDD;
    box-shadow: 0 1px 6px rgba(0,0,0,.10);
    text-align: center;
    border-radius: 6px 6px 0 0;
    position: relative;
    background: rgb(238,238,238); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(238,238,238,1) 0%, rgba(204,204,204,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(238,238,238,1)), color-stop(100%,rgba(204,204,204,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */
}

    .ui-title .help-me {
        position: absolute;
        right: 10px;
        top: 12px;
        display: block;
        cursor: pointer;
        line-height: 18px;
    }

        .ui-title .help-me .fa {
            color: #777;
            transition: .3s ease color;
        }

        .ui-title .help-me:hover .fa {
            color: #444;
        }

.UIinside-padblock {
    padding: 12px;
    padding-top: 12px;
}

.ui-helper-txt {
    margin-bottom: 8px;
    font-size: 13px;
}

#tabs-imprint-location {
    text-align: center;
}

    #tabs-imprint-location ul.ui-tabs-nav {
        display: block;
        width: 100%;
    }

        #tabs-imprint-location ul.ui-tabs-nav > li {
            display: inline-block;
            background: #AAA;
            width: 40%;
            text-align: center;
            border-radius: 3px 3px 0 0;
        }

            #tabs-imprint-location ul.ui-tabs-nav > li a {
                display: block;
                line-height: 2.5;
                text-decoration: none;
                color: #FFF;
            }

            #tabs-imprint-location ul.ui-tabs-nav > li.ui-state-active {
                background: #444;
            }

    #tabs-imprint-location .ui-tabs-panel {
        padding: 10px;
        border: 2px solid #444;
        border-radius: 3px;
    }

        #tabs-imprint-location .ui-tabs-panel ul > li {
            display: inline-block;
            padding: 5px;
            background: #FFF;
            border: 2px solid #EEE;
            margin-right: 5px;
            cursor: pointer;
        }

            #tabs-imprint-location .ui-tabs-panel ul > li:hover {
                border-color: #AAA;
            }

        #tabs-imprint-location .ui-tabs-panel ul > img {
        }

        #tabs-imprint-location .ui-tabs-panel ul > li.selected {
            border-color: #444;
        }

.imprint-button-wrap {
    padding: 0px 0px;
    margin-top: 15px;
    text-align: center;
}

    .imprint-button-wrap button:first-of-type {
        margin-right: 10px;
    }

    .imprint-button-wrap button {
        width: 45%;
    }

.image-adjustment-wrap {
    padding: 15px 0;
    border-top: 2px solid #ddd;
    margin-top: 18px;
    border-radius: 3px;
    text-align: center;
}

    .image-adjustment-wrap .adjustment-buttons {
        padding: 0px;
        border: 0px solid #999;
    }

        .image-adjustment-wrap .adjustment-buttons button {
            display: inline-block;
            padding: 0;
            line-height: 1;
            width: 35px;
            height: 35px;
            background: #444;
            box-shadow: none;
            border-radius: 0;
            border: none;
            margin: 0 1px;
        }

            .image-adjustment-wrap .adjustment-buttons button:hover {
                background: #AAA;
            }

            .image-adjustment-wrap .adjustment-buttons button .fa {
                margin-right: 0;
                color: #fafafa;
            }

/* order info section */
.UIblock-orderinfo {
}

    .UIblock-orderinfo .UIinside-padblock {
        padding: 10px;
    }

    .UIblock-orderinfo table.order-option-table {
        width: 100%;
    }

        .UIblock-orderinfo table.order-option-table thead th {
            background: #444;
            color: #FFF;
            padding: 5px 5px;
            white-space: nowrap;
            font-size: 12px;
            text-transform: uppercase;
        }

        .UIblock-orderinfo table.order-option-table tbody td {
            background: #EEE;
            padding: 5px 5px;
            text-align: center;
            white-space: nowrap;
            font-size: 12px;
        }

            .UIblock-orderinfo table.order-option-table tbody td select {
                font-size: 12px;
                padding: 4px;
                width: 100%;
                max-width: 180px;
            }

            .UIblock-orderinfo table.order-option-table tbody td input[type="number"] {
                font-size: 12px;
                padding: 5px;
                width: 40px;
            }

            .UIblock-orderinfo table.order-option-table tbody td input[type=number]::-webkit-outer-spin-button,
            .UIblock-orderinfo table.order-option-table tbody td input[type=number]::-webkit-inner-spin-button {
                -webkit-appearance: none;
                margin: 0;
            }

input[type=number] {
    -moz-appearance: textfield;
}

.UIblock-orderinfo table.order-option-table tbody td .fa-trash {
    color: #AAA;
    transition: .5s ease all;
    cursor: pointer;
    line-height: 1;
}

    .UIblock-orderinfo table.order-option-table tbody td .fa-trash:hover {
        color: #444;
    }

.UIblock-orderinfo table.order-option-table tfoot td {
    background: #EEE;
    padding: 5px 5px;
    text-align: center;
}

    .UIblock-orderinfo table.order-option-table tfoot td button {
        width: 75%;
        margin-bottom: 10px;
    }

.UIblock-orderinfo .order-cost {
    margin-top: 5px;
}

    .UIblock-orderinfo .order-cost:after {
        content: "";
        display: block;
        clear: both;
    }

    .UIblock-orderinfo .order-cost dl {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid #DDD;
        width: 100%;
        font-size: 14px;
        float: left;
    }

        .UIblock-orderinfo .order-cost dl dt {
            display: inline-block;
            text-align: left;
            width: 65%;
            font-weight: 600;
            float: left;
        }

        .UIblock-orderinfo .order-cost dl dd {
            display: inline-block;
            text-align: right;
            float: left;
            width: 35%;
            font-weight: 400;
        }

        .UIblock-orderinfo .order-cost dl.total-price dd {
            font-weight: 600;
        }

        .UIblock-orderinfo .order-cost dl.cost-per-each dd {
            font-weight: 600;
        }

.UIblock-orderinfo .order-comments {
    margin-top: 10px;
}

    .UIblock-orderinfo .order-comments h3 {
        display: block;
        margin-bottom: 3px;
    }

    .UIblock-orderinfo .order-comments textarea {
        padding: 5px;
        font-size: 13px;
        display: block;
        color: #666;
        height: 40px;
        width: 100%;
        max-width: 360px;
        max-height: 100px;
    }

@media (max-width: 767px) {
    .UIblock-orderinfo .order-cost dl dt {
        width: 55%;
    }

    .UIblock-orderinfo .order-cost dl dd {
        width: 45%;
    }

    .customSigns .UIblock-orderinfo .order-cost dl dd .edit-qty > span.setPrice {
        padding-left: 5px;
        padding-right: 5px;
    }
}

.order-add-to-cart {
    padding: 10px 0;
}

    .order-add-to-cart .order-terms {
        padding-bottom: 15px;
        text-align: center;
    }

        .order-add-to-cart .order-terms input[type="checkbox"] {
            display: inline-block;
            vertical-align: top;
        }

        .order-add-to-cart .order-terms label {
            font-size: 12px;
            line-height: 1.3;
            display: inline-block;
            text-align: left;
            max-width: 300px;
        }

            .order-add-to-cart .order-terms label a {
                font-size: 12px;
            }

    .order-add-to-cart button {
        width: 75%;
        display: block;
        margin: auto;
        font-size: 18px;
    }

        .order-add-to-cart button.disabled {
            background: #ccc;
            color: #FFF;
            text-shadow: -1px -1px 0px rgba(0,0,0,.5);
            opacity: .5;
            cursor: default;
            border: none;
            box-shadow: none;
        }

.UIblock-orderinfo .atc-order-note {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    padding: 5px 10px;
}

@media (max-width: 1137px) {
    .cspPreviewContainer {
        max-width: 575px;
    }
}

@media (max-width: 1058px) {
    .cspPreviewContainer {
        max-width: 460px;
    }
}

@media (max-width: 908px) {
    #cspContainerMain {
        max-width: 660px;
        padding: 0; /* overflow:hidden; */
        min-width: 400px;
    }

    .cspPreviewContainer {
        max-width: 650px;
        margin-bottom: 25px;
        padding-right: 0;
        float: none;
        min-width: 400px;
    }

    .cspUIBlockcontainer {
        float: none;
        margin: auto;
    }

    .cspPreviewButtonContainer button.preview-zoom {
        float: none;
        width: 100%;
    }

    .cspPreviewButtonContainer {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }

        .cspPreviewButtonContainer button {
            max-width: 115px;
            width: 100%;
        }

            .cspPreviewButtonContainer button .fa {
                display: none;
            }
}

@media (max-width: 429px) {
    .cspUIBlockcontainer {
        width: 100% !important;
    }
}

.hidden {
    display: none;
}

/********* modal **********/
.csp-modal-display-wrapper {
    display: none;
}

    .csp-modal-display-wrapper.upload {
        display: block;
    }

    .csp-modal-display-wrapper.myimages {
        display: block;
    }

    .csp-modal-display-wrapper.mypictos {
        display: block;
    }

    .csp-modal-display-wrapper.sharedimages {
        display: block;
    }

    .csp-modal-display-wrapper.help-first {
        display: block;
    }

    .csp-modal-display-wrapper.help-second {
        display: block;
    }

    .csp-modal-display-wrapper.help-third {
        display: block;
    }

    .csp-modal-display-wrapper.alert-msg {
        display: block;
    }

    .csp-modal-display-wrapper.csp-proof {
        display: block;
    }

.upload-wrap, .myimages-wrap, .mypictos-wrap, .sharedimages-wrap, .help-wrap, .help-wrap-first, .help-wrap-second, .help-wrap-third, .alert-msg-wrap, .csp-proof-wrap {
    display: none;
}

.csp-modal-display-wrapper.upload .upload-wrap {
    display: block;
    overflow: hidden;
}

.csp-modal-display-wrapper.myimages .myimages-wrap {
    display: block;
}

.csp-modal-display-wrapper.mypictos .mypictos-wrap {
    display: block;
}

.csp-modal-display-wrapper.sharedimages .sharedimages-wrap {
    display: block;
}

.csp-modal-display-wrapper.help-first .help-wrap-first {
    display: block;
}

.csp-modal-display-wrapper.help-second .help-wrap-second {
    display: block;
}

.csp-modal-display-wrapper.help-third .help-wrap-third {
    display: block;
}

.csp-modal-display-wrapper.alert-msg .alert-msg-wrap {
    display: block;
}

.csp-modal-display-wrapper.csp-proof .csp-proof-wrap {
    display: block;
}

.csp-modal-display-wrapper.csp-proof .csp-modal-container {
    position: absolute;
}

.csp-modal-container .modal-inside-pad:after {
    display: block;
    clear: both;
    content: "";
}

@media (max-width: 767px) {
    .csp-modal-container {
        position: fixed;
        width: auto;
        margin: 0;
        right: 10px;
        left: 10px;
        border-radius: 2px;
        top: 15px;
        overflow: auto;
        max-height: 600px;
    }
}

@media (max-width: 767px) {
    .zoomContainer {
        display: none;
    }
}

.csp-modal-display-wrapper h2.modal-title {
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 6px double #EEE;
    display: block;
    margin-bottom: 15px;
}

.csp-modal-display-wrapper .modal-help-txt {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    padding-bottom: 10px;
    float: left;
}

.csp-modal-display-wrapper .modal-button-wrap {
    padding: 15px 0;
}

    .csp-modal-display-wrapper .modal-button-wrap #qqFile {
        padding: 8px;
        font-size: 16px;
    }

.modal-image-list {
    display: block;
    text-align: center;
    max-height: 425px;
    overflow-y: auto;
    background: #f2f2f2;
    padding-bottom: 50px;
}

    .modal-image-list li {
        display: inline-block;
        margin: 1%;
        width: 13%;
        vertical-align: middle;
        border: 2px solid #DDD;
        padding: 5px;
        overflow: hidden;
        text-align: center;
        min-width: 100px;
        max-width: 250px;
        background: #FFF;
    }

        .modal-image-list li:hover {
            border-color: #444;
            cursor: pointer;
        }

        .modal-image-list li > a > img,
        .modal-image-list li > img {
            display: block;
            width: 100%;
        }

    /* update for square images in modal image list */
    .modal-image-list li {
        position: relative;
    }

        .modal-image-list li:before {
            content: "";
            display: block;
            padding-top: 100%;
        }

        .modal-image-list li img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            max-width: 95%;
            max-height: 95%;
            margin: auto;
        }
/* end update */
.upload .modal-button-wrap button {
    width: 100%;
    max-width: 250px;
}

.csp-modal-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: .35;
    z-index: 10;
}

.csp-modal-center {
    position: relative; /* margin:0 5%; */
}
/* .csp-modal-container { z-index:11; box-shadow:0 0 25px rgba(0,0,0,.25); min-height:100px; top:0px; position:absolute; width:100%; background:#FFF; border-radius:4px; } */
.csp-modal-container { /* fixed position */
    z-index: 11;
    box-shadow: 0 0 25px rgba(0,0,0,.25);
    min-height: 100px;
    position: absolute;
    width: 100%;
    margin: 38px auto 0 auto;
    right: 0;
    left: 0;
    max-width: 1100px;
    background: #FFF;
    border-radius: 4px;
}

    .csp-modal-container .modal-inside-pad {
        padding: 25px;
        padding-top: 18px;
    }

    .csp-modal-container .close-modal {
        font-size: 14px;
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
        border: 1px solid #AAA;
        color: #AAA;
        text-align: center;
        height: 24px;
        width: 24px;
        border-radius: 3px;
        cursor: pointer;
        line-height: 21px;
    }

        .csp-modal-container .close-modal .fa {
            line-height: 1;
            color: #AAA;
        }

        .csp-modal-container .close-modal:hover {
            color: #444;
            border-color: #444;
        }

            .csp-modal-container .close-modal:hover .fa {
                color: #444;
            }

/* csp proof modal styles */
.csp-proof-wrap .order-add-to-cart {
    padding-top: 0;
    padding-bottom: 0;
}

    .csp-proof-wrap .order-add-to-cart .order-terms {
        text-align: left;
    }

        .csp-proof-wrap .order-add-to-cart .order-terms label {
            max-width: 89%;
        }

    .csp-proof-wrap .order-add-to-cart button {
        margin: 0;
        width: 100%;
        max-width: 500px;
    }

.csp-proof-wrap .proof-display-container {
    border-top: 1px solid #EEE;
    margin-top: 20px;
    padding-top: 20px;
}

/* csp responsive proof design */
.csp-responsive-proof-container {
    width: 100%;
    display: block;
    overflow-y: auto; /*max-height:1100px;*/
}

    .csp-responsive-proof-container .proof-brand-header {
    }

    .csp-responsive-proof-container .info-grid-block {
        display: block;
        padding: 12px;
        vertical-align: top;
        margin-bottom: 20px;
    }

    .csp-responsive-proof-container .colLeft {
        float: left;
        width: 30%;
        display: inline-block;
        vertical-align: top;
    }

    .csp-responsive-proof-container .colRight {
        width: 69%;
        float: right;
        display: inline-block;
        vertical-align: top;
    }

    .csp-responsive-proof-container .proof-item-wrap {
        width: 100%;
        float: left;
        clear: both;
        margin-bottom: 30px;
        padding-bottom: 10px;
        border-bottom: 2px dashed #DDD;
    }

    .csp-responsive-proof-container .info-grid-block .blockTitle {
        font-size: 16px;
        color: #444;
        font-weight: 600;
        display: block;
        text-transform: uppercase;
    }

    .csp-responsive-proof-container .info-grid-block.orderInfo {
        background: #f5f5f5;
        border-radius: 6px;
        box-shadow: 1px 1px 0 rgba(0,0,0,.25);
    }

    .csp-responsive-proof-container .info-grid-block.productInfo {
        background: #f5f5f5;
        border-radius: 6px;
        box-shadow: 1px 1px 0 rgba(0,0,0,.25);
    }

    .csp-responsive-proof-container .info-grid-block dl {
        display: block;
        border-bottom: 1px dashed #CCC;
        padding: 0 0 10px 0;
        margin: 10px 0;
    }

        .csp-responsive-proof-container .info-grid-block dl:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
            margin-bottom: 0;
        }

        .csp-responsive-proof-container .info-grid-block dl dt {
            display: inline-block;
            width: 40%;
            font-weight: 600;
            font-size: 13px;
            vertical-align: top;
        }

        .csp-responsive-proof-container .info-grid-block dl dd {
            display: inline-block;
            width: 50%;
            font-weight: 400;
            font-size: 13px;
            vertical-align: top;
        }

    .csp-responsive-proof-container .info-grid-block.productImages {
        text-align: center;
        padding: 0;
    }

        .csp-responsive-proof-container .info-grid-block.productImages .imageWrap {
            display: inline-block;
            width: 45%;
            padding: 5px;
            vertical-align: top;
        }

            .csp-responsive-proof-container .info-grid-block.productImages .imageWrap .imageTitle {
                text-align: center;
                display: block;
                font-weight: 400;
                font-size: 14px;
                color: #999;
                margin: 10px 0;
            }

            .csp-responsive-proof-container .info-grid-block.productImages .imageWrap > img {
                display: block;
                width: 100%;
            }

    .csp-responsive-proof-container .info-grid-block.sourceImages {
        background: #f5f5f5; /*border-radius:6px; box-shadow:1px 1px 0 rgba(0,0,0,.25);*/
        clear: both;
    }

        .csp-responsive-proof-container .info-grid-block.sourceImages .blockTitle {
            padding-bottom: 10px;
        }

        .csp-responsive-proof-container .info-grid-block.sourceImages .imageWrap {
            display: inline-block;
            width: 100%;
            max-width: 180px;
            padding: 5px;
            vertical-align: middle;
            background: #FFF;
            margin: 1.25%;
            padding: 5px;
            border-radius: 6px;
            box-shadow: 1px 1px 0 rgba(0,0,0,.25);
            border: 1px solid #DDD;
        }

            .csp-responsive-proof-container .info-grid-block.sourceImages .imageWrap .imageTitle {
                display: block;
                font-weight: 400;
                text-align: center;
                font-size: 14px;
                color: #999;
                margin-bottom: 10px;
            }

            /* make all images appear square */
            .csp-responsive-proof-container .info-grid-block.sourceImages .imageWrap .picture {
                display: block;
                position: relative;
                margin-bottom: 5px;
            }

                .csp-responsive-proof-container .info-grid-block.sourceImages .imageWrap .picture:before {
                    content: "";
                    display: block;
                    padding-top: 100%;
                }

                .csp-responsive-proof-container .info-grid-block.sourceImages .imageWrap .picture > img {
                    position: absolute;
                    display: block;
                    width: 100%;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    max-width: 100%;
                    max-height: 100%;
                    margin: auto;
                }
    /* end update */


    .csp-responsive-proof-container .csp-brand-footer {
        text-align: center;
        padding-top: 20px;
        clear: both;
    }

.csp-modal-display-wrapper.csp-proof .csp-modal-container { /* overflow-y:auto; max-height:1500px; */
    width: 100%;
}

@media (max-width: 981px) {
    .csp-responsive-proof-container .colRight {
        float: none;
        width: auto;
        display: block;
    }

    .csp-responsive-proof-container .colLeft {
        float: none;
        width: auto;
        display: block;
        padding-bottom: 20px;
    }

    .csp-responsive-proof-container .info-grid-block.orderInfo {
        display: inline-block;
        width: 40%;
        margin: 0 1%;
        margin-bottom: 10px;
    }

    .csp-responsive-proof-container .info-grid-block.productInfo {
        display: inline-block;
        width: 40%;
        margin: 0 1%;
    }

    .csp-responsive-proof-container .info-grid-block dl dt {
        font-size: 12px;
    }

    .csp-responsive-proof-container .info-grid-block dl dd {
        font-size: 12px;
    }

    .csp-responsive-proof-container .info-grid-block.sourceImages {
        text-align: center;
    }
}

@media (max-width: 715px) {

    .csp-responsive-proof-container .info-grid-block.orderInfo {
        display: block;
        width: auto;
        margin-bottom: 10px;
    }

    .csp-responsive-proof-container .info-grid-block.productInfo {
        display: block;
        width: auto;
    }

    .csp-responsive-proof-container .info-grid-block.productImages .imageWrap {
        display: block;
        border-bottom: 1px solid #EEE;
        padding-bottom: 15px;
        margin-bottom: 15px;
        width: auto;
    }

        .csp-responsive-proof-container .info-grid-block.productImages .imageWrap:last-of-type {
            border-bottom: none;
        }

    .csp-responsive-proof-container .csp-brand-footer > img {
        width: 100%;
        max-width: 275px;
        margin: auto;
    }
}

@media (max-width: 1150px) {
    .csp-modal-container {
        width: 95%;
    }
}


/* added for iphone 320px portrait display */
@media (max-width: 429px) {
    #cspContainerMain {
        min-width: 310px;
    }

    .cspPreviewContainer {
        min-width: 310px;
    }

    .cspProductInfo .h-title {
        margin-right: 50px;
        font-size: 16px;
    }

    .cspProductInfo {
        padding-bottom: 10px;
    }

    body {
        margin: 4px;
    }

    .cspPreviewImageContainer .poweredbyCSP {
        max-width: 260px;
    }

    .cspUIBlockcontainer {
        width: auto;
    }

    .selectImage .tools-target-image {
        width: 100px;
        height: 155px;
    }

        .selectImage .tools-target-image img {
            margin-top: -22px;
        }

    .selectImage .target-image-title {
        line-height: normal;
        padding: 5px 0;
    }

    .selectImage .tools-select-image {
        max-width: 162px;
    }

        .selectImage .tools-select-image button {
            text-align: center;
        }

            .selectImage .tools-select-image button .fa {
                display: none;
            }

    .csp-modal-display-wrapper h2.modal-title {
        font-size: 16px;
    }

    .csp-modal-display-wrapper .modal-help-txt {
        font-size: 12px;
    }

    #tabs-imprint-location .ui-tabs-panel ul > li {
        margin-bottom: 5px;
    }

    .imprint-button-wrap button .fa {
        display: none;
    }

    .image-adjustment-wrap .adjustment-buttons button {
        margin-bottom: 2px;
    }

    .UIblock-orderinfo .UIinside-padblock {
        padding: 0;
    }

    .UIblock-orderinfo .order-cost {
        padding: 5px 10px;
    }

    .UIblock-orderinfo .order-comments {
        padding: 0 10px;
    }

        .UIblock-orderinfo .order-comments textarea {
            max-width: 275px;
        }

    .UIblock-orderinfo table.order-option-table tbody td input[type="text"] {
        width: 14px;
    }

    .UIblock-orderinfo table.order-option-table tbody td select {
        max-width: 70px;
    }

    .UIblock-orderinfo table.order-option-table tbody td {
        padding: 2px 2px;
    }

    .UIblock-orderinfo .order-add-to-cart .order-terms label {
        max-width: 280px;
    }

    .csp-proof-wrap .order-add-to-cart button {
        font-size: 13px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}

/******************* stand alone proof page ****************/
.single-page-proof .proof-header-wrap .proof-message {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #fafafa;
    padding: 20px;
    text-align: center;
}

.proof-message .messageTitle {
    display: block;
    margin-bottom: 8px;
    font-size: 26px;
    font-weight: 700;
    color: #666;
}

    .proof-message .messageTitle .fa {
        margin-right: 10px;
    }

.proof-message .messageBody {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.single-page-proof .proof-brand-header {
    background: #00599c;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.single-page-proof {
    display: block !important;
}

    .single-page-proof .csp-responsive-proof-container {
        overflow: auto;
        overflow-y: auto;
        max-height: none;
    }

    .single-page-proof .proof-display-container {
        border: none;
    }

    .single-page-proof .csp-responsive-proof-container .info-grid-block.orderInfo dl dt {
        max-width: 150px;
    }

    .single-page-proof .proof-header-wrap {
        background: rgba(255,255,255,.8);
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        left: 0;
        max-width: 1100px;
        width: 100%;
        margin: auto;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 0 15px rgba(0,0,0,.2);
        border: 2px solid #DDD;
        border-top: 0;
        overflow: hidden;
    }

        .single-page-proof .proof-header-wrap .proof-title {
            display: block;
            font-size: 22px;
            font-weight: 600;
            text-align: center;
            margin: 10px 0 15px 0;
        }

    .single-page-proof .proof-display-container {
        margin-top: 150px;
    }

    .single-page-proof .accept-proof, .single-page-proof .reject-proof {
        display: table-cell;
        width: 50%;
        padding: 15px;
        transition: all .3s linear;
        border-top: 1px solid #EEE;
        vertical-align: top;
    }

    .single-page-proof .accept-proof {
        background: #F5FFEC;
        border-right: 1px solid #EEE;
    }

        .single-page-proof .accept-proof:hover {
            background: #D1FFA4;
            border-color: #D1FFA4
        }

        .single-page-proof .accept-proof .proof-terms input[type="checkbox"] {
            display: inline-block;
            vertical-align: top;
        }

        .single-page-proof .accept-proof .proof-terms label {
            display: inline-block;
            width: 90%;
            font-size: 13px;
        }

        .single-page-proof .accept-proof button {
            margin-bottom: 15px;
            width: 100%;
        }

    .single-page-proof .reject-proof {
        background: #FFEBD7;
        border-right: 1px solid #EEE;
    }

        .single-page-proof .reject-proof:hover {
            background: #FFAD5B;
            border-color: #FFAD5B;
        }

        .single-page-proof .reject-proof button {
            margin-bottom: 12px;
            width: 100%;
        }

        .single-page-proof .reject-proof textarea.proof-comments {
            padding: 5px;
            resize: none;
            font-size: 13px;
            display: block;
            color: #666;
            height: 40px;
            width: 95%;
            margin: auto;
            max-width: 95%;
            max-height: 100px;
        }

@media (max-width: 715px) {
    .single-page-proof .proof-header-wrap {
        position: relative;
        width: 99%;
    }

    .single-page-proof .proof-display-container {
        margin-top: 0px;
    }

    body.singleProof {
        margin-top: 0;
    }

        body.singleProof #cspContainerMain {
            overflow: visible;
        }
}

@media (max-width: 579px) {
    .single-page-proof .accept-proof, .single-page-proof .reject-proof {
        display: block;
        width: auto;
    }
}

/******************* color image upload modal 1-12-16 ****************/

.upload-wrap.colorArt {
}

    .upload-wrap.colorArt .removeWhiteBG {
        display: inline-block;
        padding: 10px;
        vertical-align: middle;
    }

    .upload-wrap.colorArt .trigUploadreq {
        padding: 10px 0;
        display: block;
        cursor: pointer;
        color: #666;
    }

        .upload-wrap.colorArt .trigUploadreq:hover {
            color: #222;
        }

        .upload-wrap.colorArt .trigUploadreq .fa {
            color: #FF8300;
            margin-right: 2px;
        }

    .upload-wrap.colorArt .hideUploadreq {
        padding: 10px 0;
        display: block;
        cursor: pointer;
        color: #666;
    }

        .upload-wrap.colorArt .hideUploadreq:hover {
            color: #222;
        }

        .upload-wrap.colorArt .hideUploadreq .fa {
            color: #FF8300;
            margin-right: 2px;
        }

    .upload-wrap.colorArt .wrapUploadreq {
        display: none;
    }

        .upload-wrap.colorArt .wrapUploadreq .wrap-pad {
            padding: 15px;
            background-color: #EEE;
            border-radius: 6px;
        }

        .upload-wrap.colorArt .wrapUploadreq .modal-help-txt {
        }

    .upload-wrap.colorArt #upload-step2 {
        display: none;
    }

        .upload-wrap.colorArt #upload-step2 .colorDetected {
            padding: 15px;
            background: #EEE;
            border-radius: 6px;
            margin-bottom: 15px;
        }

            .upload-wrap.colorArt #upload-step2 .colorDetected .ui-helper-txt {
                font-weight: 400;
                font-size: 16px;
                color: #666;
                line-height: normal;
                margin-bottom: 0;
            }

                .upload-wrap.colorArt #upload-step2 .colorDetected .ui-helper-txt strong {
                    font-weight: 600;
                    font-size: 16px;
                    color: #666;
                    line-height: normal;
                    margin-bottom: 0;
                }

        .upload-wrap.colorArt #upload-step2 #configurePreview {
            padding: 15px;
            margin-bottom: 15px;
        }

            .upload-wrap.colorArt #upload-step2 #configurePreview > img#imgWorkingUpload {
                width: 100%;
            }

        .upload-wrap.colorArt #upload-step2 .section-title {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .upload-wrap.colorArt #upload-step2 .section-info {
            font-weight: 400;
            font-size: 14px;
        }

        .upload-wrap.colorArt #upload-step2 ul.option-list {
            display: block;
        }

        .upload-wrap.colorArt #upload-step2 .option-list li {
            display: inline-block;
            padding-right: 5px;
            padding-bottom: 5px;
            vertical-align: top;
        }

            .upload-wrap.colorArt #upload-step2 .option-list li a {
                display: block;
                border: 2px solid #CCC;
                font-size: 0;
                width: 30px;
                height: 30px;
                border-radius: 3px;
            }

        .upload-wrap.colorArt #upload-step2 .option-list a:hover {
            border-color: #AAA;
        }

        .upload-wrap.colorArt #upload-step2 .option-list li a.selected {
            border-color: #444;
        }

        .upload-wrap.colorArt #upload-step2 #uploadConfigureColorPreview.option-list {
            padding: 15px 0;
        }

            .upload-wrap.colorArt #upload-step2 #uploadConfigureColorPreview.option-list > li {
                background: none;
            }

                .upload-wrap.colorArt #upload-step2 #uploadConfigureColorPreview.option-list > li a {
                    text-align: center;
                    height: 50px;
                    width: 50px;
                    line-height: 45px;
                    text-decoration: none;
                }

                .upload-wrap.colorArt #upload-step2 #uploadConfigureColorPreview.option-list > li .fa {
                    font-size: 32px;
                    color: inherit;
                }

        .upload-wrap.colorArt #upload-step2 #imageArtworkColor.option-list {
            padding: 15px 0;
        }

            .upload-wrap.colorArt #upload-step2 #imageArtworkColor.option-list > li {
                background: none;
            }

                .upload-wrap.colorArt #upload-step2 #imageArtworkColor.option-list > li a {
                    text-align: center;
                    height: 35px;
                    width: 35px;
                    line-height: 35px;
                    text-decoration: none;
                    border: none;
                }

                    .upload-wrap.colorArt #upload-step2 #imageArtworkColor.option-list > li a.fa:before {
                        font-size: 20px;
                        color: #FFF;
                        visibility: hidden;
                    }

                .upload-wrap.colorArt #upload-step2 #imageArtworkColor.option-list > li.imgOpSelect a.fa:before {
                    visibility: visible;
                }

        .upload-wrap.colorArt #upload-step2 #previewPMSValue {
            width: auto;
            background-color: #000;
            border-radius: 3px;
            height: 100px;
            width: 100%;
            max-width: 225px;
            margin: 15px 0;
        }

            .upload-wrap.colorArt #upload-step2 #previewPMSValue:before {
                content: " ";
                display: block;
            }

        .upload-wrap.colorArt #upload-step2 input#txtPMSValue {
            font-size: 16px;
            font-weight: 600;
            color: #444;
            padding: 5px;
            display: block;
            width: 100%;
            max-width: 225px;
            margin: 0;
        }

        .upload-wrap.colorArt #upload-step2 .enterPMSValue {
            font-size: 13px;
            color: #666;
            text-decoration: underline;
            padding: 8px 0;
            display: block;
            cursor: pointer;
        }

        .upload-wrap.colorArt #upload-step2 .confirmChkbox {
            padding: 15px 0;
            font-size: 13px;
            display: block;
            padding-bottom: 10px;
        }

            .upload-wrap.colorArt #upload-step2 .confirmChkbox input[type="checkbox"] {
                vertical-align: middle;
                display: inline-block;
                margin-left: 0;
            }

        .upload-wrap.colorArt #upload-step2 #btnAcceptUploadedImage {
            display: block;
            width: 100%;
            max-width: 225px;
        }

.modal-row {
    margin-left: -10px;
    margin-right: -10px;
}

    .modal-row:before,
    .modal-row:after {
        content: " ";
        display: table;
    }

    .modal-row:after {
        clear: both;
    }

    .modal-row .modal-col-3 {
        position: relative;
        min-height: 1px;
        padding-left: 10px;
        padding-right: 10px;
        float: left;
        width: 35%;
        overflow: hidden;
    }

        .modal-row .modal-col-3:last-child {
            width: 30%;
        }

.modal-col-2 {
    position: relative;
    min-height: 1px;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
    width: 65%;
}

.modal-row * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .modal-row *:before,
    .modal-row *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

@media (max-width: 699px) {
    .upload-wrap.colorArt #upload-step2 .colorDetected .ui-helper-txt {
        font-size: 14px;
    }

        .upload-wrap.colorArt #upload-step2 .colorDetected .ui-helper-txt strong {
            font-size: 14px;
        }

    .modal-row .modal-col-3, .modal-row .modal-col-2 {
        width: 100%;
        padding-bottom: 15px;
    }

        .modal-row .modal-col-3:last-child {
            width: 100%;
        }

    .csp-modal-display-wrapper.upload .csp-modal-container {
        position: absolute;
    }
}


/* multicolor logo upload for hard hats 3-17-16 */

.upload-wrap.multiColorArt #multi-color-upload .colorDetected {
    padding: 15px;
    background: #EEE;
    border-radius: 6px;
    margin-bottom: 15px;
}

    .upload-wrap.multiColorArt #multi-color-upload .colorDetected .ui-helper-txt {
        font-weight: 400;
        font-size: 16px;
        color: #666;
        line-height: normal;
        margin-bottom: 0;
    }

        .upload-wrap.multiColorArt #multi-color-upload .colorDetected .ui-helper-txt strong {
            font-weight: 600;
            font-size: 16px;
            color: #666;
            line-height: normal;
            margin-bottom: 0;
        }

.upload-wrap.multiColorArt #multi-color-upload #configurePreview {
    padding: 15px;
    margin-bottom: 15px;
    border: 2px solid #EEE;
}

    .upload-wrap.multiColorArt #multi-color-upload #configurePreview > img#multiColorSelect_Image {
        width: 100%;
    }

.upload-wrap.multiColorArt #multi-color-upload .section-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.upload-wrap.multiColorArt #multi-color-upload .section-info {
    font-weight: 400;
    font-size: 14px;
}

.upload-wrap.multiColorArt #multi-color-upload .confirmChkbox {
    padding: 15px 0;
    font-size: 13px;
    display: block;
    padding-bottom: 10px;
}

    .upload-wrap.multiColorArt #multi-color-upload .confirmChkbox input[type="checkbox"] {
        vertical-align: middle;
        display: inline-block;
        margin-left: 0;
    }

.upload-wrap.multiColorArt #multi-color-upload input[type="text"].multiColorSelect_Input {
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
    min-width: 85px;
    width: 100%;
    max-width: 150px;
}

.upload-wrap.multiColorArt #multi-color-upload .colorListWrap {
}

.upload-wrap.multiColorArt #multi-color-upload .modal-col-2 .colorListWrap:first-of-type {
    margin-top: 15px;
}

.upload-wrap.multiColorArt #multi-color-upload .multiColorSelect_Wrap {
    display: table;
}

    .upload-wrap.multiColorArt #multi-color-upload .multiColorSelect_Wrap > li {
        display: table-cell;
        padding: 6px 6px;
    }

        .upload-wrap.multiColorArt #multi-color-upload .multiColorSelect_Wrap > li .multiColorSelect_PreviewButton {
            min-width: 115px;
        }

        .upload-wrap.multiColorArt #multi-color-upload .multiColorSelect_Wrap > li .colorSwatch {
            height: 40px;
            width: 40px;
            line-height: 40px;
            border: none;
            border-radius: 3px;
        }

        .upload-wrap.multiColorArt #multi-color-upload .multiColorSelect_Wrap > li .colorNumber {
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
        }

.upload-wrap.multiColorArt #multi-color-upload .button-wrap-confirm {
    padding: 10px 0;
    border-top: 1px solid #DDD;
    margin-top: 20px;
}

    .upload-wrap.multiColorArt #multi-color-upload .button-wrap-confirm #btnAcceptUploadedImageColors {
        width: 100%;
        max-width: 225px;
    }

/*------ ADDED CSS ---------*/
.switch {
    position: absolute;
    margin-left: -80px;
    display: inline-block;
    width: 90px;
    height: 28px;
    margin-top: -34px;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fd8204;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 24px;
        width: 24px;
        left: 2px;
        bottom: 2.3px;
        background-color: #f4f4f4;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #ffd300;
}

input:focus + .slider {
    box-shadow: 0 0 1px #ffd300;
}

input:checked + .slider:before {
    -webkit-transform: translateX(62px);
    -ms-transform: translateX(62px);
    transform: translateX(62px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

/*------ ADDED CSS ---------*/
.on {
    display: none;
}

.on {
    color: #333333;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 35%;
    font-size: 11px;
}

.off {
    color: #333333;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 60%;
    font-size: 11px;
}

input:checked + .slider .on {
    display: block;
}

input:checked + .slider .off {
    display: none;
}

.custom-background-class {
    font-size: 32px;
    border: 2px solid #CCC;
    height: 40px;
    width: 25px;
    text-align: center;
    line-height: 39px;
    text-decoration: none;
}

.custom-ul {
    float: right;
}

.selected {
    border: 2px solid #000000;
}

.custom-wrapper {
    top: 64px;
    height: 55px;
}

    .custom-wrapper li {
        float: left;
        margin: 0px 4px; /* example margin */
    }

        .custom-wrapper li a {
            display: block;
            padding: 4px 12px; /* example spacing */
        }





/*.shake {
        display:inline-block
    }
    .shake {
        display:block;
        position:relative;
    }*/
/*img{
        display: block;
        height: 250px;
        width: 250px;
        border-radius: 50% 50% 50% 50%;
    }*/
/*.shake.inline {
        display:inline-block
    }*/

@-webkit-keyframes spaceboots {
    0% {
        -webkit-transform: translate(2px, 1px) rotate(0deg);
    }

    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        -webkit-transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        -webkit-transform: translate(0px, 2px) rotate(0deg);
    }

    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        -webkit-transform: translate(2px, 1px) rotate(-1deg);
    }

    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        -webkit-transform: translate(2px, 2px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
    }
}

.shake:hover,
.shake:focus {
    -webkit-animation-name: spaceboots;
    -webkit-animation-duration: 0.8s;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
}
/*--------- END --------*/


.img-wrap {
    position: relative;
    display: inline-block;
    border: 1px red solid;
    font-size: 0;
}

    .img-wrap .close {
        position: absolute;
        top: 2px;
        right: 2px;
        background-color: #FFF;
        padding: 5px 2px 2px;
        color: #000;
        font-weight: bold;
        cursor: pointer;
        opacity: .2;
        text-align: center;
        font-size: 22px;
        line-height: 10px;
        border-radius: 50%;
        z-index: 50;
    }

    .img-wrap:hover .close {
        opacity: 1;
    }

div.myimages-wrap button.ui-button-icon-only {
    width: 2.4em;
}

/* Corner radius */
div.myimages-wrap .ui-corner-all,
div.myimages-wrap .ui-corner-top,
div.myimages-wrap .ui-corner-left,
div.myimages-wrap .ui-corner-tl {
    border-top-left-radius: 4px;
}

div.myimages-wrap .ui-corner-all,
div.myimages-wrap .ui-corner-top,
div.myimages-wrap .ui-corner-right,
div.myimages-wrap .ui-corner-tr {
    border-top-right-radius: 4px;
}

div.myimages-wrap .ui-corner-all,
div.myimages-wrap .ui-corner-bottom,
div.myimages-wrap .ui-corner-left,
div.myimages-wrap .ui-corner-bl {
    border-bottom-left-radius: 4px;
}

div.myimages-wrap .ui-corner-all,
div.myimages-wrap .ui-corner-bottom,
div.myimages-wrap .ui-corner-right,
div.myimages-wrap .ui-corner-br {
    border-bottom-right-radius: 4px;
}

div.myimages-wrap .ui-widget {
    font-family: Segoe UI, Arial, sans-serif;
    font-size: 1.1em;
}

div.myimages-wrap .ui-button-icon-only {
    width: 2.2em;
}

div.myimages-wrap .ui-button,
div.myimages-wrap .ui-button:link,
div.myimages-wrap .ui-button:visited,
div.myimages-wrap .ui-button:hover,
div.myimages-wrap .ui-button:active {
    text-decoration: none;
}

div.myimages-wrap .ui-button {
    display: inline-block;
    position: relative;
    padding: 0;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    overflow: visible;
}

div.myimages-wrap .ui-helper-clearfix:after {
    clear: both;
}

div.myimages-wrap .ui-helper-clearfix:before,
div.myimages-wrap .ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}

div.myimages-wrap .ui-state-default .ui-icon {
    background-image: url('Images/ui-icons_cccccc_256x240.png');
}

div.myimages-wrap .ui-widget-header .ui-icon {
    background-image: url("Images/ui-icons_222222_256x240.png");
}

div.myimages-wrap .ui-icon,
div.myimages-wrap .ui-widget-content .ui-icon {
    background-image: url("images/ui-icons_222222_256x240.png");
}

div.myimages-wrap .ui-button-icon-only .ui-icon {
    left: 50%;
    margin-left: -8px;
}

div.myimages-wrap .ui-button-icon-only .ui-icon,
div.myimages-wrap .ui-button-text-icon-primary .ui-icon,
div.myimages-wrap .ui-button-text-icon-secondary .ui-icon,
div.myimages-wrap .ui-button-text-icons .ui-icon,
div.myimages-wrap .ui-button-icons-only .ui-icon {
    position: absolute;
    top: 50%;
    margin-top: -8px;
}

div.myimages-wrap .ui-icon-closethick {
    background-position: -96px -128px;
}

div.myimages-wrap .ui-icon {
    width: 16px;
    height: 16px;
}

div.myimages-wrap .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}

div.myimages-wrap .ui-button-icon-only .ui-button-text,
div.myimages-wrap .ui-button-icons-only .ui-button-text {
    padding: .4em;
    text-indent: -9999999px;
}

div.myimages-wrap .ui-button .ui-button-text {
    display: block;
    line-height: normal;
}

div.myimages-wrap .ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: none;
    overflow: auto;
}

div.myimages-wrap .ui-widget-content {
    border: 1px solid #666;
    background: #000 url('Images/ui-bg_inset-soft_25_000000_1x100.png') 50% bottom repeat-x;
    color: #fff;
}

div.myimages-wrap .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

div.myimages-wrap .ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none;
}

div.myimages-wrap .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

div.myimages-wrap .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

div.myimages-wrap .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

div.myimages-wrap .ui-icon,
div.myimages-wrap .ui-widget-content .ui-icon {
    background-image: url('Images/ui-icons_cccccc_256x240.png');
}

div.myimages-wrap .ui-dialog .ui-resizable-se {
    width: 12px;
    height: 12px;
    right: -5px;
    bottom: -5px;
    background-position: 16px 16px;
}

div.myimages-wrap .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

div.myimages-wrap .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}

div.myimages-wrap .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

div.myimages-wrap .ui-widget-content {
    border: 1px solid #666;
    background: #000 url('Images/ui-bg_inset-soft_25_000000_1x100.png') 50% bottom repeat-x;
    color: #fff;
}

div.myimages-wrap .ui-widget {
    font-family: Segoe UI, Arial, sans-serif;
    font-size: 1.1em;
}

div.myimages-wrap .ui-resizable {
    position: relative;
}

div.myimages-wrap .ui-dialog {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    padding: .2em;
    outline: 0;
}

div.myimages-wrap .ui-front {
    z-index: 100;
}

div.myimages-wrap .ui-draggable .ui-dialog-titlebar {
    cursor: move;
}

div.myimages-wrap .ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em;
    position: relative;
}

div.myimages-wrap .ui-corner-all,
div.myimages-wrap .ui-corner-bottom,
div.myimages-wrap .ui-corner-right,
div.myimages-wrap .ui-corner-br {
    border-bottom-right-radius: 6px;
}

div.myimages-wrap .ui-corner-all,
div.myimages-wrap .ui-corner-bottom,
div.myimages-wrap .ui-corner-left,
div.myimages-wrap .ui-corner-bl {
    border-bottom-left-radius: 6px;
}

div.myimages-wrap .ui-corner-all,
div.myimages-wrap .ui-corner-top,
div.myimages-wrap .ui-corner-right,
div.myimages-wrap .ui-corner-tr {
    border-top-right-radius: 6px;
}

div.myimages-wrap .ui-corner-all,
div.myimages-wrap .ui-corner-top,
div.myimages-wrap .ui-corner-left,
div.myimages-wrap .ui-corner-tl {
    border-top-left-radius: 6px;
}

div.myimages-wrap .ui-widget-header {
    border: 1px solid #333;
    background: #333 url('Images/ui-bg_gloss-wave_25_333333_500x100.png') 50% 50% repeat-x;
    color: #fff;
    font-weight: bold;
}

div.myimages-wrap .ui-draggable-handle {
    -ms-touch-action: none;
    touch-action: none;
}

div.myimages-wrap .ui-helper-clearfix {
    min-height: 0;
}

div.myimages-wrap .ui-widget-content {
    border: 1px solid #666;
    background: #000 url('Images/ui-bg_inset-soft_25_000000_1x100.png') 50% bottom repeat-x;
    color: #fff;
}

div.myimages-wrap .ui-helper-clearfix:before,
div.myimages-wrap .ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}

div.myimages-wrap .ui-dialog .ui-dialog-title {
    float: left;
    margin: .1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

div.myimages-wrap .ui-draggable .ui-dialog-titlebar {
    cursor: move;
}

div.myimages-wrap .ui-widget-header {
    border: 1px solid #333;
    background: #333 url('Images/ui-bg_gloss-wave_25_333333_500x100.png') 50% 50% repeat-x;
    color: #fff;
    font-weight: bold;
}

    div.myimages-wrap .ui-state-default,
    div.myimages-wrap .ui-widget-content .ui-state-default,
    div.myimages-wrap .ui-widget-header .ui-state-default {
        border: 1px solid #666;
        background: #555 url('Images/ui-bg_glass_20_555555_1x400.png') 50% 50% repeat-x;
        font-weight: bold;
        color: #eee;
    }

div.myimages-wrap .ui-widget .ui-widget {
    font-size: 1em;
}

div.myimages-wrap .ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: .3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0 0;
    padding: 1px;
    height: 20px;
}

div.myimages-wrap .ui-widget input,
div.myimages-wrap .ui-widget select,
div.myimages-wrap .ui-widget textarea,
div.myimages-wrap .ui-widget button {
    font-family: Segoe UI, Arial, sans-serif;
    font-size: 1em;
}

div.myimages-wrap .ui-icon-alert {
    -ms-background-position: 0 -144px;
    background-position: 0 -144px;
}

div.myimages-wrap .ui-button-text-only .ui-button-text {
    padding: .4em 1em;
}


/* Corner radius */
div.mypictos-wrap .ui-corner-all,
div.mypictos-wrap .ui-corner-top,
div.mypictos-wrap .ui-corner-left,
div.mypictos-wrap .ui-corner-tl {
    border-top-left-radius: 4px;
}

div.mypictos-wrap .ui-corner-all,
div.mypictos-wrap .ui-corner-top,
div.mypictos-wrap .ui-corner-right,
div.mypictos-wrap .ui-corner-tr {
    border-top-right-radius: 4px;
}

div.mypictos-wrap .ui-corner-all,
div.mypictos-wrap .ui-corner-bottom,
div.mypictos-wrap .ui-corner-left,
div.mypictos-wrap .ui-corner-bl {
    border-bottom-left-radius: 4px;
}

div.mypictos-wrap .ui-corner-all,
div.mypictos-wrap .ui-corner-bottom,
div.mypictos-wrap .ui-corner-right,
div.mypictos-wrap .ui-corner-br {
    border-bottom-right-radius: 4px;
}

div.mypictos-wrap .ui-widget {
    font-family: Segoe UI, Arial, sans-serif;
    font-size: 1.1em;
}

div.mypictos-wrap .ui-button-icon-only {
    width: 2.2em;
}

div.mypictos-wrap .ui-button,
div.mypictos-wrap .ui-button:link,
div.mypictos-wrap .ui-button:visited,
div.mypictos-wrap .ui-button:hover,
div.mypictos-wrap .ui-button:active {
    text-decoration: none;
}

div.mypictos-wrap .ui-button {
    display: inline-block;
    position: relative;
    padding: 0;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    overflow: visible;
}

div.mypictos-wrap .ui-helper-clearfix:after {
    clear: both;
}

div.mypictos-wrap .ui-helper-clearfix:before,
div.mypictos-wrap .ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}

div.mypictos-wrap .ui-state-default .ui-icon {
    background-image: url('Images/ui-icons_cccccc_256x240.png');
}

div.mypictos-wrap .ui-widget-header .ui-icon {
    background-image: url("Images/ui-icons_222222_256x240.png");
}

div.mypictos-wrap .ui-icon,
div.mypictos-wrap .ui-widget-content .ui-icon {
    background-image: url("images/ui-icons_222222_256x240.png");
}

div.mypictos-wrap .ui-button-icon-only .ui-icon {
    left: 50%;
    margin-left: -8px;
}

div.mypictos-wrap .ui-button-icon-only .ui-icon,
div.mypictos-wrap .ui-button-text-icon-primary .ui-icon,
div.mypictos-wrap .ui-button-text-icon-secondary .ui-icon,
div.mypictos-wrap .ui-button-text-icons .ui-icon,
div.mypictos-wrap .ui-button-icons-only .ui-icon {
    position: absolute;
    top: 50%;
    margin-top: -8px;
}

div.mypictos-wrap .ui-icon-closethick {
    background-position: -96px -128px;
}

div.mypictos-wrap .ui-icon {
    width: 16px;
    height: 16px;
}

div.mypictos-wrap .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}

div.mypictos-wrap .ui-button-icon-only .ui-button-text,
div.mypictos-wrap .ui-button-icons-only .ui-button-text {
    padding: .4em;
    text-indent: -9999999px;
}

div.mypictos-wrap .ui-button .ui-button-text {
    display: block;
    line-height: normal;
}

div.mypictos-wrap .ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: none;
    overflow: auto;
}

div.mypictos-wrap .ui-widget-content {
    border: 1px solid #666;
    background: #000 url('Images/ui-bg_inset-soft_25_000000_1x100.png') 50% bottom repeat-x;
    color: #fff;
}

div.mypictos-wrap .ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}

div.mypictos-wrap .ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none;
}

div.mypictos-wrap .ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}

div.mypictos-wrap .ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}

div.mypictos-wrap .ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}

div.mypictos-wrap .ui-icon,
div.mypictos-wrap .ui-widget-content .ui-icon {
    background-image: url('Images/ui-icons_cccccc_256x240.png');
}

div.mypictos-wrap .ui-dialog .ui-resizable-se {
    width: 12px;
    height: 12px;
    right: -5px;
    bottom: -5px;
    background-position: 16px 16px;
}

div.mypictos-wrap .ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}

div.mypictos-wrap .ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}

div.mypictos-wrap .ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}

div.mypictos-wrap .ui-widget-content {
    border: 1px solid #666;
    background: #000 url('Images/ui-bg_inset-soft_25_000000_1x100.png') 50% bottom repeat-x;
    color: #fff;
}

div.mypictos-wrap .ui-widget {
    font-family: Segoe UI, Arial, sans-serif;
    font-size: 1.1em;
}

div.mypictos-wrap .ui-resizable {
    position: relative;
}

div.mypictos-wrap .ui-dialog {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    padding: .2em;
    outline: 0;
}

div.mypictos-wrap .ui-front {
    z-index: 100;
}

div.mypictos-wrap .ui-draggable .ui-dialog-titlebar {
    cursor: move;
}

div.mypictos-wrap .ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em;
    position: relative;
}

div.mypictos-wrap .ui-corner-all,
div.mypictos-wrap .ui-corner-bottom,
div.mypictos-wrap .ui-corner-right,
div.mypictos-wrap .ui-corner-br {
    border-bottom-right-radius: 6px;
}

div.mypictos-wrap .ui-corner-all,
div.mypictos-wrap .ui-corner-bottom,
div.mypictos-wrap .ui-corner-left,
div.mypictos-wrap .ui-corner-bl {
    border-bottom-left-radius: 6px;
}

div.mypictos-wrap .ui-corner-all,
div.mypictos-wrap .ui-corner-top,
div.mypictos-wrap .ui-corner-right,
div.mypictos-wrap .ui-corner-tr {
    border-top-right-radius: 6px;
}

div.mypictos-wrap .ui-corner-all,
div.mypictos-wrap .ui-corner-top,
div.mypictos-wrap .ui-corner-left,
div.mypictos-wrap .ui-corner-tl {
    border-top-left-radius: 6px;
}

div.mypictos-wrap .ui-widget-header {
    border: 1px solid #333;
    background: #333 url('Images/ui-bg_gloss-wave_25_333333_500x100.png') 50% 50% repeat-x;
    color: #fff;
    font-weight: bold;
}

div.mypictos-wrap .ui-draggable-handle {
    -ms-touch-action: none;
    touch-action: none;
}

div.mypictos-wrap .ui-helper-clearfix {
    min-height: 0;
}

div.mypictos-wrap .ui-widget-content {
    border: 1px solid #666;
    background: #000 url('Images/ui-bg_inset-soft_25_000000_1x100.png') 50% bottom repeat-x;
    color: #fff;
}

div.mypictos-wrap .ui-helper-clearfix:before,
div.mypictos-wrap .ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}

div.mypictos-wrap .ui-dialog .ui-dialog-title {
    float: left;
    margin: .1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

div.mypictos-wrap .ui-draggable .ui-dialog-titlebar {
    cursor: move;
}

div.mypictos-wrap .ui-widget-header {
    border: 1px solid #333;
    background: #333 url('Images/ui-bg_gloss-wave_25_333333_500x100.png') 50% 50% repeat-x;
    color: #fff;
    font-weight: bold;
}

    div.mypictos-wrap .ui-state-default,
    div.mypictos-wrap .ui-widget-content .ui-state-default,
    div.mypictos-wrap .ui-widget-header .ui-state-default {
        border: 1px solid #666;
        background: #555 url('Images/ui-bg_glass_20_555555_1x400.png') 50% 50% repeat-x;
        font-weight: bold;
        color: #eee;
    }

div.mypictos-wrap .ui-widget .ui-widget {
    font-size: 1em;
}

div.mypictos-wrap .ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: .3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0 0;
    padding: 1px;
    height: 20px;
}

div.mypictos-wrap .ui-widget input,
div.mypictos-wrap .ui-widget select,
div.mypictos-wrap .ui-widget textarea,
div.mypictos-wrap .ui-widget button {
    font-family: Segoe UI, Arial, sans-serif;
    font-size: 1em;
}

div.mypictos-wrap .ui-icon-alert {
    -ms-background-position: 0 -144px;
    background-position: 0 -144px;
}

div.mypictos-wrap .ui-button-text-only .ui-button-text {
    padding: .4em 1em;
}

@media (max-width: 699px) {
    .upload-wrap.multiColorArt #multi-color-upload .multiColorSelect_Wrap > li:first-child {
        display: none;
    }

    .csp-modal-container .modal-inside-pad {
        padding: 12px;
    }
}


/* qTip2 v2.2.1 | Plugins: tips modal viewport svg imagemap ie6 | Styles: core basic css3 | qtip2.com | Licensed MIT | Sat Sep 06 2014 23:12:07 */
.qtip {
    position: absolute;
    left: -28000px;
    top: -28000px;
    display: none;
    max-width: 80px;
    min-width: 50px;
    font-size: 10.5px;
    line-height: 12px;
    direction: ltr;
    box-shadow: none;
    padding: 0
}

.qtip-content {
    color: #ffffff;
    position: relative;
    padding: 5px 9px;
    overflow: hidden;
    text-align: left;
    word-wrap: break-word
}

.qtip-titlebar {
    position: relative;
    padding: 5px 35px 5px 10px;
    overflow: hidden;
    border-width: 0 0 1px;
    font-weight: 700
}

    .qtip-titlebar + .qtip-content {
        border-top-width: 0 !important
    }

.qtip-close {
    position: absolute;
    right: -9px;
    top: -9px;
    z-index: 11;
    cursor: pointer;
    outline: 0;
    border: 1px solid transparent
}

.qtip-titlebar .qtip-close {
    right: 4px;
    top: 50%;
    margin-top: -9px
}

* html .qtip-titlebar .qtip-close {
    top: 16px
}

.qtip-icon .ui-icon, .qtip-titlebar .ui-icon {
    display: block;
    text-indent: -1000em;
    direction: ltr
}

.qtip-icon, .qtip-icon .ui-icon {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    text-decoration: none
}

    .qtip-icon .ui-icon {
        width: 18px;
        height: 14px;
        line-height: 14px;
        text-align: center;
        text-indent: 0;
        font: 400 bold 10px/13px Tahoma,sans-serif;
        color: inherit;
        background: -100em -100em no-repeat
    }

.qtip-default {
    border: 1px solid #F1D031;
    background-color: #FFFFA3;
    color: #555
}

    .qtip-default .qtip-titlebar {
        background-color: #FFEF93
    }

    .qtip-default .qtip-icon {
        border-color: #CCC;
        background: #F1F1F1;
        color: #777
    }

    .qtip-default .qtip-titlebar .qtip-close {
        border-color: #AAA;
        color: #111
    }

.qtip-light {
    background-color: #fff;
    border-color: #E2E2E2;
    color: #454545
}

    .qtip-light .qtip-titlebar {
        background-color: #f1f1f1
    }

.qtip-dark {
    background-color: #505050;
    border-color: #303030;
    color: #f3f3f3
}

    .qtip-dark .qtip-titlebar {
        background-color: #404040
    }

    .qtip-dark .qtip-icon {
        border-color: #444
    }

    .qtip-dark .qtip-titlebar .ui-state-hover {
        border-color: #303030
    }

.qtip-cream {
    background-color: #FBF7AA;
    border-color: #F9E98E;
    color: #A27D35
}

    .qtip-cream .qtip-titlebar {
        background-color: #F0DE7D
    }

    .qtip-cream .qtip-close .qtip-icon {
        background-position: -82px 0
    }

.qtip-red {
    background-color: #F78B83;
    border-color: #D95252;
    color: #912323
}

    .qtip-red .qtip-titlebar {
        background-color: #F06D65
    }

    .qtip-red .qtip-close .qtip-icon {
        background-position: -102px 0
    }

    .qtip-red .qtip-icon, .qtip-red .qtip-titlebar .ui-state-hover {
        border-color: #D95252
    }

.qtip-green {
    background-color: #CAED9E;
    border-color: #90D93F;
    color: #3F6219
}

    .qtip-green .qtip-titlebar {
        background-color: #B0DE78
    }

    .qtip-green .qtip-close .qtip-icon {
        background-position: -42px 0
    }

.qtip-blue {
    background-color: #E5F6FE;
    border-color: #ADD9ED;
    color: #5E99BD
}

    .qtip-blue .qtip-titlebar {
        background-color: #D0E9F5
    }

    .qtip-blue .qtip-close .qtip-icon {
        background-position: -2px 0
    }

.qtip-shadow {
    -webkit-box-shadow: 1px 1px 3px 1px rgba(0,0,0,.15);
    -moz-box-shadow: 1px 1px 3px 1px rgba(0,0,0,.15);
    box-shadow: 1px 1px 3px 1px rgba(0,0,0,.15)
}

.qtip-bootstrap, .qtip-rounded, .qtip-tipsy {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

    .qtip-rounded .qtip-titlebar {
        -moz-border-radius: 4px 4px 0 0;
        -webkit-border-radius: 4px 4px 0 0;
        border-radius: 4px 4px 0 0
    }

.qtip-youtube {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 3px #333;
    -moz-box-shadow: 0 0 3px #333;
    box-shadow: 0 0 3px #333;
    color: #fff;
    border: 0 solid transparent;
    background: #4A4A4A;
    background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,#4A4A4A),color-stop(100%,#000));
    background-image: -webkit-linear-gradient(top,#4A4A4A 0,#000 100%);
    background-image: -moz-linear-gradient(top,#4A4A4A 0,#000 100%);
    background-image: -ms-linear-gradient(top,#4A4A4A 0,#000 100%);
    background-image: -o-linear-gradient(top,#4A4A4A 0,#000 100%)
}

    .qtip-youtube .qtip-titlebar {
        background-color: transparent
    }

    .qtip-youtube .qtip-content {
        padding: .75em;
        font: 12px arial,sans-serif;
        filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#4a4a4a, EndColorStr=#000000);
        -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#4a4a4a,EndColorStr=#000000);"
    }

    .qtip-youtube .qtip-icon {
        border-color: #222
    }

    .qtip-youtube .qtip-titlebar .ui-state-hover {
        border-color: #303030
    }

.qtip-jtools {
    background: #232323;
    background: rgba(0,0,0,.7);
    background-image: -webkit-gradient(linear,left top,left bottom,from(#717171),to(#232323));
    background-image: -moz-linear-gradient(top,#717171,#232323);
    background-image: -webkit-linear-gradient(top,#717171,#232323);
    background-image: -ms-linear-gradient(top,#717171,#232323);
    background-image: -o-linear-gradient(top,#717171,#232323);
    border: 2px solid #ddd;
    border: 2px solid rgba(241,241,241,1);
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 0 12px #333;
    -moz-box-shadow: 0 0 12px #333;
    box-shadow: 0 0 12px #333
}

    .qtip-jtools .qtip-titlebar {
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171, endColorstr=#4A4A4A);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#717171,endColorstr=#4A4A4A)"
    }

    .qtip-jtools .qtip-content {
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A, endColorstr=#232323);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4A4A4A,endColorstr=#232323)"
    }

    .qtip-jtools .qtip-content, .qtip-jtools .qtip-titlebar {
        background: 0 0;
        color: #fff;
        border: 0 dashed transparent
    }

    .qtip-jtools .qtip-icon {
        border-color: #555
    }

    .qtip-jtools .qtip-titlebar .ui-state-hover {
        border-color: #333
    }

.qtip-cluetip {
    -webkit-box-shadow: 4px 4px 5px rgba(0,0,0,.4);
    -moz-box-shadow: 4px 4px 5px rgba(0,0,0,.4);
    box-shadow: 4px 4px 5px rgba(0,0,0,.4);
    background-color: #D9D9C2;
    color: #111;
    border: 0 dashed transparent
}

    .qtip-cluetip .qtip-titlebar {
        background-color: #87876A;
        color: #fff;
        border: 0 dashed transparent
    }

    .qtip-cluetip .qtip-icon {
        border-color: #808064
    }

    .qtip-cluetip .qtip-titlebar .ui-state-hover {
        border-color: #696952;
        color: #696952
    }

.qtip-tipsy {
    background: #000;
    background: rgba(0,0,0,.87);
    color: #fff;
    border: 0 solid transparent;
    font-size: 11px;
    font-family: 'Lucida Grande',sans-serif;
    font-weight: 700;
    line-height: 16px;
    text-shadow: 0 1px #000
}

    .qtip-tipsy .qtip-titlebar {
        padding: 6px 35px 0 10px;
        background-color: transparent
    }

    .qtip-tipsy .qtip-content {
        padding: 6px 10px
    }

    .qtip-tipsy .qtip-icon {
        border-color: #222;
        text-shadow: none
    }

    .qtip-tipsy .qtip-titlebar .ui-state-hover {
        border-color: #303030
    }

.qtip-tipped {
    border: 3px solid #959FA9;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #F9F9F9;
    color: #454545;
    font-weight: 400;
    font-family: serif
}

    .qtip-tipped .qtip-titlebar {
        border-bottom-width: 0;
        color: #fff;
        background: #3A79B8;
        background-image: -webkit-gradient(linear,left top,left bottom,from(#3A79B8),to(#2E629D));
        background-image: -webkit-linear-gradient(top,#3A79B8,#2E629D);
        background-image: -moz-linear-gradient(top,#3A79B8,#2E629D);
        background-image: -ms-linear-gradient(top,#3A79B8,#2E629D);
        background-image: -o-linear-gradient(top,#3A79B8,#2E629D);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8, endColorstr=#2E629D);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3A79B8,endColorstr=#2E629D)"
    }

    .qtip-tipped .qtip-icon {
        border: 2px solid #285589;
        background: #285589
    }

        .qtip-tipped .qtip-icon .ui-icon {
            background-color: #FBFBFB;
            color: #555
        }

.qtip-bootstrap {
    font-size: 14px;
    line-height: 20px;
    color: #333;
    padding: 1px;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.2);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box
}

    .qtip-bootstrap .qtip-titlebar {
        padding: 8px 14px;
        margin: 0;
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        background-color: #f7f7f7;
        border-bottom: 1px solid #ebebeb;
        -webkit-border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0
    }

        .qtip-bootstrap .qtip-titlebar .qtip-close {
            right: 11px;
            top: 45%;
            border-style: none
        }

    .qtip-bootstrap .qtip-content {
        padding: 9px 14px
    }

    .qtip-bootstrap .qtip-icon {
        background: 0 0
    }

        .qtip-bootstrap .qtip-icon .ui-icon {
            width: auto;
            height: auto;
            float: right;
            font-size: 20px;
            font-weight: 700;
            line-height: 18px;
            color: #000;
            text-shadow: 0 1px 0 #fff;
            opacity: .2;
            filter: alpha(opacity=20)
        }

            .qtip-bootstrap .qtip-icon .ui-icon:hover {
                color: #000;
                text-decoration: none;
                cursor: pointer;
                opacity: .4;
                filter: alpha(opacity=40)
            }

.qtip:not(.ie9haxors) div.qtip-content, .qtip:not(.ie9haxors) div.qtip-titlebar {
    filter: none;
    -ms-filter: none
}

.qtip .qtip-tip {
    margin: 0 auto;
    overflow: hidden;
    z-index: 10
}

.qtip .qtip-tip, x:-o-prefocus {
    visibility: hidden
}

    .qtip .qtip-tip, .qtip .qtip-tip .qtip-vml, .qtip .qtip-tip canvas {
        position: absolute;
        color: #123456;
        background: 0 0;
        border: 0 dashed transparent
    }

        .qtip .qtip-tip canvas {
            top: 0;
            left: 0
        }

        .qtip .qtip-tip .qtip-vml {
            behavior: url(#default#VML);
            display: inline-block;
            visibility: visible
        }

#qtip-overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

    #qtip-overlay.blurs {
        cursor: pointer
    }

    #qtip-overlay div {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #000;
        opacity: .7;
        filter: alpha(opacity=70);
        -ms-filter: "alpha(Opacity=70)"
    }

.qtipmodal-ie6fix {
    position: absolute !important
}
/* end qtip css */

.qtip-tipsy .qtip-content {
    padding: 6px 10px;
    color: #FFF;
    text-shadow: none;
    font-weight: 400;
}
/* file input */
input[type=file] {
    display: block;
    height: 0;
}

.csp-proof-wrap .order-add-to-cart button:nth-of-type(1) {
    margin-right: 20px;
}

.csp-proof-wrap .proof-approval-email {
    display: block;
    width: 100%;
    max-width: 685px;
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

@media (max-width: 908px) {
    .csp-proof-wrap .order-add-to-cart button {
        width: 100% !important;
        max-width: none !important;
        display: block !important;
    }

        .csp-proof-wrap .order-add-to-cart button:nth-of-type(1) {
            margin-bottom: 20px;
        }
}

.myimages-wrap .custom-wrapper, .sharedimages-wrap .custom-wrapper {
    height: auto;
    float: left;
    width: 100%;
}

    .myimages-wrap .custom-wrapper li, .sharedimages-wrap .custom-wrapper li {
        margin-bottom: 8px;
    }

    .myimages-wrap .custom-wrapper:after, .sharedimages-wrap .custom-wrapper:after {
        content: "";
        display: block;
        clear: both;
    }

.myimages-wrap .modal-image-list, .sharedimages-wrap .modal-image-list {
    clear: both;
    width: 100%;
}


.mypictos-wrap .custom-wrapper, .sharedimages-wrap .custom-wrapper {
    height: auto;
    float: left;
    width: 100%;
}

    .mypictos-wrap .custom-wrapper li, .sharedimages-wrap .custom-wrapper li {
        margin-bottom: 8px;
    }

    .mypictos-wrap .custom-wrapper:after, .sharedimages-wrap .custom-wrapper:after {
        content: "";
        display: block;
        clear: both;
    }

.mypictos-wrap .modal-image-list, .sharedimages-wrap .modal-image-list {
    clear: both;
    width: 100%;
}
/* updates for logo editing ux changes 4-16-18 */
.button-wrap-crop button {
    display: block;
    width: 100%;
    max-width: 225px;
    margin: auto;
}

.upload-wrap.colorArt #upload-step2 .confirmRadio {
    padding: 15px 0;
    font-size: 14px;
    display: block;
    padding-bottom: 10px;
}

    .upload-wrap.colorArt #upload-step2 .confirmRadio input[type="radio"] {
        vertical-align: middle;
        display: inline-block;
        margin: 0 3px 0 0;
    }

    .upload-wrap.colorArt #upload-step2 .confirmRadio:nth-of-type(2) {
        padding-top: 0;
    }

.upload-wrap.colorArt #upload-step2 #btnAcceptUploadedImage {
    margin-top: 15px;
}

.multiColorSelect_PreviewButton {
    background: none;
    border: none;
    box-shadow: none;
    line-height: normal;
    height: 40px;
    display: inline-block;
    vertical-align: top;
}

    .multiColorSelect_PreviewButton span {
        font-size: 10px;
        text-transform: uppercase;
        display: block;
        line-height: 1;
        padding-top: 3px;
    }

.multiColorSelect_Wrap > li {
    vertical-align: top;
}

    .multiColorSelect_Wrap > li:first-of-type {
        vertical-align: middle;
    }

#multiColorUpload {
    padding-top: 15px;
}

.multiColorSelect_PreviewButton .fa {
    margin-right: 0;
    line-height: 1;
}

.upload-wrap.colorArt #upload-step2 .section-info {
    margin-bottom: 15px;
}


@media (max-width: 767px) {
    .multiColorSelect_Wrap > li:last-of-type {
        display: block;
        text-align: center;
        padding-bottom: 20px;
    }

    .multiColorSelect_Wrap .this-inputs {
        max-width: none;
    }
}

.csp-responsive-proof-container .proof-brand-header img.proof-header {
    margin-bottom: 30px;
    display: block;
    width: 100%;
}


.showHand {
    cursor: pointer;
}
/* end logo editing 4-16-18 */
.nokern {
    -moz-font-feature-settings: "kern" 0;
    -ms-font-feature-settings: "kern" 0;
    -webkit-font-feature-settings: "kern" 0;
    font-feature-settings: "kern" 0;
    font-kerning: none;

    
}
text {
    text-rendering: optimizeSpeed;
    font-optical-sizing: none;
    -webkit-font-smoothing: subpixel-antialiased;
    backface-visibility: hidden;
}
@supports (-moz-appearance:none) {
    .nokern {
        -moz-font-feature-settings: "kern" 1;
        -ms-font-feature-settings: "kern" 1;
        -webkit-font-feature-settings: "kern" 1;
        font-feature-settings: "kern" 1;
        font-kerning: none;
    }
}
@font-face {
    font-family: 'FranklinGothicITC';
    font-display: block;
    font-style: normal;
    font-weight: normal;
    src: url('Fonts/FranklinGothicITCW05-Medium.woff2') format('woff2'), url('Fonts/FranklinGothicITCW05-Medium.woff') format('woff'), url('Fonts/FRG65.ttf') format('truetype');
}

@font-face {
    font-family: 'FranklinGothicITC-Demi';
    font-display: block;
    src: url('Fonts/FranklinGothicITCW05-Demi.woff2') format('woff'), url('Fonts/FranklinGothicITCW05-Demi.woff') format('woff2'), url('Fonts/FRG75.ttf') format('truetype');
}

@font-face {
    font-family: 'Helvetica LT Pro';
    font-display: block;
    font-style: normal;
    font-weight: normal;
    src: url('Fonts/HelveticaLTPro-Roman.ttf') format('truetype'),url('Fonts/HelveticaLTW05-Roman.woff2') format('woff2'),url('Fonts/HelveticaLTW05-Roman.woff2') format('woff2');
}

@font-face {
    font-family: 'Helvetica Inserat LT Std';
    font-style: normal;
    font-weight: normal;
    font-display: block;
    src: url('Fonts/HelveticaInseratLTStd-Roman.ttf') format('truetype'), url('Fonts/HelveticaInseratLTStd-Roman.woff2') format('woff2'), url('Fonts/HelveticaInseratLTStd-Roman.otf') format('opentype');
}
