/* ======================================== */
/*                Reset                     */
/* ======================================== */

/* 
    Main color: #6ab16d;
    Secondary color: #f4f4f4;
*/

html, body {
    font-weight: 400;
}
a, a:hover, a:focus, b {
    color: #6ab16d;
}
p {
    margin: 0;
    padding: 0;
}
table, table tr td {
    border-color: #705E44;
}

/* ======================================== */
/*                Layout                     */
/* ======================================== */

#wrapper {
    padding-bottom: 40px;
    
    background: rgb(255,255,255); /* Old browsers */
    background: -moz-linear-gradient(top,  rgba(255,255,255,1) 20%, rgba(215,215,217,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%,rgba(255,255,255,1)), color-stop(100%,rgba(215,215,217,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 20%,rgba(215,215,217,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(255,255,255,1) 20%,rgba(215,215,217,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(255,255,255,1) 20%,rgba(215,215,217,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(255,255,255,1) 20%,rgba(215,215,217,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d7d7d9',GradientType=0 ); /* IE6-9 */
}
#main {

}
#main_shadow {
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    
    -webkit-box-shadow: -8px 5px 5px 0px rgba(175, 175, 175, 0.75);
    -moz-box-shadow:    -8px 5px 5px 0px rgba(175, 175, 175, 0.75);
    box-shadow:         -8px 5px 5px 0px rgba(175, 175, 175, 0.75);
}
#content {
    padding: 20px 25px;
    background-color: #fff;
    
    -webkit-border-bottom-left-radius: 10px;
    -webkit-border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -moz-border-radius-bottomright: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#sidebar {
    margin-top: 49px;
}

/* ======================================== */
/*                Header                    */
/* ======================================== */

#header {
    /*padding-top: 10px;*/
}

#right_upper_corner {
    margin-top: 10px;
    margin-bottom: 5px;
}
#right_upper_corner .centered {
    margin-top: 13px;
}

/* Logo */
#logo {
    margin: 15px 0;
}
#logo img {
    max-width: 520px;
    height: 83px;
}

/* Languages */
#languages {
    margin-bottom: 7px;
}
#languages .lang {
    font-size: 18px;
    font-weight: 300;
    line-height: 21px;
    color: #6ab16d;
    margin: 0 5px;
    text-transform: uppercase;
}
#languages .lang.current {
    text-decoration: underline;
}

/* Search */
#search {
    padding-right: 15px;
}
.search-form {
    position: relative;
    margin-bottom: 17px;
}
.search-form .search-icon {
    position: absolute;
    top: 2px; 
    right: 0;
}
.search-input {
    float: right;
    width: 80%;
    max-width: 190px;
    height: 28px;
    padding: 2px 5px;
    border: 1px solid #6ab16d;
}

/* Banners */
#banners_container {
    margin-top: -20px;
}
#banners_container > .banner > img {
    max-width: 100%;
    height: auto;
}

/* ======================================== */
/*                Slider                    */
/* ======================================== */

#slider_wrapper {
    position: relative;
    height: 444px;
}
#slider_wrapper #slider_container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}
#slider_wrapper #slider_container #slider,
#slider_wrapper #slider_container #slider img,
/*#slider_wrapper #slider_container #slider .slides,*/
#slider_wrapper #slider_container #slider .slides > img {
    max-width: 100% !important;
    height: auto !important;
}

/* ======================================== */
/*                 Menu                     */
/* ======================================== */

#main_menu #menu-toggle {
    padding: 0;
}
#main_menu .navbar {
    border-radius: 0px;
    margin-bottom: 0px;
    border: none;

    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    
    background: #6ab16d;
}
#main_menu li.first-level:last-child,
#main_menu li.first-level.no-image {
    background-image: none;
}
#main_menu li.first-level > a {
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    padding: 17px 26px;
}
#main_menu li.first-level:hover > a,
#main_menu li.first-level.active > a {
    color: #6ab16d;
    background-color: #f4f4f4;
}
#main_menu li.first-level > a > h2 {
    font-size: 16px;
    margin: 0px;
}
#main_menu li.first-level > a > .caret {
    display: none;
}

/* Submeniu */
#main_menu li.first-level > .dropdown-menu {
    border-radius: 0px;
    border: none;
    padding: 0px;
    left: 0px;
    background-color: #f4f4f4;
}
#main_menu li.second-level {
    border-bottom: 1px solid #ddddde;
}
#main_menu li.second-level:last-child {
    border-bottom: none;
}
#main_menu li.second-level > a {
    padding: 10px 20px;
    font-weight: 700;
    text-transform: uppercase;
    /*color: #808080;*/
    color: #6ab16d;
}
#main_menu li.second-level > a > h2 {
    font-size: 14px;
    margin: 0px;
}
#main_menu li.second-level.active a,
#main_menu li.second-level.active a > h2,
#main_menu li.second-level a:hover,
#main_menu li.second-level a:hover > h2{
    color: #fff;
    background: #6ab16d;
}

/* Bottom Menu */
#bottom_menu {
    margin-bottom: 40px;
}
#bottom_menu li {
    padding: 0 10px;
}
#bottom_menu li a {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    color: #fff;
}
#bottom_menu li.active a {
    text-decoration: underline;
}

/* ======================================== */
/*                Content                   */
/* ======================================== */

#cnt {
    /*margin-bottom: 40px;*/
}

#title {    
    margin: 0 0 20px 0;
    min-height: 49px;
    border-bottom: 4px solid #6ab16d;
}
#title > h3 {
    float: left;
    margin: 0;
    padding: 16px 90px 12px 15px;
    min-height: 49px;
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    background-color: #6ab16d;
    font-weight: 300;
}
#title > .title_corner {
    display: block;
    float: left;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 46px 0 0 46px;
    border-color: transparent transparent transparent #6ab16d;
}
.module_title {

}
.module_title b {
    font-size: 16px !important;
    font-weight: 300;
    text-transform: uppercase;
}
.module_text {
    
}
.module_text p {
    
}
.module_text img {
    margin-right: 10px;
}

.back_btn,
.more_btn {
    font-weight: 300;
}
.more_btn.right {
    float: right;
}

/* ========== Gallery ========== */

.gallery_table {

}
.gallery_table table {
    margin-bottom: -15px;
}
.gallery_table table .gallery_image {
    padding: 7px 0 !important;
}

/* ========== Articles ========== */

#articles_container {

}
#articles_container .articles_title {
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
}
#articles_container .articles_picture {
    padding-right: 10px;
}
#articles_container .articles_summary {

}
#articles_container .articles_summary p {

}

/* ========== Cart ========== */

#cart_wrapper {
    clear: both;
    padding-bottom: 0px !important;
}
#cart_wrapper .cart_container {
    width: 260px !important;
    margin-bottom: 20px;
    border: 1px solid #6ab16d;
    border-top: none;
}
#cart_wrapper .cart_container .cart_content {
    padding-left: 30px;
    padding-bottom: 30px;
    margin-top: -10px;
    border-bottom: 1px solid #6ab16d;
}
#cart_wrapper .cart_container .cart_title {
    display: block;
    padding: 15px 30px 10px 30px;
    font-size: 17px;
    font-weight: 400;
    text-align: left !important;
    text-transform: uppercase;
    color: #fff;
    background: #6ab16d;
}
#cart_wrapper .cart_container .cart_btn {
    margin: 15px 74px 15px 74px;
}
#cart_wrapper .cart_container .cart_btn a {

}
#cart_wrapper .cart_container .cart_btn a:hover {
    text-decoration: none;
}

/* ========== Catalog ========== */

#catalog_container {
    
}
#catalog_container .product_row {
    
}
#catalog_container .product_row .product_image {
    
}
#catalog_container .product_row #img {
    
}
#catalog_container .product_row .product_images {
    
}
#catalog_container .product_row .product_title b {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}
#catalog_container .product_row .product_inputs {
    
}
#catalog_container .product_row .product_summary {
    margin-bottom: 20px;
}
#catalog_container .product_row .product_description {
    
}
#catalog_container .product_row .cart_btn {

}
#catalog_container .product_row .cart_btn b {

}
#catalog_container .empty_row > td {
    padding-top: 10px;
}

/* ========== Contacts Form ========== */

#form_container {
    /*float: left;*/
    margin-top: -30px;
    margin-bottom: -30px;
}
#form_container input,
#form_container textarea {
    border-color: #D7D7D9 !important;
}
#form_container textarea {
    resize: none;
}
#form_container .form_title {
    font-size: 24px;
    font-weight: 300;
}
#form_container .form_label {

}
#form_container .form_required_title {
    padding-top: 22px;
}
#form_container .form_submit_btn {
    margin-top: 20px;
}
#form_container .form_submit_btn span {
    font-weight: 400;
    text-decoration: none !important;
}

/* ========== Search ========== */

#search_results {
    
}
#search_results .result {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
#search_results .result .search_title {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}
#search_results .result .search_summary {

}

/* ========== Pagination ========== */

.pagination > li > a,
.pagination > li > a:hover {
    color: #6ab16d;
}
.pagination > .active > a,
.pagination > .active > a:hover {
    background-color: #6ab16d;
    border-color: #6ab16d;
}

/* ======================================== */
/*                Footer                    */
/* ======================================== */

#footer {
    padding: 3% 0 2% 0;
    color: #fff;
    background-color: #6ab16d;
}
#footer span,
#footer span a {
    color: #fff;
}

/* ======================================== */
/*                Icons                     */
/* ======================================== */

.home-icon {
    display: block;
    float: right;
    height: 15px;
    margin: 0px 0 7px 0;
    font-size: 17px;
}
.sitemap-icon {
    display: block;
    float: right;
    height: 17px;
    margin: 1px 0 7px 24px;
    font-size: 15px;
}
.contact-icon {
    display: block;
    float: right;
    height: 15px;
    margin: 1px 10px 7px 23px;
    font-size: 16px;
}
.search-icon {
    display: block;
    float: right;
    cursor: pointer;
    margin: 2px 5px 0px 0px;
    font-size: 14px;
}
.print-icon {
    display: block;
    float: right;
    margin-top: 6px;
    font-size: 25px;
}

/* ======================================== */
/*                Button                    */
/* ======================================== */

.btn-main {
    padding: 4px 20px;
    font-size: 18px; 
    text-align: center;
    font-weight: 300;
    color: #fff;
    border: none;
    border-radius: 0px;
    background-color: #6ab16d;
    height: auto !important;
    width: auto !important;
}
.btn-main a {
    color: #fff;
}
.btn-main b {
    font-weight: 300;
    color: #fff;
}
.btn-main:hover {
    background-color: #f4f4f4;
    color: #6ab16d;
}
.btn-main:hover a {
    color: #6ab16d !important;
}
.btn-main:hover b {
    color: #6ab16d !important;
}

/* ======================================== */
/*              Media quaries               */
/* ======================================== */

/* Chrome */
@media screen and (-webkit-min-device-pixel-ratio:0) { 
    .contact-icon {
        margin-top: 0px;
        /*font-size: 14px;*/
    }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #header {
        height: 113px;
    }
    .container {
        /*width: 980px !important;*/
        width: 1010px !important;
    }
    #main.container {
         /*width: 980px !important;*/
    }
    
    #cart_wrapper .cart_container {
        float: left !important;
        margin-left: 15px !important;
    }

    /* Bootstrap nav tweak dropdown on hover */
    #main_menu ul.nav li.dropdown:hover > ul.dropdown-menu {
        display: block;    
    }

}

@media(min-width:768px){
    #main_menu li.first-level {
        background-image: url('../images/menu-border.png');
        background-position: right center;
        background-repeat: no-repeat;
    }
    #main_menu li.first-level.active:first-child > a,
    #main_menu li.first-level:first-child:hover > a {
        -webkit-border-top-left-radius: 4px;
        -moz-border-radius-topleft: 4px;
        border-top-left-radius: 4px;
    }
} 

/* Small devices (tablets, 992px and down) */
@media(max-width: 992px){
    #cart_wrapper .cart_container {
        width: 205px !important;
    }
    #cart_wrapper .cart_container .cart_btn {
        margin-left: 47px;
        margin-right: 47px;
    }
    #main_menu li.first-level > a > h2 {
        float: left;
    }
    #main_menu li.first-level > a > .caret {
        display: block;
        float: right !important;
        margin-top: 5px;
    }
    #slider_wrapper {
        height: 385px;
    }
    
    #menu-toggle .navbar-nav {
        margin: 0px;
    }
    .navbar-default .navbar-header {
        text-align: center;
    }
    .navbar-default .navbar-toggle {
        float: none;
        border: none;
        color: #fff;
        background-color: #6ab16d;
        font-size: 20px;
        padding: 5px 10px;
    }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
        color: #6ab16d;
        background-color: #F4F4F4;
    }
    .navbar-default .navbar-toggle .nav-heading {
        font-size: 18px;
    }
}

/* Extra small devices (mobiles, 767px and down) */ 
@media(max-width: 767px){
    #header {
        padding-top: 10px;
    }
    #sidebar {
        margin-top: 10px;
    }
    #right_upper_corner {
        margin-top: 10px;
        margin-bottom: 5px;
    }
    #search {
        margin-bottom: 10px;
    }
    #logo {
        text-align: center;
    }
    #logo img {
        max-width: 100%;
        height: auto;
    }
    
    #title > h3 {
        padding-right: 15px;
    }
    #title > .title_corner {
        margin-left: -1px;
    }
    #languages {
        margin-left: 15px;
        text-align: left;
    }
    #languages .lang {
        margin-left: 0px;
        margin-right: 7px;
    }
    
    #right_upper_corner .centered {
        margin-top: 0px;
    }
    #main_menu li.first-level {
        border-bottom: 1px solid #F4F4F4;
    }
    .module_text img {
        width: 100%;
        height: auto;
    }
    
    #cart_wrapper .cart_container {
        width: 260px !important;
    }
    #cart_wrapper .cart_container .cart_btn {
        margin-left: 74px;
        margin-right: 74px;
    }
    #main_menu li.first-level > a > .caret {
        border-top: 14px solid;
        border-right: 10px solid transparent;
        border-left: 10px solid transparent;
    }

    #main_menu li.first-level.dropdown:not(.active) .caret
    {
        color: #F4F4F4;
    }
    #main_menu li.first-level.dropdown:hover .caret
    {
        color: #6ab16d;
    }

}

/* Custom - mazo plocio tel */ 
@media(max-width:400px){
    #catalog_container .product_row .product_image img {
        max-width: 100px;
    }
    #catalog_container .product_row .product_inputs {
        width: 100% !important;
        float: none !important; 
        text-align: center !important;
    }
    #catalog_container .product_row .product_btn {
        margin-top: 10px;
        text-align: center !important;
        width: 100% !important;
    }
    
    #title > .title_corner._hidden {
        display: none;
    }
}

@media(min-width:1200px){}