/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

/* IMPORTANT: be sure to put your media queries AFTER your base selectors */

.page .main .page-title.category-title {
    display: none;
}


/* PRODUCTS LIST/GRID (CATEGORY VIEW) TOOLBAR */
.page .main .category-products .toolbar {
    margin: 20px 0;
    padding: 0;
    background-color: transparent;
    color: #222222;
    border: none;
    text-align: right;
}

.page .main .category-products .toolbar .sorter,
.page .main .category-products .toolbar .pager {
    width: auto;
    display: inline-block;
    clear: none;
    margin: 0;
    color: inherit;
}

.page .main .category-products .toolbar .sorter {
    float: right;
}

.page .main .category-products .toolbar .pager {
    float: left;
}

.page .main .category-products .toolbar .pager .count-container {
    position: relative;
    top: 2px;
    float: none;
    display: inline-block;
    margin: 0;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

.page .main .category-products .toolbar .pager .count-container .amount {
    float: none;
    margin: 0;
    line-height: normal;
}

.page .main .category-products .toolbar .pager .pages {
    float: none;
    display: inline-block;
    margin: 0;
    overflow: visible;
}

.page .main .category-products .toolbar .pager .pages ol li {
    float: none;
    display: inline-block;
}

.page .main .category-products .toolbar .pager .pages ol li.current {
    line-height: normal;
    width: auto;
    height: auto;
    padding: 10px 13px;
    font-size: 12px;

    border: none;
    background-color: #00a2e0;
    color: #ffffff;
}

.page .main .category-products .toolbar .pager .pages ol li a {
    display: inline-block;
    line-height: normal;
    width: auto;
    height: auto;
    padding: 10px 13px;
    font-size: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.page .main .category-products .toolbar .pager .pages ol li a:hover {
    background-color: #00a2e0;
    color: #ffffff;
    text-decoration: none;
}

.page .main .category-products .toolbar .pager .pages ol li a.previous:before,
.page .main .category-products .toolbar .pager .pages ol li a.next:before {
    display: none;
}

.page .main .category-products .toolbar .pager .pages ol li a.previous,
.page .main .category-products .toolbar .pager .pages ol li a.next {
    color: #00a2e0;
    font-family: inherit;
    padding-left: 10px;
    padding-right: 10px;
}

.page .main .category-products .toolbar .pager .pages ol li a.previous:hover,
.page .main .category-products .toolbar .pager .pages ol li a.next:hover {
    color: #ffffff;
    border: none;
}

@media (max-width: 767px) {
    .page .main .category-products .toolbar .pager .count-container {
        display: none;
    }
}

.page .main .category-products .toolbar .sorter label {
    float: none;
    margin: 0 0.5em 0 0;
}

.page .main .category-products .toolbar .sorter label:after {
    content: '';
}

.page .main .category-products .toolbar .sorter > .sort-by {
    float: none;
    margin: 0;
    height: auto;
}

.page .main .category-products .toolbar .sorter > .sort-by select {
    font-size: 1.3em;
    padding: 0.5em;
}


/* PRODUCT GRID/LIST VIEWS SHARED */
.page .main .products-grid .add-to-links a,
.page .main .products-list .add-to-links a {
    margin: 0 0.25em 0 0;
    padding: 0;
    color: #00a2e0;
    transition: color 0.2s ease;
}

.page .main .products-grid .add-to-links a:hover,
.page .main .products-list .add-to-links a:hover {
    color: #222222;
    text-decoration: none;
}

.page .main .products-grid .pricing .msrp-strike,
.page .main .products-list .pricing .msrp-strike {
    font-size: 0.9em;
}

/* PRODUCT GRID VIEW */
.page .main .category-products {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid #f2f2f2;
}

.page .main .category-products .row--category-title {
}

.page .main .category-products .row--category-title h2 {
    margin: 0;
    color: #000000;
    font-size: 32px;
    font-weight: bold;
    font-family: "effra", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.page .main .category-products .products-grid .item {
}

.page .main .category-products .products-grid .item a.product-image {
    border: none;
    transition: opacity 0.2s ease;
}

.page .main .category-products .products-grid .item a.product-image:hover img {
    opacity: 0.8;
}

.page .main .category-products .products-grid .item a.product-image .image-overlay {
    display: none;
    opacity: 0;
    z-index: 1;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    transition: opacity 0.2s ease;
}

.page .main .category-products .products-grid .item a.product-image .image-overlay span {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 50%;
    left: 0;
}

.page .main .category-products .products-grid .item a.product-image .image-overlay span span {
    position: relative;
    display: inline-block;
    margin: 0 10px;
    padding: 15px;
    background-color: rgba(0, 162, 224, 0.75);
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

.page .main .category-products .products-grid .item a.product-image:hover .image-overlay {
    opacity: 1;
}

.page .main .category-products .products-grid .item .product-info {
    margin: 5px 0 20px 0;
    padding: 0;
    border-top: none;
    text-align: center;
}

.page .main .category-products .products-grid .item .product-info .product-name {
    display: block;
    width: auto;
    margin: 0 0 0 0;
    padding-bottom: 8px;
    min-height: auto;
    border-bottom: 1px solid #e6e6e6;
}

.page .main .category-products .products-grid .item .product-info .product-name a {
    float: none;
    transition: color 0.2s ease;
    color: #222222;
    line-height: 16px;
    font-size: 16px;
    font-weight: bold;
    font-family: "effra", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}

.page .main .category-products .products-grid .item .product-info .product-name a:hover {
    color: #00a2e0;
}

.page .main .category-products .products-grid .item .pricing {
    margin: 5px 0 0 0;
    color: #999999;
    font-size: 14px;
    font-family: "effra", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.page .main .category-products .products-grid .item .pricing * {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

.page .main .category-products .products-grid .item .pricing .price {
    margin: 0;
    padding: 0;
}

.page .main .category-products .products-grid .item .pricing .pricing--label {
    display: none;
}

.page .main .category-products .products-grid .item .pricing .pricing--list {
    font-size: 12px;
}

.page .main .category-products .products-grid .item .pricing .pricing--list.msrp-strike {
    font-style: italic;
    text-decoration: line-through;
}

.page .main .category-products .products-grid .item .pricing .pricing--for-sale {
    color: #00a2e0;
    font-size: inherit;
}
