﻿@charset "utf-8";
/* CSS Document */
/* fonts */
/*@import url('fonts/fonts.css');*/

/* site */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    outline: none;
    -webkit-font-smoothing: antialiased;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color: #999;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #999;
}

html {
    min-height: 100%;
    height: 100%;
}

body {
    width: 100%;
    min-height: 100%;
    height: 100%;
    font-family: opensans_light;
    font-size: 14px;
    color: #1f3a4a;
    background: #ffffff;
}

.body {
    position: relative;
    display: block;
    min-height: 100%;
    padding-bottom: 55px;
}

#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    overflow: hidden;
}

#loading {
    position: fixed;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    margin-left: -60px;
    margin-top: -60px;
}

.input-uppercase {
    text-transform: uppercase;
}

ul, li {
    list-style: none;
}

a {
    font-family: opensans_light;
    font-size: 14px;
    color: #1f3a4a;
    text-decoration: none;
}

.exit a {
    color: white;
}

textarea {
    resize: none;
}

h1, h2, h3, h4, h5, h6 {
    display: block;
    font-weight: normal;
}

/* ------ [ header ] ------ */
header {
    position: relative;
    display: block;
    height: 181px;
    margin-bottom: 30px;
    background: url("../img/header-bg-3.png") center top no-repeat;
}

    header .header {
        position: relative;
        display: block;
        width: 960px;
        height: 181px;
        margin: 0 auto;
    }

        header .header a.logo {
            display: block;
            width: 260px;
            height: 172px;
            margin: 0 auto;
            cursor: pointer;
        }

        header .header .topmenu {
            position: absolute;
            top: 15px;
            right: 10px;
            z-index: 5;
        }

            header .header .topmenu .name {
                position: relative;
                display: block;
                height: 50px;
                line-height: 50px;
                padding: 0 32px 0 10px;
                font-family: opensans_bold;
                font-size: 14px;
                color: #6b5f4b;
                cursor: pointer;
                white-space: nowrap;
            }

                header .header .topmenu .name .welcome {
                    font-family: opensans_light;
                }

                header .header .topmenu .name .icon {
                    position: absolute;
                    top: 50%;
                    right: 10px;
                    display: block;
                    width: 17px;
                    height: 17px;
                    margin-top: -8px;
                    background: url("../img/arrow-down.png") center center no-repeat;
                }

            header .header .topmenu .menu {
                position: absolute;
                top: 0;
                left: 0;
                display: none;
                -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
                -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
                box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.75);
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                border-radius: 10px;
                background: #ffffff;
                overflow: hidden;
            }

                header .header .topmenu .menu .change_password, header .header .topmenu .menu .profile {
                    display: block;
                    padding: 6px 0;
                    font-family: opensans;
                    font-size: 14px;
                    color: #6b5f4b;
                    text-align: center;
                    /*background: #e3dfd6;*/
                    cursor: pointer;
                }

                header .header .topmenu .menu .exit {
                    display: block;
                    padding: 8px 0;
                    font-family: opensans_bold;
                    font-size: 14px;
                    color: #ffffff;
                    text-align: center;
                    background: #3F6287;
                    cursor: pointer;
                }

        header .header .search-wr {
            position: absolute;
            top: 120px;
            left: 30px;
            max-width: 900px;
            min-width: 350px;
        }

            header .header .search-wr .text.search {
                float: left;
                display: block;
                width: 210px;
                height: 40px;
                line-height: 40px;
                padding: 0 15px 0 50px;
                border: none;
                background: url("../img/search-bg-2.png") 0 0 no-repeat;
            }

            header .header .search-wr .btn {
                float: left;
                display: inline-block;
                height: 40px;
                line-height: 40px;
                /*margin-left: 10px;*/
                padding: 0 20px;
                font-family: opensans_bold;
                font-size: 14px;
                color: #ffffff;
                border: none;
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                border-radius: 3px;
                background: #3F6287;
                cursor: pointer;
            }

                header .header .search-wr .btn:hover {
                    background: #527294;
                }


        header .header .ibtn {
            position: absolute;
            top: 120px;
            right: 30px;
            display: inline-block;
            padding: 10px 20px 10px 45px;
            font-family: opensans_bold;
            font-size: 14px;
            color: #ffffff;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            background: #3F6287 url("../img/icon-arrow-2.png") 20px center no-repeat;
        }

        header .header .backbtn {
            position: absolute;
            top: 120px;
            right: 191px;
            display: inline-block;
            padding: 10px 20px 10px 25px;
            font-family: opensans_bold;
            font-size: 14px;
            color: #ffffff;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            background: #3F6287;
            text-align: center;
        }

        header .header .ibtn:hover {
            background-color: #527294;
        }

        header .header .ibtn .number {
            position: absolute;
            top: -6px;
            left: -6px;
            display: block;
            width: 16px;
            height: 16px;
            line-height: 16px;
            font-family: opensans_bold;
            font-size: 8px;
            color: #ffffff;
            text-align: center;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            border-radius: 50%;
            background: #ca0000;
        }

body.login header {
    height: 172px;
    margin-bottom: 35px;
    background: url("../img/header-bg-1.png") center top no-repeat;
}

    body.login header .header {
        height: 172px;
    }

/* ------ [ footer ] ------ */
.leftmenu-toggler {
    position: relative;
    display: none;
    height: 40px;
    margin-bottom: 1px;
    line-height: 40px;
    padding: 0 30px 0 45px;
    font-family: opensans_bold;
    font-size: 14px;
    color: #ffffff;
    background: #534732;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
}

    .leftmenu-toggler .icon {
        position: absolute;
        top: 50%;
        left: 20px;
        display: block;
        width: 17px;
        height: 17px;
        margin-top: -8px;
        background: url("../img/icon-menu.png") center center no-repeat;
    }

    .leftmenu-toggler:hover {
        background-color: #554c3c;
    }

.leftmenu {
}

    .leftmenu > ul {
        display: block;
    }

        .leftmenu > ul > li {
            display: block;
            margin-bottom: 10px;
        }

            .leftmenu > ul > li > a {
                position: relative;
                display: block;
                height: 40px;
                line-height: 40px;
                padding: 0 30px 0 45px;
                font-family: opensans;
                font-size: 14px;
                color: #ffffff;
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                border-radius: 3px;
                cursor: pointer;
            }

                .leftmenu > ul > li > a.icon-1 {
                    background: #3F6287 url("../img/icon-wrench.png") 20px center no-repeat;
                }

                .leftmenu > ul > li > a.icon-2 {
                    background: #3F6287 url("../img/icon-title.png") 20px center no-repeat;
                }

                .leftmenu > ul > li > a.icon-3 {
                    background: #3F6287 url("../img/icon-star.png") 20px center no-repeat;
                }

                .leftmenu > ul > li > a.icon-4 {
                    background: url("../img/icon-arrow.png") 20px center no-repeat;
                }

                .leftmenu > ul > li > a.icon-5 {
                    background: #3F6287 url("../img/icon-vehicle.png") 20px center no-repeat;
                }

                .leftmenu > ul > li > a .arrow {
                    position: absolute;
                    top: 50%;
                    right: 5px;
                    display: block;
                    width: 17px;
                    height: 17px;
                    margin-top: -8px;
                    background: url("../img/arrow-right.png") center center no-repeat;
                }

            .leftmenu > ul > li > .sub {
                display: none;
                padding: 5px 0 0 20px;
            }

                .leftmenu > ul > li > .sub dt {
                    display: block;
                    margin-top: 5px;
                }

                    .leftmenu > ul > li > .sub dt > a {
                        position: relative;
                        display: block;
                        height: 30px;
                        line-height: 30px;
                        padding: 0 10px 0 25px;
                        font-family: opensans;
                        font-size: 14px;
                        color: white;
                        background: #527294;
                        -webkit-border-radius: 3px;
                        -moz-border-radius: 3px;
                        border-radius: 3px;
                        cursor: pointer;
                    }

    .leftmenu ul li .sub dt > a .arrow {
        position: absolute;
        top: 50%;
        left: 5px;
        display: block;
        width: 17px;
        height: 17px;
        margin-top: -8px;
        /*background: url("../img/arrow-right-2.png") center center no-repeat;*/
    }

    .leftmenu ul li .sub dt > a:hover,
    .leftmenu ul li .sub dt.active > a {
        background-color: #527294;
    }

    .leftmenu > ul > li > a.icon-3:hover {
        background: #527294 url("../img/icon-star.png") 20px center no-repeat;
    }

    .leftmenu ul li.open .sub {
        display: block;
    }

    .leftmenu > ul > li > a:hover,
    .leftmenu > ul > li.open > a {
        background-color: #527294;
    }

    .leftmenu ul li.uploader .sub {
        padding: 0;
    }

    .leftmenu > ul > li.uploader > a {
        font-family: opensans_bold;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        background-color: #527294;
    }

        .leftmenu > ul > li.uploader > a:hover, {
            background-color: #527294;
        }

    .leftmenu ul li p {
        display: block;
        padding: 10px 0;
        font-family: opensans_light;
        font-size: 12px;
        color: #6c5f49;
        text-align: justify;
    }

/* ------ [ footer ] ------ */
footer {
    clear: both;
    position: fixed;
    bottom: 0;
    display: block;
    width: 100%;
    padding: 10px;
    background: #e5e7e9;
    overflow: hidden;
    z-index: 12;
    border-top: 1px solid #527294;
}

    footer .footer {
        display: block;
        width: 1000px;
        margin: 0 auto;
    }

        footer .footer .copyright {
            display: inline-block;
            height: 32px;
            line-height: 32px;
            /*padding: 0 20px;*/
            /*margin-left: 27px;*/
            font-family: opensans_light;
            font-size: 14px;
            color: #6b5f4b;
            text-align: center;
            /*border-left: 1px solid #6b5f4b;*/
        }

        footer .footer .contact {
            display: inline-block;
            height: 32px;
            line-height: 32px;
            padding: 0 20px;
            font-family: opensans_light;
            font-size: 14px;
            color: #6b5f4b;
            text-align: left;
            border-left: 1px solid #6b5f4b;
            width: 226px;
        }

        footer .footer .privacy {
            display: inline-block;
            height: 32px;
            line-height: 32px;
            padding: 0 20px;
            font-family: opensans_light;
            font-size: 14px;
            color: #6b5f4b;
            text-align: center;
            border-left: 1px solid #6b5f4b;
        }

        footer .footer .email {
            position: relative;
            display: inline-block;
            height: 32px;
            line-height: 32px;
            /*padding: 0 20px;*/
            font-family: opensans_light;
            font-size: 14px;
            color: #6b5f4b;
            text-align: left;
            /*border-left: 1px solid #6b5f4b;
            border-right: 1px solid #6b5f4b;*/
            /*margin-left: 139px;*/
            float: right;
        }

            footer .footer .email img {
                float: left;
                margin: 9px 5px 0 0;
            }

/* ------ [ login ] ------ */

body.login .main-logos {
    display: block;
    max-width: 900px;
    margin: 0 auto 35px auto;
}

    body.login .main-logos img {
        text-align: center;
        display: block;
        max-width: 100%;
        max-height: 100%;
    }

body.login .login-update {
    margin-bottom: 0px !important;
}

body.login .login-wr {
    display: block;
    padding: 18px 0;
    /*margin-bottom: 100px;*/
    background: #e5e7e9;
}

    body.login .login-wr .login-form {
        display: block;
        max-width: 320px;
        padding: 0 20px;
        margin: 0 auto;
    }

        body.login .login-wr .login-form h3 {
            display: block;
            margin-bottom: 15px;
            font-family: opensans_extrabold;
            font-size: 18px;
            color: #6c5f49;
        }

        body.login .login-wr .login-form .line {
            clear: both;
            display: block;
            margin-bottom: 10px;
        }

        body.login .login-wr .login-form .forgot {
            display: inline-block;
            font-family: opensans_light;
            font-size: 14px;
            color: #6b5f4b;
            text-decoration: underline;
            cursor: pointer;
        }

        body.login .login-wr .login-form .text {
            display: block;
            width: 100%;
            height: 38px;
            line-height: 38px;
            padding: 0 10px 0 40px;
            border: 1px solid #3F6287;
            font-family: opensans_light;
            font-size: 14px;
            color: #6b5f4b;
        }

            body.login .login-wr .login-form .text.email {
                background: #ffffff url("../img/bg-001.png") 9px center no-repeat;
            }

            body.login .login-wr .login-form .text.password {
                background: #ffffff url("../img/bg-002.png") 9px center no-repeat;
            }

            body.login .login-wr .login-form .text.password2 {
            }

            body.login .login-wr .login-form .text:focus {
                border-color: #6b5f4b;
            }

            body.login .login-wr .login-form .text.error {
                color: red;
                border-color: red;
            }

        body.login .login-wr .login-form .btn-1 {
            float: right;
            display: inline-block;
            padding: 12px 25px;
            font-family: opensans_bold;
            font-size: 14px;
            color: #ffffff;
            border: none;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            background: #3F6287;
            cursor: pointer;
        }

            body.login .login-wr .login-form .btn-1:hover {
                background: #527294;
            }

        body.login .login-wr .login-form .line:after {
            content: '';
            display: block;
            clear: both;
        }

        body.login .login-wr .login-form .results {
            clear: both;
            display: block;
            padding-top: 10px;
        }


            body.login .login-wr .login-form .results .error {
                margin-bottom: 5px;
                font-family: opensans_semibold;
                font-size: 14px;
                color: red;
            }

.validation-summary-errors {
    margin-bottom: 5px;
    font-family: opensans_semibold;
    font-size: 14px;
    color: red !important;
}

body.login .login-wr .login-form .results .success {
    margin-bottom: 5px;
    font-family: opensans_semibold;
    font-size: 14px;
    color: green;
}


/*REGISTER*/


body.login .register-update {
    margin-bottom: 0px !important;
}

body.login .register-wr {
    display: block;
    padding: 28px 0;
    /*margin-bottom: 100px;*/
    background: #aaa;
}

body.login .register-wr .register-form {
    display: block;
    max-width: 320px;
    padding: 0 20px;
    margin: 0 auto;
}

body.login .register-wr .register-form h3 {
    display: block;
    margin-bottom: 15px;
    font-family: opensans_extrabold;
    font-size: 18px;
    color: #6c5f49;
}

body.login .register-wr .register-form .line {
    clear: both;
    display: block;
    margin-bottom: 10px;
}

body.login .register-wr .register-form .forgot {
    display: inline-block;
    font-family: opensans_light;
    font-size: 14px;
    color: #6b5f4b;
    text-decoration: underline;
    cursor: pointer;
}

body.login .register-wr .register-form .text {
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    padding: 0 10px 0 40px;
    border: 1px solid #3F6287;
    font-family: opensans_light;
    font-size: 14px;
    color: #6b5f4b;
}

body.login .register-wr .register-form .text.email {
    background: #ffffff url("../img/bg-001.png") 9px center no-repeat;
}

body.login .register-wr .register-form .text.password {
    background: #ffffff url("../img/bg-002.png") 9px center no-repeat;
}

body.login .register-wr .register-form .text.password2 {
}

    body.login .login-wr .register-form .text:focus {
        border-color: #6b5f4b;
    }

body.login .register-wr .register-form .text.error {
    color: red;
    border-color: red;
}

body.login .register-wr .register-form .btn-1 {
    float: right;
    display: inline-block;
    padding: 12px 25px;
    font-family: opensans_bold;
    font-size: 14px;
    color: #ffffff;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #3F6287;
    cursor: pointer;
}

body.login .register-wr .register-form .btn-1:hover {
    background: #527294;
}

body.login .register-wr .register-form .line:after {
    content: '';
    display: block;
    clear: both;
}

body.login .register-wr .register-form .results {
    clear: both;
    display: block;
    padding-top: 10px;
}


    body.login .register-wr .register-form .results .error {
        margin-bottom: 5px;
        font-family: opensans_semibold;
        font-size: 14px;
        color: red;
    }

.validation-summary-errors {
    margin-bottom: 5px;
    font-family: opensans_semibold;
    font-size: 14px;
    color: red !important;
}

body.login .register-wr .register-form .results .success {
    margin-bottom: 5px;
    font-family: opensans_semibold;
    font-size: 14px;
    color: green;
}





/* ------ [ pages ] ------ */

.content {
    display: block;
    width: 940px;
    margin: 0 auto;
}

    .content .left {
        float: left;
        width: 220px;
        margin-right: 20px;
    }

    .content .right {
        float: left;
        width: 700px;
    }

        .content .right .head {
            display: block;
            margin-bottom: 25px;
        }

            .content .right .head .h1 {
                font-family: opensans_bold;
                font-size: 20px;
                color: #6b5f4b;
            }

            .content .right .head .h2 {
                font-family: opensans_light;
                font-size: 14px;
                color: #6b5f4b;
            }

            .content .right .head:after {
                content: '';
                display: block;
                clear: both;
            }

        .content .right .banner {
            display: block;
            margin-bottom: 10px;
        }

            .content .right .banner img {
                display: block;
                max-width: 100%;
                max-height: 100%;
            }

        .content .right .slider-wr {
            position: relative;
            display: block;
            width: 660px;
            height: 90px;
            padding: 25px 0 0 0;
            margin: 20px auto;
            border: 1px solid #3F6287;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
        }

            .content .right .slider-wr li {
                display: block;
                width: 132px;
                height: 40px;
            }

                .content .right .slider-wr li a {
                    display: block;
                    width: 132px;
                    height: 40px;
                    text-align: center;
                }

                    .content .right .slider-wr li a img {
                        display: block;
                        margin: 0 auto;
                    }

            .content .right .slider-wr .arrow {
                position: absolute;
                top: 28px;
                display: block;
                width: 32px;
                height: 32px;
                background: url("../img/arrows.png") 0px 0px no-repeat;
                cursor: pointer;
                z-index: 1;
            }

                .content .right .slider-wr .arrow a {
                    display: block;
                    width: 32px;
                    height: 32px;
                }

                .content .right .slider-wr .arrow.left {
                    left: -16px;
                }

                    .content .right .slider-wr .arrow.left:hover {
                        background-position: 0px -33px;
                    }

                .content .right .slider-wr .arrow.right {
                    right: -16px;
                    background-position: -33px 0px;
                }

                    .content .right .slider-wr .arrow.right:hover {
                        background-position: -33px -33px;
                    }

        .content .right .table td a.download-link, .content .right .table td a.download-link-2 {
            /*display: block;*/
            /*width: 100%;
            height: 100%;
            min-height: 19px;*/
            /*background: url("../img/icon-download.png") center right no-repeat;*/
            background-repeat: no-repeat;
            cursor: pointer;
        }

        .content .right .table td a.download-link-2 {
            background: url("../img/icon-download.png") left center no-repeat;
            padding-left: 20px;
        }

        .content .right .table td a.download-link:hover {
            background-image: url('../img/icon-download-2.png') no-repeat;
        }

body.login .content {
    width: 100%;
}

.content:after {
    content: '';
    display: block;
    clear: both;
}

/* ------ [ uploader ] ------ */

.qq-upload-button {
    display: block;
    width: 220px;
    height: 40px;
    line-height: 27px;
    margin-bottom: 10px;
    font-family: opensans;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #32bf47;
}

    .qq-upload-button:hover {
        background: #2ba64a;
    }

.qq-upload-list {
}

    .qq-upload-list li {
        position: relative;
        display: block;
        width: 180px;
        height: 15px;
        padding: 0;
        margin-bottom: 10px;
        border: none;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }

        .qq-upload-list li .qq-progress-bar {
            display: block;
            height: 15px;
            border: none;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            background: #33c151;
        }

        .qq-upload-list li .qq-upload-file {
            position: absolute;
            left: 2px;
            display: block;
            width: 180px;
            height: 17px;
            line-height: 17px;
            padding-left: 20px;
            font-family: opensans;
            font-size: 12px;
            color: #6b5f4b;
            background: url("../img/icon-success.png") 0 center no-repeat;
        }

        .qq-upload-list li .qq-upload-size {
            position: absolute;
            top: 0;
            right: -50px;
            display: block;
            width: 35px;
            height: 15px;
            font-family: opensans;
            font-size: 12px;
            color: #33c151;
            text-align: right;
        }

        .qq-upload-list li .qq-upload-cancel {
            position: absolute;
            top: 20px;
            right: -50px;
            display: block;
            width: 50px;
            height: 15px;
            font-family: opensans;
            font-size: 12px;
            color: #6b5f4b;
            text-align: right;
            text-decoration: underline;
        }

    .qq-upload-list:after {
        content: '';
        display: block;
        clear: both;
    }

/* ------ [ general ] ------ */

.h20 {
    clear: both;
    display: block;
    height: 20px;
}

.h100 {
    clear: both;
    display: block;
    height: 100px;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tac {
    text-align: center;
}

.tar {
    text-align: right;
}

.tal {
    text-align: left;
}

/* ------ [ pop ] ------ */

#pop, #pop2, #pop3 {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
    background: rgba(107, 95, 75, .7);
    z-index: 999;
}

    #pop .pop-content, #pop2 .pop-content, #pop3 .pop-content {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 315px;
        margin: -160px 0 0 -160px;
        padding: 50px 20px 10px 20px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        background: #ffffff;
    }

    /*#pop .pop-content, #pop2 .pop-content {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 315px;
        margin: -160px 0 0 -160px;
        padding: 76px 20px 10px 20px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        background: #ffffff;
        height: 129px;
    }*/

    #pop2 .pop-content {
        top: 30%;
    }

        #pop .pop-content .h1, #pop2 .pop-content .profileTitle {
            position: absolute;
            top: 30px;
            left: 20px;
            display: block;
            font-family: opensans_bold;
            font-size: 24px;
            color: #6b5f4b;
        }

        #pop .pop-content .h1, #pop2 .pop-content .h1 {
            position: absolute;
            top: 20px;
            left: 20px;
            display: block;
            font-family: opensans_bold;
            font-size: 14px;
            color: #6b5f4b;
        }

        #pop .pop-content .h2, #pop2 .pop-content .h2 {
            position: absolute;
            top: 20px;
            right: 20px;
            display: block;
            font-family: opensans_light;
            font-size: 14px;
            color: #6b5f4b;
        }

        #pop .pop-content .line, #pop2 .pop-content .line {
            display: block;
            height: 40px;
            margin-bottom: 10px;
        }

        #pop .pop-content .password, #pop2 .pop-content .password {
            display: block;
            width: 273px;
            height: 40px;
            line-height: 40px;
            padding: 0 10px 0 50px;
            border: none;
            background: url("../img/pass-bg.png") 0 0 no-repeat;
        }

        #pop .pop-content .textp, #pop2 .pop-content .textp {
            display: block;
            width: 273px;
            height: 40px;
            line-height: 40px;
            padding: 0 10px 0 40px;
            background: url("../img/standart.png") 0 0 no-repeat;
            border: none;
        }

        #pop .pop-content .textco, #pop2 .pop-content .textco {
            display: block;
            width: 100%;
            height: 38px;
            line-height: 38px;
            padding: 0 10px 0 40px;
            font-family: opensans_light;
            font-size: 14px;
            color: #6b5f4b;
            background-color: #F2EDE6;
        }



        #pop .pop-content .password.error, #pop2 .pop-content .password.error {
            color: red;
            border-color: red;
        }

        #pop .pop-content .btn-1, #pop2 .pop-content .btn-1 {
            float: right;
            display: inline-block;
            padding: 12px 30px;
            margin-left: 10px;
            font-family: opensans_bold;
            font-size: 14px;
            color: #ffffff;
            border: none;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            background: #3F6287;
            cursor: pointer;
        }

            #pop .pop-content .btn-1:hover, #pop2 .pop-content .btn-1:hover {
                background: #615644;
            }

        #pop .pop-content .btn-2, #pop2 .pop-content .btn-2 {
            float: right;
            display: inline-block;
            padding: 12px 30px;
            font-family: opensans_bold;
            font-size: 14px;
            color: #ffffff;
            border: none;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            border-radius: 3px;
            background: #d0c2aa;
            cursor: pointer;
        }

            #pop .pop-content .btn-2:hover, #pop2 .pop-content .btn-2:hover {
                background: #b8ac96;
            }

        #pop .pop-content .results .error, #pop2 .pop-content .results .error {
            margin-bottom: 5px;
            font-family: opensans_semibold;
            font-size: 14px;
            color: red;
        }

        #pop .pop-content .results .success, #pop2 .pop-content .results .success {
            margin-bottom: 5px;
            font-family: opensans_semibold;
            font-size: 14px;
            color: green;
        }

/* ------ [ media queries ] ------ */

@media only screen and (max-width: 960px) {



    header .header {
        width: 748px;
    }

        header .header .topmenu .name .welcome {
            display: none;
        }

        header .header .search-wr {
            left: 10px;
        }

            header .header .search-wr .text.search {
                width: 174px;
                background-image: url("../img/search-bg-2.png");
            }

            header .header .search-wr .btn {
                padding: 0 10px;
            }

        header .header .ibtn {
            right: 10px;
        }


    .content {
        width: 748px;
        padding: 0 10px;
    }

        .content .right {
            width: 488px;
        }

            .content .right .slider-wr {
                width: 458px;
            }

    .responsiveHide {
        display: none !important;
    }


    footer .footer {
        width: 768px;
        margin: 0 auto;
    }

        footer .footer .copyright,
        footer .footer .contact,
        footer .footer .privacy,
        footer .footer .email {
            padding: 0 10px;
            margin-bottom: 5px;
            font-size: 13px;
        }

    /*.TextRight {
        text-align: right !important;
    }*/
}

@media only screen and (max-width: 760px) {

    .body {
        padding-bottom: 140px;
    }

    header {
        height: 122px;
        margin-bottom: 60px;
        /*background: url("../img/header-bg-4.png") center top no-repeat;*/
    }

        header .header {
            width: 320px;
        }

    body header .header a.logo {
        width: 105px;
        height: 50px;
        margin: 0;
    }

    header .header .topmenu {
        top: -7px;
        right: 20px;
    }

    header .header .search-wr {
        top: 70px;
    }

        header .header .search-wr .text.search {
            width: 204px;
        }

        header .header .search-wr .btn {
            padding: 0 20px;
        }

    header .header .ibtn {
        top: 132px;
        width: 300px;
    }

    body.login header {
        height: 64px;
        margin-bottom: 10px;
        background: url("../img/header-bg-2.png") center top no-repeat;
    }

        body.login header .header a.logo {
            display: block;
            width: 100px;
            height: 64px;
            margin: 0 auto;
            cursor: pointer;
        }

    /* login */
    body.login .main-logos {
        margin: 0 auto 15px auto;
    }

    body.login .login-wr {
        padding: 20px 0;
        margin-bottom: 10px;
    }

    .content {
        width: 320px;
        padding: 0 10px;
    }



        .content .left {
            float: none;
            width: 300px;
        }

        .content .right {
            float: none;
            width: 300px;
        }

            .content .right .head {
                padding-top: 10px;
                margin-bottom: 10px;
            }

            .content .right .banner {
                margin-top: 14px;
            }

                .content .right .banner:not(.main) {
                    display: none;
                }

            .content .right .slider-wr {
                width: 270px;
            }

    .leftmenu-toggler {
        display: block;
    }

    .leftmenu {
        display: none;
    }

        .leftmenu > ul > li {
            margin-bottom: 1px;
        }

        .leftmenu dl {
            margin-bottom: 9px;
        }

        .leftmenu .h20 {
            display: none;
        }

    .qq-upload-button {
        width: 300px;
    }

    .qq-upload-list {
        margin-bottom: 40px;
    }

        .qq-upload-list li {
            width: 260px;
        }

    .table.tablesorter {
        width: 300px;
        pos;
    }

    table.tablesorter thead tr .header.download {
        padding: 0 15px;
        font-size: 0;
        background: #c89d56 url('../img/icon-download-3.png') center center no-repeat;
    }

    body.login .content {
        width: 100%;
        padding: 0;
    }



    footer .footer {
        width: 320px;
    }

        footer .footer .copyright {
            width: 320px;
            line-height: 16px;
            padding: 0;
            margin-left: 21px;
            margin-bottom: 5px;
            /*border-right: 1px solid #6b5f4b;*/
        }

            footer .footer .copyright span {
                display: block;
            }

        footer .footer .contact {
            width: 137px;
            padding: 0;
            margin-left: 21px;
            margin-bottom: 5px;
        }

        footer .footer .privacy {
            width: 138px;
            padding: 0;
            margin-bottom: 5px;
            border-right: 1px solid #6b5f4b;
        }

        footer .footer .email {
            width: 278px;
            padding: 0;
            margin-left: 21px;
            margin-bottom: 5px;
        }

            footer .footer .email img {
                margin: 9px 5px 0 50px;
            }
}

.results {
    clear: both;
    display: block;
}


    .results .error {
        margin-bottom: 5px;
        font-family: opensans_semibold;
        font-size: 14px;
        color: red;
    }


.dn-link {
    position: relative;
    display: block;
    min-height: 17px;
    padding-right: 20px;
}

    .dn-link .t {
        font-size: 14px;
        font-family: 'opensans_bold';
        color: #173D90;
        white-space: nowrap;
        text-decoration: underline;
    }

    .dn-link .i {
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        width: 16px;
        height: 16px;
        background: url("/Content/img/icon-download.png") 0 0 no-repeat;
    }

.black {
    background-color: #111111;
    color: silver;
}

.validate-detail {
    margin-bottom: 5px !important;
}

.text-center {
    text-align: center !important;
}

.text-muted {
    color: #999999;
}

.text-primary {
    color: #428bca;
}

.text-warning {
    color: #c09853;
}

.text-danger {
    color: #b94a48;
}

.text-success {
    color: #468847;
}

.text-info {
    color: #3a87ad;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.red {
    color: red;
}

.progress-bar-success {
    background-color: #5cb85c;
}

.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    background-color: #428bca;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.progress-striped .progress-bar {
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
}

.progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -moz-animation: progress-bar-stripes 2s linear infinite;
    -ms-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
    background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
    background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
    background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
    background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    font-size: 11px;
}

.d-block {
    display: block !important;
}

.d-inline-block {
    display: inline-block !important;
}

.m-0 {
    margin: 0 !important;
}

.m-0-0-5-0 {
    margin: 0 0 5px 0 !important;
}

.m-0-0-10-0 {
    margin: 0 0 10px 0 !important;
}

.m-0-0-20-0 {
    margin: 0 0 20px 0 !important;
}

.w-100p {
    width: 100% !important;
}

.simexdoc-error {
    border: 1px solid #f00 !important;
}

.simexdoc-valid {
    border: 1px solid #6B5F4B !important;
}

.loadingoverlay {
    z-index: 1050 !important;
}

#brand-vehicle-criteria-form .search-criteria,
#vehicle-criteria-form .search-criteria {
    border: 0;
}

.bg-color-white {
    background-color: #FFFFFF !important;
}

.search-criteria {
    border: 1px solid #CCCCCC;
    margin: 0 0 20px 0;
    width: 100%;
}

    .search-criteria .sc-header {
        background-color: #F2EDE6;
        height: 50px;
        padding: 10px;
        width: inherit;
    }

        .search-criteria .sc-header .sc-header-left {
            display: inline-table;
            height: 100%;
            width: 54.5%;
        }

            .search-criteria .sc-header .sc-header-left h3 {
                color: #6B5F4B;
                font-size: 16px;
                font-weight: 600;
                margin: 0;
                vertical-align: middle;
                display: table-cell;
            }

        .search-criteria .sc-header .sc-header-right {
            display: inline-table;
            height: 100%;
            text-align: right;
            width: 45%;
        }

            .search-criteria .sc-header .sc-header-right span {
                display: table-cell;
                color: #6B5F4B;
                vertical-align: middle;
            }

    .search-criteria .sc-content {
        background-color: #F5F5F5;
        padding: 10px;
        width: 100%;
    }

    .search-criteria select {
        border: 1px solid #C89D56;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        height: 35px;
        padding: 0 10px;
        width: 300px;
    }

    .search-criteria .sc-content input[type=text] {
        border: 1px solid #C89D56;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        height: 35px;
        padding: 0 15px;
        width: 300px;
    }

    .search-criteria .search-button {
        background-color: #6B5F4B;
        border: 0;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        display: inline-block;
        color: #FFFFFF;
        height: 35px;
        line-height: 35px;
        text-align: center;
        vertical-align: middle;
        width: 100px;
    }

    .search-criteria .sc-content .simexdoc-tab {
        width: inherit;
    }

        .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-menu {
            width: inherit;
        }

            .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-menu ul {
                display: block;
                margin: 0;
            }

                .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-menu ul li {
                    display: inline-block;
                    margin: 0 5px 0 0;
                }

                    .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-menu ul li a {
                        border-color: #DDDDDD;
                        -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;
                        border-style: solid;
                        border-width: 1px 1px 0 1px;
                        display: inline-block;
                        padding: 10px 20px;
                    }

                        .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-menu ul li a.active {
                            background-color: #6B5F4B;
                            color: #FFFFFF;
                            font-weight: 600;
                        }

        .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-content {
            border-top: 1px solid #6B5F4B;
            padding: 10px 0;
        }

        .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-content-item {
            display: none;
        }

            .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-content-item:nth-child(3) input[type=text],
            .search-criteria .sc-content .search-by-article-code input[type=text] {
                margin: 0 10px 10px 0;
                width: 68.9%;
            }

            .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-content-item:nth-child(3) .search-button.motor-option,
            .search-criteria .sc-content .search-by-article-code .search-button {
                width: 29%;
            }

    .search-criteria .sc-content .search-by-brand {
        height: 214px;
        overflow: hidden;
        width: 100%;
    }

        .search-criteria .sc-content .search-by-brand ul li {
            display: inline-block;
            height: 100px;
            margin: 0 5px 9px 0;
            width: 100px;
        }

            .search-criteria .sc-content .search-by-brand ul li:nth-child(6n) {
                margin: 0 0 9px 0;
            }

            .search-criteria .sc-content .search-by-brand ul li a {
                border: 1px solid #C89D56;
                background-color: #FFFFFF;
                display: inline-block;
                height: inherit;
                position: relative;
                width: inherit;
            }

                .search-criteria .sc-content .search-by-brand ul li a img {
                    bottom: 0;
                    left: 0;
                    margin: auto;
                    position: absolute;
                    right: 0;
                    top: 0;
                }

    .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item {
        border-color: #C89D56;
        border-style: solid;
        border-width: 0 1px 0 0;
        background-color: #FFFFFF;
        display: inline-table;
        margin: 0 5px 9px 0;
        padding: 10px;
        width: 220px;
    }

        .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item:nth-child(3n) {
            margin: 0 0 9px 0;
        }

        .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item .pgi-image {
            margin: 10px 0 0 0;
            width: 100%;
        }

            .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item .pgi-image img {
                display: block;
                margin: 0 auto;
                max-width: 180px;
                max-height: 100px;
            }

        .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item .pgi-content {
            margin: 25px 0 0 0;
            width: 100%;
        }

            .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item .pgi-content h4 {
                color: #6B5F4B;
            }

            .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item .pgi-content ul li {
                cursor: copy;
            }

                .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item .pgi-content ul li span {
                    word-break: break-all;
                }

                .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item .pgi-content ul li a {
                    cursor: pointer;
                }

                .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item .pgi-content ul li .fa {
                    color: #C89D56;
                    font-size: 12px;
                }

                .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item .pgi-content ul li > ul {
                    margin: 0 0 0 15px;
                }

.article-item {
    border: 1px solid #CCCCCC;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: table;
    margin: 10px 0;
    padding: 10px;
}

    .article-item:first-child {
        margin: 0 0 10px 0;
    }

    .article-item .article-image {
        border-color: #C89D56;
        border-style: solid;
        border-width: 0 1px 0 0;
        display: table-cell;
        padding: 0 10px 0 0;
        text-align: center;
        vertical-align: middle;
        width: 160px;
    }

    .article-item .article-detail {
        display: table-cell;
        padding: 0 0 0 10px;
        width: 518px;
    }

        .article-item .article-detail .article-detail-section {
            display: table-cell;
            padding: 0 10px;
            vertical-align: middle;
            width: 170px;
        }

            .article-item .article-detail .article-detail-section a.detail-price-button {
                border: 1px solid #C89D56;
                color: #6B5F4B;
                display: block;
                margin: 0 0 10px 0;
                padding: 3px;
                text-align: center;
                width: 100%;
            }

                .article-item .article-detail .article-detail-section a.detail-price-button:last-child {
                    margin: 0;
                }

        .article-item .article-detail .article-detail-item {
            margin: 0 0 10px 0;
        }

            .article-item .article-detail .article-detail-item:nth-child(2n) {
                margin: 0;
            }

            .article-item .article-detail .article-detail-item .adi-title {
                color: #6B5F4B;
                font-weight: 600;
            }

            .article-item .article-detail .article-detail-item .adi-value.oem-numbers {
                position: relative;
            }

            .article-item .article-detail .article-detail-item .adi-value a.oem-list {
                text-decoration: underline;
            }

            .article-item .article-detail .article-detail-item .adi-value .oem-items {
                background-color: #FAFBF7;
                border: 1px solid #C89D56;
                -webkit-border-radius: 10px;
                -moz-border-radius: 10px;
                border-radius: 10px;
                display: none;
                left: -95px;
                padding: 10px;
                position: absolute;
                text-align: center;
                width: 250px;
                z-index: 100;
            }

                .article-item .article-detail .article-detail-item .adi-value .oem-items ul {
                    margin: 0;
                }

                    .article-item .article-detail .article-detail-item .adi-value .oem-items ul li {
                    }

.article-product-detail .pd-image {
    margin: 0 0 20px 0;
    text-align: center;
}

    .article-product-detail .pd-image img {
        max-height: 250px;
        max-width: 100%;
    }

.article-product-detail .pd-attributes {
    border-top: 1px solid #C89D56;
    padding: 10px 0 0 0;
    width: 100%;
}

    .article-product-detail .pd-attributes table {
        margin: 0 auto;
    }

        .article-product-detail .pd-attributes table tr td {
            padding: 0 5px;
        }

            .article-product-detail .pd-attributes table tr td:first-child {
                color: #6B5F4B;
                font-weight: 600;
            }

.return-to-search-page {
    background-color: #6B5F4B;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #FFFFFF !important;
    display: block;
    margin: 20px 0 50px 0;
    padding: 5px;
    text-align: center;
    width: 200px;
}

.brand-content {
    border-color: #C89D56;
    border-style: solid;
    border-width: 1px 0;
    display: table;
    padding: 20px 10px;
    width: 100%;
}

    .brand-content .brand-image {
        display: table-cell;
        padding: 0 10px 0 0;
        vertical-align: middle;
    }

    .brand-content .brand-description {
        display: table-cell;
        padding: 0 0 0 10px;
        vertical-align: middle;
    }

.generic-article-list {
    margin: 20px 0 0 0;
}

    .generic-article-list ul li {
        display: inline-block;
        width: 345px;
    }

        .generic-article-list ul li a {
            color: #6B5F4B !important;
        }

#search-result-modal {
}

    #search-result-modal .modal-lg {
        width: 960px;
    }

        #search-result-modal .modal-lg .modal-content .modal-body table {
            border: 1px solid;
            border-collapse: collapse;
            width: 100%;
        }

            #search-result-modal .modal-lg .modal-content .modal-body table thead tr th {
                background-color: #6B5F4B;
                border: 1px solid #AAAAAA;
                color: #FFFFFF;
                padding: 5px 0;
                text-align: center;
            }

            #search-result-modal .modal-lg .modal-content .modal-body table tbody tr td {
                border: 1px solid #AAAAAA;
                padding: 5px 0 5px 5px;
            }

                #search-result-modal .modal-lg .modal-content .modal-body table tbody tr td a {
                    color: #342D8F;
                }

                    #search-result-modal .modal-lg .modal-content .modal-body table tbody tr td a i {
                        color: #C89D56;
                    }

.last-updated-pl-container {
    min-height: 180px;
    overflow: hidden;
}

    .last-updated-pl-container .lupl-title {
        border: 1px solid #6B5F4B;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
        color: #6B5F4B;
        height: 40px;
        line-height: 40px;
        margin: 0 0 5px 0;
        padding: 0 21px;
    }

    .last-updated-pl-container ul {
        height: 135px;
        overflow: hidden;
        padding: 5px 0 0 10px;
    }

        .last-updated-pl-container ul li {
            margin: 0 0 4px 0;
        }

            .last-updated-pl-container ul li i.fa.fa-check {
                color: #C89D56;
                font-size: 12px;
            }

            .last-updated-pl-container ul li span {
                color: #C89D56;
                font-size: 12px;
                font-style: italic;
            }

    .last-updated-pl-container .not-found {
        font-style: italic;
        padding: 5px 0 0 10px;
    }

@media all and (max-width: 960px) {
    .search-criteria .sc-header {
        height: initial;
    }

        .search-criteria .sc-header .sc-header-left,
        .search-criteria .sc-header .sc-header-right {
            width: 100%;
        }

        .search-criteria .sc-header .sc-header-right {
            text-align: left;
        }


    .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-content-item:nth-child(3) input[type=text],
    .search-criteria .sc-content .search-by-article-code input[type=text] {
        margin: 0 5px 10px 0;
    }

    .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item {
        width: 228px;
    }

        .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item:nth-child(3n),
        .search-criteria .sc-content .search-by-brand ul li:nth-child(6n) {
            margin: 0 5px 9px 0;
        }

        .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item:nth-child(2n) {
            margin: 0 0 9px 0;
        }

    .article-item .article-detail .article-detail-section {
        display: inline-block;
        width: 155px;
    }

        .article-item .article-detail .article-detail-section:last-child {
            display: block;
            width: 100%;
            margin: 10px 0 0 0;
        }

    #search-result-modal .modal-lg {
        width: 100%;
    }
}

@media all and (max-width: 760px) {
    .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-content-item:nth-child(3) input[type=text],
    .search-criteria .sc-content .search-by-article-code input[type=text],
    .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-content-item:nth-child(3) .search-button.motor-option,
    .search-criteria .sc-content .search-by-article-code .search-button {
        width: 100%;
    }

    .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-content-item:nth-child(3) .search-button.motor-option,
    .search-criteria .sc-content .search-by-article-code .search-button {
        margin: 0 0 10px 0;
    }

    .search-criteria .sc-content .simexdoc-tab .simexdoc-tab-content {
        border-top: 1px solid #DDDDDD;
    }

    .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item {
        margin: 0 0 9px 0;
        width: 278px;
    }

        .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item:nth-child(2n),
        .search-criteria .sc-content .search-by-product-group .simexdoc-product-group-item:nth-child(3n) {
            margin: 0 0 9px 0;
        }

    .search-criteria .sc-content .search-by-brand {
        height: 248px;
    }

        .search-criteria .sc-content .search-by-brand ul li {
            height: 117px;
            width: 117px;
        }

    .article-item:first-child {
        margin: 10px 0;
    }

    .article-item .article-detail .article-detail-item:nth-child(2n) {
        margin: 0 0 10px 0;
    }

    #search-result-modal .modal-lg .modal-content .modal-body table thead tr th:nth-child(n+5),
    #search-result-modal .modal-lg .modal-content .modal-body table tbody tr td:nth-child(n+5) {
        display: none;
    }
}
