.techdata-details-odd {
    background-color: #f6f6f6;
}

.techdata-details-even,
.downloads-details-odd {
    background-color: #fdfdfd;
}

.product-main-image-full:hover {
    cursor: pointer;
}


/*
.product-main-image-full:hover:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: green;
    color: red;
    font-size: 24px;
    content: "x";
}
*/

.search-result-image {
    max-height: 100px;
    margin: auto;
    display: block;
    width: auto;
}

#product-no-result {
    text-align: center;
    padding: 40px;
    background-color: #efefef;
    display: none;
}

#techdata img.float-right {
    max-height: 120px;
}

.product-video-holder .tile-image {
    width: auto;
}

#product-waiting {
    height: 200px;
    margin-bottom: 70px;
}

#loader {
    position: relative;
    left: 50%;
    top: 50%;
    z-index: 111;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f6f6f6;
    border-radius: 50%;
    border-top: 16px solid #d30132;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}