/* Helpers */
.hide { display: none; }
.fixed { position: fixed; top: 0; }
.break { margin-top: 20px !important; }
.move-top { margin-top: 20px !important; }
.move-bottom { margin-bottom: 20px !important; }
.push-top { margin-top: 20px !important; }
.push-bottom { margin-bottom: 20px !important; }
.pad-top { padding-top: 20px !important; }
.pad-bottom { padding-bottom: 20px !important; }
.padless { padding: 0 !important; }
.marginless { margin: 0 !important; }
.bold { font-weight: bold !important; }
.italic { font-style: italic !important; }
.underline, .underlined { text-decoration: underline !important; }
.line-through { text-decoration: line-through !important; }
.left { text-align: left !important; }
.center { text-align: center !important; }
.vertical-center { vertical-align: middle !important; }
.right { text-align: right !important; }
.justify, .justified { text-align: justify !important; }
.gigantic { font-size: 3em !important; }
.huge { font-size: 2.2em !important; }
.large { font-size: 1.7em !important; }
.medium { font-size: 1.2em !important; }
.normal { font-size: 1em !important; }
.small { font-size: 0.8em !important; }
.white { color: #fff !important; }
.dark { color: #333; }
.black { color: #000; }
/* End Helpers */

/* Hacks & Bugfixes */
.image-scale-hack {
    transform: rotate(.0001deg);
}
/* End Hacks & Bugfixes */

/* Social Media Icons */
.social .sbtnf {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #fff;
    display: block;
    height: 32px;
    float: left;
    line-height: 32px;
    margin: 0 10px 10px 0;
    opacity: .75;
    filter: alpha(opacity=75);
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
    text-align: center;
    width: 32px;
}

.social .sbtnf:hover {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
}
/* End Social Media Icons */

/* AJAX Loading Indicator */
#loading-ajax {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9997;
    display: none;
    width: 100%;
    height: 100%;
}

#loading-ajax-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

#loading-ajax-image {
    position: fixed;
    top: 20%;
    left: 50%;
    z-index: 9999;
    display: block;
    margin-left: -100px;
    padding: 20px;
    width: 160px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0 0 3px 2px #aaa;
    -moz-box-shadow: 0 0 3px 2px #aaa;        
    box-shadow: 0 0 3px 2px #aaa;
}

#loading-ajax-image img {
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
}
/* AJAX Loading Indicator */

/* Price Grid */
[class*="columns-"] [class*="column-"] .price-grid .name {
    text-align: center;
    font-size: 1.2em;
    padding: 15px 0 !important;
}

[class*="columns-"] [class*="column-"] .price-grid .price {
    text-align: center;
    font-size: 3.5em;
    padding: 30px 0 !important;
}

[class*="columns-"] [class*="column-"] .price-grid .desc {
    text-align: center;
    padding: 15px 0 !important;
}

[class*="columns-"] [class*="column-"] .price-grid .info {
    padding: 0.938em !important;
}
/* End Price Grid */

/* Image Gallery */
.image-gallery {
    margin-left: -10px;
    margin-right: -10px;
}

.image-gallery .thumb {
    float: left;
    margin-top: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.image-gallery .thumb img {
    max-width: 100%;
    display: block;
    cursor: pointer;
}

.image-gallery.images-2 .thumb {
    width: 50%;
}

.image-gallery.images-3 .thumb {
    width: 33.3333%;
    padding: 0 10px;
}

.image-gallery.images-4 .thumb {
    width: 25%;
}

.image-gallery.images-5 .thumb {
    width: 20%;
}

#gallery-lightbox,
#gallery-caption,
#gallery-controls {
    display: none;
}

#gallery-lightbox {
    position: relative;
}

#gallery-image img {
    display: block;
    margin: 0 auto;
}

#gallery-caption {
    font-size: 0.9em;
    padding-top: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#gallery-controls {
    position: absolute;
    z-index: 9999;
    bottom: -47px;
    left: 0;
}

#gallery-back,
#gallery-next {
    float: left;
    width: 32px;
    height: 32px;
    line-height: 32px;
    cursor: pointer;
    text-indent: -9999px;
    margin: 0 10px 0 0;
}

#gallery-back {
    background: url('../images/back.gif') center center no-repeat;
}

#gallery-next {
    background: url('../images/next.gif') center center no-repeat;
}
/* End Image Gallery */

/* VineUI Adjustments */
.rounded .vine-window {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.rounded .vine-window-title {
    -webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}
/* End VineUI Adjustments */

/* Desktops & Laptops Only */
@media (min-width: 1025px) {
    #gallery-image img {
        max-width: 800px;
        max-height: 600px;
    }

    #gallery-caption {
        max-width: 800px;
    }
}
/* End Desktops & Laptops Only */

/* Tablets & Phablets Only */
@media (min-width: 768px) and (max-width: 1024px) {
    .price-grid .info {
        font-size: 0.850em;
    }

    #gallery-image img {
        max-width: 640px;
        max-height: 480px;
    }

    #gallery-caption {
        max-width: 640px;
    }
}
/* End Tablets & Phablets Only */

/* Phones Only */
@media (max-width: 767px) {
    #gallery-image img {
        max-width: 320px;
        max-height: 240px;
    }

    #gallery-caption {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    #gallery-image img {
        max-width: 200px;
        max-height: 150px;
    }

    #gallery-caption {
        max-width: 200px;
    }
}
/* End Phones Only */