﻿/*
* Copyright 2014 Seven Spikes Ltd. All rights reserved. (http://www.nop-templates.com)
* http://www.nop-templates.com/t/licensinginfo
*/

.overview .product-name {
    overflow: hidden;
}
.previous-product,
.next-product { 
    display: inline-block;
    width: 49%;
    margin: 15px 0;
    overflow: hidden;
    font-size: 0;
}
.previous-product a,
.next-product a {
    display: block;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
}
.previous-product a:hover,
.next-product a:hover {
    opacity: 0.8;
}
.previous-product a {
    float: right;
    margin-right: 5px;
    background: #5be url('img/prev.png') no-repeat center;
}
.next-product a {
    float: left;
    margin-left: 5px;
    background: #5be url('img/next.png') no-repeat center;
}


@media all and (min-width: 768px) {

.overview .product-name {
    position: relative;
    padding: 10px 45px;
}
.overview .product-name h1 {
    text-align: center;
}
.previous-product,
.next-product {
    position: absolute;
    top: 50%;
    width: auto;
    margin: -20px 0 0;
}
.previous-product {
    left: 0;
}
.next-product {
    right: 0;
}
.previous-product a,
.next-product a {
    width: 40px;
    height: 40px;
}

}