body
{
    margin: 0;
    padding: 0;
}




/*--------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------- TOP BAR NAV ----------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------*/

#navbar
{
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    height: 60px;
    background: black;
    
    --webkit-transition: background, 0.5s;
    -moz-transition: background, 0.5s;
    -ms-transition: background, 0.5s;
    -o-transition: background, 0.5s;
    transition: background, 0.5s;
}


.top-logo
{
    max-width: 200px;
    height: auto;
    margin-top: 15px;
    margin-left: 5%;
}


.shy-menu 
{ 
    position: absolute;
    right: 20px;
    top: 12px;
}


.shy-menu-panel
{
    position: absolute;
    top: 55px;
    right: -250px;
    width: 300px;

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


.shy-menu-panel ul 
{
    float: left;
    list-style: none;
}


.shy-menu-panel li 
{
    float: right;
    width: 100%;
    height: auto;
    text-align: right;
    margin-bottom: 15px;
}


.shy-menu-panel li a 
{
    color: white;
    text-align: left;
    line-height: 20px;
    padding: 1px 5px 3px 8px;
    letter-spacing: 2px;
    font-family: 'Open Sans',sans-serif;
    font-weight: 300;
    font-size: 20px;
    background-color: rgba(0,0,0,0.65);
    border-color: transparent; 
    text-transform: uppercase;
}


.shy-menu-panel li a:hover 
{
    background-color: #BE202E;
    text-decoration: none;
}


.shy-menu-hamburger 
{
    width: 54px;
    height: 54px;
    display: block;
    cursor: pointer;
}


.shy-menu-hamburger > .layer 
{
    position: absolute;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 1px;

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


.shy-menu-hamburger .top
{
    top: 8px;
}


.shy-menu-hamburger .mid
{
    top: 16px;
}


.shy-menu-hamburger .btm
{
    top: 24px;
}


.top-rotate
{
    top: 16px !important;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}


.btm-rotate
{
    top: 16px !important;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}




@media only screen and (max-width: 767px)
{
    .shy-menu-panel
    {
        width: 150px;
    }


    .shy-menu-panel li 
    {
        margin-bottom: 10px;
    }


    .shy-menu-panel li a 
    {
        font-size: 14px;
    }


    .slider-container
    {
        margin-top: 50px;
    }


    .big-image
    {
        height: calc(100vh - 120px) !important;
    }


    .slider-control
    {
        height: 70px;
    }
}









/*--------------------------------------------------------------------------------------------------------------*/
/*------------------------------------------------- PRODUCT DETAIL ---------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------*/

.product-detail
{
    float: left;
    width: 100%;
    height: auto;
    min-height: 100vh;
    box-sizing: border-box;
    padding: 5px 2.5%;
    padding-top: 80px;
    background: #f7f7f7;
    margin-bottom: -20px !important;
}


.detail-container
{
    float: left;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 5px 2.5%;
}


.image-detail
{
    float: left;
    width: 50%;
    height: auto;
}


#product-cover
{
    float: left;
    width: 97%;
    height: auto;
    box-sizing: border-box;
    padding: 5px;
    border: 1px solid #e3e3e3;
    margin-left: 1.5%;
}


#product-cover img
{
    width: 100%;
    height: auto;
    object-fit: contain;
}


.small-images
{
    width: 100%;
    height: auto;
    text-align: left;
}


.small-images img
{
    width: 30%;
    height: 120px;
    object-fit: contain;
    border: 1px solid #e3e3e3;
    box-sizing: border-box;
    padding: 5px;
    margin: 20px 1.5%;
    cursor: pointer;
}


.small-images img.selected
{
    -webkit-filter: brightness(0.5);
    -moz-filter: brightness(0.5);
    -ms-filter: brightness(0.5);
    -o-filter: brightness(0.5);
    filter: brightness(0.5);
}


.information
{
    float: right;
    width: 45%;
    height: auto;
    box-sizing: border-box;
    padding: 0px;
}


.information h1
{
    color: #444;
    font-size: 22px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    margin-top: 0px;
    margin-bottom: 20px;
}


.information h4
{
    color: #333;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 15px;
}


.product-available span
{
    color : #25a148;
}


.product-unavailable span
{
    color : #be202e;
}


.information p
{
    color: #444;
    font-size: 14px;
    line-height: 25px;
    padding-bottom: 20px;
    margin-top: 20px;
}


.information h3
{
    color: #333;
    font-size: 40px;
    padding-top: 30px;
    padding-bottom: 20px;
    border-top: 1px solid #ccc;
    margin-top: 15px;
    margin-bottom: 15px;
}


.shopping
{
    float: left;
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    box-sizing: border-box;
    padding: 30px 2.5%;
}


.shopping button
{
    height: 35px;
    color: #333;
    background: transparent;
    border: 1px solid #a9a9a9;
    margin-right: 10px;
    margin-bottom: 10px;
}


.shopping button .fa
{
    margin-right: 10px;
}


.short-info
{
    float: left;
    width: 100%;
    margin-top: 35px;
}


.short-info span
{
    display: block;
    text-transform: capitalize;
    font-weight: bold;
    line-height: 25px;
}




@media only screen and (max-width: 767px)
{
    .product-detail
    {
        padding-top: 20px;
    }


    .small-images img
    {
        width: 48%;
        height: auto;
        max-height: auto;
        margin: 10px 1%;
    }


    .image-detail
    {
        width: 100%;
    }


    .information
    {
        width: 100%;
        margin-top: 30px;
    }    
}


@media only screen and (min-width: 768px) and (max-width: 1023px)
{
    .product-detail
    {
        padding: 5px 2.5%;
        padding-top: 50px;
        padding-bottom: 50px;
    }


    .detail-container
    {
        padding: 0;
    }


    .small-images img
    {
        width: 49%;
        height: 140px;
        max-height: 140px;
        margin: 10px 0.5%;
    }


    .information
    {
        box-sizing: border-box;
        padding-left: 20px;
    }


    .information h3
    {
        font-size: 20px;
    }


    .information p
    {
        font-size: 13px;
    }
}



















/*--------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------- FOOTER --------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------*/

footer.soft-container 
{
    float: left;
    width: 100%;
    color: #858585;
    background: #f2f2f2;
    padding-top: 40px;
    margin-top: 20px;
}


footer.gray-container h6,
footer.soft-container h5,
footer.soft-container h6 
{
    color: #333;
}


footer .office-contact,
footer .recent-portfolio 
{
    display: block;
    margin: 0;
    padding: 0;
}


footer .office-contact li 
{
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0 0 0 35px;
    position: relative;
}


footer .office-contact li:last-child 
{
    margin: 0;
}


footer .office-contact li h6 
{
    font-size: 17px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}


footer .office-contact li .fa 
{
    position: absolute;
    font-size: 24px;
    line-height: 24px;
    left: 0;
    top: 0;
    color: #be202e;
}


.widget h5
{
    color: #333;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Open Sans',sans-serif;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}


.widget h5 span
{
    font-weight: normal;
}


footer .link-list 
{
    float: left;
    width: 100%;
    clear: both;
    margin: 0;
    padding: 0;
}


footer .link-list,
footer .link-list.full li 
{
    float: none;
    display: block;
    width: 100%;
    margin-bottom: 3px;
}


footer.soft-container .link-list li a 
{
    color: #858585;
    font-size: 13px;
    font-family: 'Open Sans',sans-serif;
    letter-spacing: 1px;
}


footer.soft-container .link-list li a:hover
{
    color: #be202e;
}


footer .social-network 
{
    width: 40px;
    height: 40px;
    color: #fff;
    text-align: center;
    display: inline-block;
    border-radius: 2px;
    margin-bottom: 3px;
}


footer .social-network:hover 
{
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}


footer .social-network .fa 
{
    display: block;
    font-size: 20px;
    line-height: 40px;
    width: 40px;
    height: 40px;
}


footer .social-network .fa-facebook 
{
    background: #3f9bd5;
}


footer .social-network .fa-twitter 
{
    background: #41dee4;
}


footer .social-network .fa-google-plus 
{
    background: #e45c41;
}


footer .social-network .fa-instagram 
{
    background: #d5ad74;
}


footer .social-network .fa-youtube-play 
{
    background: #d22c2c;
}


.subfooter 
{
    background: #343747;
    color: #9496a0;
    padding: 30px 0;
    margin-top: 20px;
}


footer.gray-container .subfooter 
{
    background: #d5dde2;
    color: #6b6b6b;
}


footer.soft-container .subfooter 
{
    background: #e9efef;
    color: #858585;
}


footer.soft-container .subfooter a
{
    color: #be202e;    
    text-transform: capitalize;
}




@media only screen and (max-width: 991px)
{
    .widget
    {
        margin-bottom: 50px;
    }
}


