.product-detail .slider {
    max-width: 1000px;
    margin: 40px auto;
}

.product-detail .slider .slider-inner {
    overflow: auto;
}

.product-detail .slider .highlight {
    position: absolute;
    top: 0;
    left: 0;
    background: #eaeaea;
    padding: 6px 20px 3px;
    font-weight: normal;
    text-transform: uppercase;
    height: 34px;
    transition: 0.3s;
    font-weight: bold;
}

.product-detail .slider .massstab {
    position: absolute;
    right: 0;
    top: 0;
    background: #dc002e;
    color: white;
    padding: 6px 20px 3px;
    margin: 0;
    font-weight: bold;
    height: 34px;
}

.product-detail .slider .rslides_tabs {
    display: none;
}

.product-detail .slider-thumbs {
    text-align: center;
    border-top: 6px solid #e6e6e4;
    margin-bottom: -6px;
}

.product-detail .slider-thumbs .slide {
    display: inline-block;
    border: 1px solid transparent;
    transition: 0.3s;
}

.product-detail .slider-thumbs .slide.active {
    border-color: #333333;
}

.product-detail .slider-thumbs .slide img {
    width: 100%;
    max-width: 224px;
}

.product-detail .text-block {
    padding: 20px 0 50px;
}

.product-detail .product-navigation {
    width: 100%;
    overflow: auto;
    margin-bottom: 50px;
}

.product-detail .product-navigation .button {
    margin: 0 0 0 5px;;
    height: 46px;
    display: inline-block;
    float: right;
}

.product-detail .product-navigation .back-to-overview {
    font-size: 14px;
    font-weight: bold;
}

.product-detail .product-navigation .prev:before,
.product-detail .product-navigation .prev:after,
.product-detail .product-navigation .next:before,
.product-detail .product-navigation .next:after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    top: 14px;
    right: 12px;
    transition: 0.3s;
}

.product-detail .product-navigation .prev:before {
    background: url("/../static/img/icon_angle_left_black.png");
    background-repeat: no-repeat;
    right: 15px;
}

.product-detail .product-navigation .prev:after {
    background: url("/../static/img/icon_angle_left_white.png");
    background-repeat: no-repeat;
    opacity: 0;
    right: 15px;
}

.product-detail .product-navigation .next:before {
    background: url("/../static/img/icon_angle_right_black.png");
    background-repeat: no-repeat;
}

.product-detail .product-navigation .next:after {
    background: url("/../static/img/icon_angle_right_white.png");
    background-repeat: no-repeat;
    opacity: 0;
}

.product-detail .product-navigation .back-to-overview:hover:before,
.product-detail .product-navigation .prev:hover:before,
.product-detail .product-navigation .next:hover:before {
    opacity: 0;
}

.product-detail .product-navigation .back-to-overview:hover:after,
.product-detail .product-navigation .prev:hover:after,
.product-detail .product-navigation .next:hover:after {
    opacity: 1;
}


.product-detail .title {
    text-transform: uppercase;
}

.product-detail .product-info {
    margin: 30px -10px;
}

.product-detail .product-info th,
.product-detail .product-info td,
.product-detail .product-info p {
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
}

.product-detail .product-info .stock-status {
    margin: 0;
    background: #b4b4b4;
    display: inline-block;
    padding: 4px 10px 3px;
    text-transform: uppercase;
    transition: 0.3s;
}

.product-detail .product-info .stock-status.available {
    background: #3aaa35;
    color: white;
}

.product-detail .product-info .stock-status.not-in-stock {
    background: #dc002e;
    color: white;
}

.product-detail .price {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 0;
}

.product-detail #add-to-cart-form {
    text-align: center;
    padding-left: 50px;
}

.product-detail #add-to-cart-form .amount-input {
    margin: 50px 0 30px;
}

.product-detail #add-to-cart-form label[for="amount"] {
    font-weight: normal;
    margin-right: 10px;
    text-transform: uppercase;
}

.product-detail #add-to-cart-form input[name="amount"] {
    width: 80px;
    padding: 5px 10px 2px;
}

.product-detail .related-products.product-list {
    margin-top: 10px;
}

.product-detail .related-products .category-title {
    background: #333333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: normal;
    margin: auto 3px 5px;
    width: calc(100% - 6px);
}

@media (max-width: 1500px) {
    .product-detail .price {
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .product-detail #add-to-cart-form {
        text-align: left;
        padding-left: 0;
        border-top: 1px solid #cccccc;
        padding-top: 20px;
        margin-top: 20px;
    }

    .product-detail #add-to-cart-form .amount-input {
        position: absolute;
        top: 0;
        right: 0;
    }

    .product-detail #add-to-cart-form .button {
        float: right;
    }
}

@media (max-width: 480px) {
    .product-detail #add-to-cart-form {
        text-align: center;
    }

    .product-detail #add-to-cart-form .button {
        width: 100%;
    }

    .product-detail #add-to-cart-form .amount-input {
        position: relative;
        margin: 40px 0 20px;
    }

    .product-detail .product-info td {
        padding-top: 0;
    }

    .product-detail .product-info th, 
    .product-detail .product-info td {
        display: block;
    }

    .product-detail .product-navigation .button {
        width: 50%;
    }

    .product-detail .product-navigation .button.next {
        float: right;
        width: calc(50% - 5px);
        margin: 0 4px;
        margin: 0 0 10px 5px;
    }

    .product-detail .product-navigation .button.prev {
        float: right;
        width: calc(50% - 5px);
        margin: 0 5px 10px 0;
    }

    .product-detail .product-navigation .prev::before, 
    .product-detail .product-navigation .prev::after, 
    .product-detail .product-navigation .next::before, 
    .product-detail .product-navigation .next::after {
        left: calc(50% - 12px);    
    }

    .product-detail .product-navigation .back-to-overview {
        width: 100%;
    }
}