/* Stylesheet H.S.S. catalogus

Author: Jonathan van den Brink
Company: Van den Brink IT
*/

/* NAVIGATION */
.CatNav {
    margin: 10px;
}
.CatNav > p, .CatNav > p a {
    font-size: 13pt;
}
.CatNav > p > a {
    text-decoration: none;
}

/* TILES */
.Options {
    width: 100%;
    height: auto;
    overflow: hidden;
}
.OptionContainer {
    background: #404040;
    float: right;
    width: 46%;
    min-height: 200px;
    padding: 0.5vw;
    /*margin: 0.5vw;*/
    margin-top: 5px;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
.OptionContainer:hover {
    transform: scale(1.05);
}
.OptionContainer p {
    font-size: 12pt;
    color: #fff;
}

.Catalog {
    height: auto;
    padding: 10px;
    overflow: hidden;
}
.CatalogContainer {
    /*background: #499776;*/
	background: transparent;
	border: 1px solid #499776;
    float: left;
    width: 18.5vw;
    min-height: 362px;
    /*padding: 0.5vw;*/
    margin: 0.5vw;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
.CatalogContainer:hover {
    transform: scale(1.1);
    /*background: #366F57;*/
	background: #fff;
	border: 1px solid #499776;
}
.CatalogContainer > a {
    text-decoration: none !important;
}
.CatalogContainer p {
    text-align: center;
    color: #000;
    width: 100%;
    height: auto;
    /*min-height: 46px;*/
    font-size: 11pt;
    margin: 10px auto;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
.Image {
    width: 100%; /* in parent*/
    /*height: 100%; /* in parent*/
    overflow: hidden;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
.Image > img {
    max-width: 100%;
    height: auto;
    height: 244px;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
.ProductLogo {
    width: auto;
    height: 30px;
    max-width: 110px;
    object-fit: scale-down;
    position: absolute;
    margin: 5px;
}
.ProductName {
    height: 29px !important;
}

.Category {
    float: left;
}

.ProductWrapper {
    /*float: left;*/
    margin: auto 25px 25px auto;
}
.ProductDetails {
    float: right;
    width: 500px;
    max-width: 100%;
    height: auto;
    background: #fff;
}
.ProductDetails p {
    text-align: center;
}
.ProductSpec {
    padding: 0 5px 0 5px;
    overflow: hidden;
}
.ProductImage {
    width: 48%;
    height: auto;
    height: 166px;
    object-fit: cover;
    margin-bottom: 25px;
    background: #fff;
    margin: 1%;
    float: left;
}
.ProductImage img {
    max-width: 100%;
    height: auto; /* auto */
    max-height: 100%;
    overflow: hidden;
    
    display: block;
    margin: 0 auto;
    opacity: .8; /* REVIEW OPACITY */
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
.ProductImage img:hover {
    opacity: 1;
}
.popup img {
    opacity: 1;
}
.ProductText {
    margin: 10px;
    overflow: hidden;
}

table {
    border-spacing: 10px;
}
table.fullWidth {
    width: 100%;
}

@media screen and (max-width : 1440px) { /* MacBook */
    .CatalogContainer {
        width: 17.4vw;
    }
    .Image img {
        max-height: 172px;
        width: 100%;
    }
}
@media screen and (max-width : 1366px) { /* Laptop */
}
@media screen and (max-width : 1025px) { /* Tablets */
    .CatalogContainer {
        width: 24.8vw;/*22.8vw;*/
        min-height: 34vw; /*31*/
    }
    .OptionContainer {
        width: 47.5%;
    }
    .Image img {
        height: 17vw;
    }

    .ProductText {
        float: none;
        width: auto;
    }

    .formColumn {
        width: auto;
        float: none !important;
    }
}
@media screen and (max-width : 770px) { /* Tablets portrait */
    .CatalogContainer {
        width: 37.4vw;/*35.7vw;*/
    }
    .Image img {
        height: 23vw;/*15.3vw;*/
    }
    td.tdField {
        min-width: 0;
    }

    .ProductDetails {
        width: 100%;
        float: none;
    }
    .OptionContainer {
        min-height: auto;
    }
    .ProductImage {
        float: none;
    }
    .ProductText {
        float: none;
        width: 100%;
    }
}
@media screen and (max-width : 767px) { /* Smartphones */
    .CatalogContainer {
        width: 73.5vw;
    }
    .Image img {
        height: 42.7vw;
    }
    .ProductWrapper {
        margin: 0;
    }
    .ProductImage {
        width: 100%;
        height: 250px;
        margin-bottom: 25px;
    }
}
@media screen and (max-width : 320px) { /* Smartphones */
    .CatalogContainer {
        width: 68.3vw;
    }
    .Image img {
        height: 49vw;
    }
}