

/* ==========================================================================
   Author's custom styles
   ========================================================================== */


* {
    outline: none !important;
    text-decoration: none !important;
    color: #fff;
}

a {
    color: #ec2028;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #fff;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #fff;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #fff;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #fff;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #fff;
}

::placeholder { /* Most modern browsers support this now. */
    color: #fff;
}



a.custom-effect {
    position: relative;
    text-decoration: none;
    cursor: pointer;
    padding: 0;
    outline: none;
    overflow: hidden;
    transition: color 0.3s 0.1s ease-out;
    text-align: center;
}

    a.custom-effect::before {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        content: '';
        border-radius: 50%;
        display: block;
        width: 20em;
        height: 20em;
        line-height: 5em;
        left: calc(50% - 10em);
        text-align: center;
        transition: box-shadow 0.5s ease-out;
        z-index: -1;
    }

    a.custom-effect:hover {
        color: #fff;
    }

        a.custom-effect:hover::before {
            box-shadow: inset 0 0 0 10em #000;
        }

html {
    color: #4e4e4e;
    font-size: 1em;
    height: 100%;
    margin: 0;
}

body {
    margin: 0;
    font-family: 'Oswald', Arial, sans-serif;
    height: 100%;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
}

.header-wrapper {
    background-color: #1a1b1b;
    display: block;
    max-width: 866px;
    float: left;
    height:123px;
}

.header-top {
    width: 866px;
    float: left;
    margin-top: 10px;
}

    .header-top ul {
        padding: 0;
        list-style: none;
        float: right;
        border-bottom: 1px solid #ec2028;
        margin-right: 15px;
    }

        .header-top ul li {
            position: relative;
            float: left;
            padding: 0 15px;
        }

            .header-top ul li a {
                font-weight: 300;
                font-size: 18px;
                line-height: 30px;
            }

            .header-top ul li:after {
                border-right: 1px solid #fff;
                content: '';
                position: absolute;
                right: 0;
                height: 10px;
                top: 12px;
            }

            .header-top ul li:last-child:after {
                content: none;
            }

    .header-top a {
        font-size: 22px;
        color: #fff;
    }

.navbar {
    border: 0;
    margin-bottom: 0;
    background: #1a1b1b;
    border-radius: 0;
    background: -moz-linear-gradient(left, #1a1b1b 68%, #1a1b1b 68%, #0b3d51 68%, #0b3d51 68%);
    background: -webkit-linear-gradient(left, #1a1b1b 68%,#1a1b1b 68%,#ffffff 68%,#ffffff 68%);
    background: linear-gradient(to right, #1a1b1b 68%,#1a1b1b 68%,#ffffff 68%,#1a1b1b 68%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1a1b1b', endColorstr='#0b3d51',GradientType=1 );
}

.navbar-brand {
    background-color: #1a1b1b;
    position: absolute;
    height: 123px;
    z-index: 9;
    padding-top:25px;
}

.navbar-header {
    clear: both;
    position: relative;
    width: calc(100% - 15px);
    margin-top: 40px;
	margin-left: 260px;
}

    .navbar-header .dropdown-menu, .navbar-header-mobile .dropdown-menu {
        background-color: #ec2028;
        color: #fff;
        border: 0;
        border-radius: 0;
        width: 100%;
        padding: 20px 10px;
        margin-top: 0;
    }

    .navbar-header button {
        background-color: #ec2028;
        font-size: 22px;
        border: 0;
        color: #fff;
        padding: 5.3px 10px;
        float: left;
    }

        .navbar-header button span {
            float: left;
        }

        .navbar-header button .icon {
            background: url(../..../../content/img/hamburger-menu.png) no-repeat;
            width: 25px;
            height: 18px;
            display: block;
            margin-top: 7px;
            margin-left: 10px;
        }

.header-sub-menu {
    padding: 0;
    list-style: none;
    float: right;
    margin: 0;
    line-height: 37.9px;
}

    .header-sub-menu li {
        float: left;
        padding: 0 14px;
    }

        .header-sub-menu li a {
            font-size: 22px;
            color: #fff;
        }

    .header-sub-menu .language span {
        display: block;
        line-height: 40px;
        font-size: 28px;
        font-weight: 300;
        float: left;
        margin-right:125px;
    }

    .header-sub-menu .language a{
        width: 129px;
        height: 43px;
        line-height: 43px;
        font-size: 22px;
        margin-right: 7px;
        border: 1px solid #fff;
        display: block;
        float: left;
        transition: border-color 0.5s ease-out;
        font-weight: 300;
    }
    .header-sub-menu .search a {
        width: 175px;
        height: 43px;
        line-height: 43px;
        font-size: 22px;
        margin-right: 7px;
        border: 1px solid #fff;
        display: block;
        float: right;
        transition: border-color 0.5s ease-out;
        font-weight: 300;
    }



        .header-sub-menu .language a:hover, .header-sub-menu .search a:hover, .home-corporate a:hover {
            border-color: #000;
        }

    .header-sub-menu .caret {
        background: url(/content/img/arrow-bottom-white-icon.png) no-repeat;
        width: 14px;
        height: 8px;
        border: none;
    }

    .header-sub-menu .search-icon {
        background: url(/content/img/search-icon.png) no-repeat;
        background-size: cover;
        width: 30px;
        height: 31px;
        display: block;
    }

    .header-sub-menu .search input {
        width: 75%;
        color: #fff;
        border: 0;
        border-bottom: 1px solid #fff;
        line-height: 36px;
        font-weight: 300;
        padding-left: 60px;
        background: url(/content/img/search-icon.png) left top no-repeat;
        padding-bottom: 5px;
        font-size: 22px;
    }

#navbar {
    position: absolute;
    top: 122px;
    z-index: 99;
    width: 280px;
	margin-left: 520px;
}

    #navbar ul li a {
        background-color: #ec2028;
        border-bottom: 1px solid #fff;
        color: #fff;
        font-weight: 400;
        font-size: 22px;
    }

        #navbar ul li a:hover {
            background-color: #fff;
            color: #ec2028;
        }
		
	#urunler {
    position: absolute;
    top: 122px;
    z-index: 99;
    width: 280px;
	margin-left: 660px;
}	

    #urunler ul li a {
        background-color: #ec2028;
        border-bottom: 1px solid #fff;
        color: #fff;
        font-weight: 400;
        font-size: 22px;
    }

        #urunler ul li a:hover {
            background-color: #fff;
            color: #ec2028;
        }
.all-product-link {
    text-align: center;
    background-color: #1a1b1b !important;

}
/*Dropdown Menu*/
.dropdown-menu li a {
    padding: 10px 15px;
    background-color: #11516a !important;
}

    .dropdown-menu li a:hover {
        background-color: #0b3d51 !important;
    }

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        margin-left: -1px;
        padding: 0;
        background-color:transparent;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 7px;
        height: 13px;
        margin-top: 10px;
        margin-right: -5px;
        background: url(/content/img/arrow-right-white-icon.png) center right no-repeat;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #fff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
        }

/* Slider*/

#slider .carousel-indicators{
    bottom:10px;
}

    #slider .carousel-indicators li {
        position:relative;
        width: 43px;
        height: 4px;
        border-radius: 0;
        margin:0;
        border: 0;
        background-color: #e5ebf0;
    }


        #slider .carousel-indicators li div {
            position: absolute;
            top: -35px;
            right: 11px;
            text-align: right;
            font-size: 24px;
            display:none;
        }

            #slider .carousel-indicators li.active div{
                display:block;
            }
    #slider .carousel-indicators .active {
        background-color: #ab0f0f;
    }
        .carousel-caption {
    text-align: left;
    text-shadow: none;
    max-width: 30%;
    bottom: 30%;
}

    .carousel-caption h3 {
        font-size: 62px;
        font-weight: bold;
    }

    .carousel-caption div {
        font-weight: 300;
        font-size: 22px;
    }


.full-screen {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Home Block */
#home-block-1 {
    background-color: #f0f0f0;
    padding-top: 30px;
    padding-bottom: 30px;
}

    #home-block-1 .row .col-md-3 {
        top: -23px;
        position: relative;
    }

.home-corporate {
    background: url(../../content/img/home-corporate-bg.jpg) no-repeat;
    background-size: cover;
    padding: 40px 15px 90px;
}

    .home-corporate img {
        max-width: 100%;
    }

    .home-corporate > div {
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        font-size: 16px;
        padding: 30px 10px;
    }

    .home-corporate a {
        width: 175px;
        height: 43px;
        line-height: 41px;
        font-size: 22px;
        margin-right: 7px;
        border: 1px solid #fff;
        color: #fff;
        display: block;
        float: left;
        transition: border-color 0.5s ease-out;
        font-weight: 300;
        z-index: 9;
        margin-left: 10px;
    }

.new-product-list {
    background-color: #fff;
    padding: 10px;
}

    .new-product-list h3 {
        font-size: 20px;
        color: #ec2028;
        font-weight: 700;
        text-align: right;
    }

    .new-product-list .item span {
        display: block;
        font-family: 'Roboto', sans-serif;
        color: #787878;
        text-align: right;
        font-size: 14px;
        margin-bottom: 19.44px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .new-product-list .carousel-control {
        width: 46px;
        height: 46px;
        border: 1px solid #0b3d51;
        background: url(/content/img/arrow-right-blue-icon.png) center center #fff no-repeat;
        transform: rotate(-180deg);
        opacity: 1;
        position: absolute;
        bottom: 0;
        top: auto;
        left: auto;
        right: 50px;
    }

        .new-product-list .carousel-control.right {
            background: url(/content/img/arrow-right-white-icon.png) center center #000 no-repeat;
            transform: rotate(0deg);
            right: 0px;
        }

.home-catalog {
    background: #ec2028;
    color: #fff;
    padding: 10px;
}

    .home-catalog:hover {
        background: #000;;
    }

    .home-catalog h3 {
        font-weight: 700;
        font-size: 24px;
        margin: 0;
        width:150px;
    }

    .home-catalog img {
        font-family: 'Oswald', sans-serif;
        position: relative;
        left: -25px;
    }

    .home-catalog:hover a {
        background-image: url(../../content/img/catalog-icon-hover.png);
    }

    .home-catalog a {
        position: relative;
        z-index: 9;
        font-family: 'Oswald', sans-serif;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        float: right;
        padding-right: 20px;
        background: url(../../content/img/catalog-icon.png) center right no-repeat;
        margin-top: -20px;
    }

.offer-wrapper {
    background: url(../../content/img/offer-bg.png) center right 5px no-repeat #dddddd;
    padding: 0 7px;
    margin-top: 13px;
}

    .offer-wrapper:hover {
        background-color: #545454;
    }

    .offer-wrapper a {
        color: #606060;
        padding: 5px;
        display: block;
    }

    .offer-wrapper:hover a, .offer-wrapper:hover a div {
        color: #fff;
    }

    .offer-wrapper a h3 {
        font-size: 22px;
        margin: 3px 0 7px 3px;
    }

    .offer-wrapper a div {
        font-size: 12px;
        color: #606060;
        margin: 3px;
    }

.home-technic-service {
    background: url(../..../../content/img/home-technic-bg.png) center right 25px no-repeat #4e5458;
    padding: 15px;
    float: left;
    width: 100%;
}

    .home-technic-service h3 {
        font-size: 24px;
        font-weight: 400;
    }

    .home-technic-service > span.desc {
        font-size: 14px;
        max-width: 300px;
        display: block;
        margin-bottom: 20px;
        font-family: 'Roboto', Arial,sans-serif;
    }

    .home-technic-service a {
        background-color: #ec2028;
        color: #fff;
        font-family: 'Roboto', Arial,sans-serif;
        font-size: 16px;
        border: 0;
        width: 118px;
        height: 37px;
        display: block;
        float: left;
        line-height: 37px;
        margin-left: 20px;
        z-index: 9;
    }

        .home-technic-service a.custom-effect:hover::before {
            box-shadow: inset 0 0 0 10em #717578;
        }


.home-dealer {
    background: url(../..../../content/img/home-dealers-bg.png) center right 25px no-repeat #ec2028;
    padding: 15px;
    float: left;
    width: 100%;
}

    .home-dealer h3 {
        font-size: 24px;
        font-weight: 400;
    }

    .home-dealer > span.desc {
        font-size: 14px;
        max-width: 450px;
        display: block;
        margin-bottom: 20px;
        font-family: 'Roboto', Arial,sans-serif;
    }

    .home-dealer a {
        background-color: #fff;
        color: #0b3d51;
        font-family: 'Roboto', Arial,sans-serif;
        font-size: 16px;
        border: 0;
        width: 118px;
        height: 37px;
        display: block;
        float: left;
        line-height: 37px;
        margin-left: 20px;
        z-index: 9;
    }

        .home-dealer a.custom-effect:hover::before {
            box-shadow: inset 0 0 0 10em #717578;
        }

/* Select 2 */
.select2-container {
    float: left;
}

.select2-dropdown {
    border-radius: 0;
    border: 0;
    background-color: #717578;
    font-family: 'Roboto', Arial,sans-serif;
}

.select2-container--default .select2-selection--single {
    border-radius: 0;
    background-color: #717578;
    border: 0;
    height: 37px;
}

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        width: 30px;
        height: 35px;
    }

        .select2-container--default .select2-selection--single .select2-selection__arrow b {
            background: url(/content/img/select-arrow.png) center center no-repeat;
            width: 11px;
            height: 7px;
            border: 0;
        }

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #fff;
        font-family: 'Roboto', Arial,sans-serif;
        line-height: 37px;
        height: 37px;
    }

.select2-results__option {
    border-top: 1px solid #626262;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #4d5256;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ec2028;
}

/* Home Product Category */

#reference-carousel {
    padding-bottom: 60px;
    margin-top:20px;
}

    #reference-carousel .carousel-indicators {
        bottom: 10px;
    }

        #reference-carousel .carousel-indicators li {
            width: 16px;
            height: 16px;
            background-color: #fff;
            border: 2px solid #000;
        }

        #reference-carousel .carousel-indicators .active {
            width: 16px;
            height: 16px;
            margin: 0;
            border: 4px solid #fff;
            background-color: #000;
        }

.home-product-category-wrapper {
    background-color: #929090;
    position: relative;
}

    .home-product-category-wrapper h3 {
        font-weight: 300;
        color: #fff;
        font-size: 28px;
    }

    .home-product-category-wrapper .item a {
        background-color: #fff;
        display: block;
        width: 100%;
        padding: 10px;
        text-align: center;
        padding-bottom: 25px;
        position: relative;
    }

        .home-product-category-wrapper .item a div {
            display: none;
            width: 100%;
            background-color: #000;
            color: #fff;
            height: 50px;
            position: absolute;
            bottom: 0;
            left: 0;
            -webkit-animation-duration: .3s;
            animation-duration: .3s;
        }

        .home-product-category-wrapper .item a:hover div {
            display: block;
        }

        .home-product-category-wrapper .item a div span {
            background: url(../..../..../..../../content/img/home-category-search-icon.png) center right no-repeat;
            font-size: 18px;
            font-family: 'Roboto', Arial,sans-serif;
            padding-right: 30px;
            line-height: 50px;
            display: inline-block;
        }

        .home-product-category-wrapper .item a h4 {
            color: #ec2028;
            font-size: 20px;
            height:45px;
        }

    .home-product-category-wrapper .carousel-control {
        position: absolute;
        opacity: 1;
        box-shadow: none;
        background: url(/content/img/home-product-category-arrow.png) no-repeat;
        width: 12px;
        height: 23px;
        left: auto;
        right: 30px;
        top: -50px;
        background-size: cover;
    }

        .home-product-category-wrapper .carousel-control.right {
            transform: rotate(-180deg);
            right: 0;
        }

.home-video-news-wrapper {
    background-color: #f0f0f0;
    padding: 30px 0;
}

.video-block a {
    display: block;
    cursor: pointer;
}

.news-block.news-list{
    margin-bottom:30px;
} .news-block .new-block-title {
    border-bottom: 2px solid #d6d6d6;
    width: 100%;
    float: left;
}

    .news-block .new-block-title h3 {
        color: #cf2025;
        font-size: 20px;
        float: left;
        margin: 10px 0;
    }

    .news-block .new-block-title a {
        font-family: 'Roboto', Arial,sans-serif;
        font-size: 16px;
        float: right;
        color: #787878;
        margin: 10px 0;
        line-height: 22px;
    }

        .news-block .new-block-title a:hover {
            color: #0b3d51;
        }

.news-block ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

    .news-block ul li {
        width: 100%;
    }

        .news-block ul li a {
            display: block;
            margin: 15px 0 0;
            float: left;
            border-top: 1px solid #d6d6d6;
            padding: 15px 0 0;
            width:100%;
        }

        .news-block ul li:first-child a {
            border: 0;
        }

        .news-block ul li a h5 {
            font-size: 18px;
            color: #ec2028;
            font-weight: 400;
        }

        .news-block ul li a p {
            font-family: 'Roboto', Arial,sans-serif;
            font-size: 14px;
            color: #787878;
        }

.news-detail .news-html {
    font-family: 'Roboto', Arial,sans-serif;
    font-size: 14px;
    margin:30px 0;
    color: #787878;
}

.news-detail .news-html * {
    color:#787878;
}
    footer {
    background-color: #1a1b1b;
}

    footer .container {
        background: url(../../content/img/footer-world-bg.png) center left no-repeat;
        background-size: contain;
    }

.footer-hasdogan, .footer-menu {
    margin-top: 45px;
    float: left;
}

.footer-menu {
    padding: 0 44px;
}

    .footer-menu h5 {
        font-weight: 700;
        font-size: 20px;
        margin-bottom: 30px;
    }

    .footer-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .footer-menu ul li a {
            font-family: 'Roboto', Arial,sans-serif;
            font-size: 14px;
            color: #fff;
            line-height: 30px;
        }

            .footer-menu ul li a:hover {
                text-decoration: underline !important;
            }

    .footer-menu p {
        font-family: 'Roboto', Arial,sans-serif;
        font-size: 14px;
        max-width: 195px;
        margin-bottom: 15px;
    }

.footer-contact-title {
    font-weight: 300;
    font-size: 20px;
    margin-top: 45px;
}


.socialIcon {
    height: 28px;
    width: 28px;
}

.socialLinks {
    overflow: hidden;
    *zoom: 1;
    display: inline-block;
    margin: 30px 0 0 0;
}

    .socialLinks a {
        display: block;
        background: transparent;
        border: 1px solid white;
        float: left;
        height: 57.63px;
        margin: 4px;
        position: relative;
        -moz-transition: background 0.1s linear, border 0.1s linear;
        -o-transition: background 0.1s linear, border 0.1s linear;
        -webkit-transition: background 0.1s linear, border 0.1s linear;
        transition: background 0.1s linear, border 0.1s linear;
        width: calc(25% - 8.5px);
    }

        .socialLinks a .socialIcon {
            left: 50%;
            margin: -14px 0 0 -14px;
            position: absolute;
            top: 50%;
        }

    .socialLinks .facebook:hover {
        background: #3b5998;
        border-color: #3b5998;
    }

    .socialLinks .mail:hover {
        background: #e24e43;
        border-color: #e24e43;
    }

    .socialLinks .twitter:hover {
        background: #55acee;
        border-color: #55acee;
    }

    .socialLinks .youtube:hover {
        background: #e52c28;
        border-color: #e52c28;
    }

    .socialLinks a.custom-effect {
        width: calc(100% - 8px);
        height: 43px;
        line-height: 43px;
        font-size: 22px;
        margin-right: 7px;
        border: 1px solid #fff;
        color: #fff;
        display: block;
        transition: border-color 0.5s ease-out;
        font-weight: 300;
        float: left;
        z-index: 9;
    }

        .socialLinks a.custom-effect:hover {
            color: #1a1b1b;
        }

            .socialLinks a.custom-effect:hover::before {
                box-shadow: inset 0 0 0 10em #fff;
            }

.footer-bottom {
    border-top: 1px solid #4f5152;
    line-height: 75px;
    margin-top: 30px;
}

    .footer-bottom p {
        float: left;
        font-family: 'Roboto', Arial,sans-serif;
        font-size: 16px;
    }

    .footer-bottom a {
        font-family: Comfortaa,Arial,sans-serif;
        float: right;
        font-size: 20px;
        color: #fff;
    }

        .footer-bottom a:hover {
            color: #f3bf00;
        }

.page-content-header {
    background-color: #ec2028;
}

    .page-content-header h3 {
        font-size: 30px;
        color: #fff;
        line-height: 90px;
    }

.bread-crumb-print {
    background-color: #f0f0f0;
}

    .bread-crumb-print a:hover {
        color: #1a1b1b;
    }

.bread-crumb-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .bread-crumb-list li {
        margin-right: 17px;
        float: left;
        position: relative;
    }

        .bread-crumb-list li:after {
            position: absolute;
            right: -10px;
            content: '>';
            color: #787878;
            font-size: 20px;
            line-height: 43px;
        }

        .bread-crumb-list li:last-child:after {
            content: none;
        }

        .bread-crumb-list li a {
            color: #787878;
            font-size: 14px;
            font-family: 'Roboto', Arial,sans-serif;
            line-height: 50px;
        }

.print-page-email {
    float: right;
}

    .print-page-email a {
        font-family: 'Roboto', Arial,sans-serif;
        font-size: 14px;
        color: #787878;
        padding-right: 30px;
        margin-right: 15px;
        line-height: 50px
    }

        .print-page-email a:last-child {
            margin-right: 0;
        }

    .print-page-email .print {
        background: url(../../content/img/page-rint-icon.png) center right 5px no-repeat;
    }

    .print-page-email .post-mail {
        background: url(../../content/img/page-mail-icon.png) center right no-repeat;
    }

.page-content.corporate {
    padding: 30px 0;
}

.page-content.corporate img{
    height:auto;
    margin-bottom:15px;
} .page-content.corporate .vertical-content {
    display: table-cell;
    float: none;
    vertical-align: middle;
}

    .page-content.corporate p {
        color: #787878;
        font-family: 'Roboto', Arial, sans-serif;
        font-size: 16px;
    }

    .page-content.corporate h3 {
        font-family: Oswald, Arial,sans-serif;
        color: #ec2028;
        font-weight: 700;
        font-size: 24px;
        margin-top: 10px;
    }

    .page-content.corporate.dark {
        background-color: #f0f0f0
    }

#photo-gallery {
    max-width: 1064px;
    margin: 0 auto;
    padding-bottom: 75px;
}

    #photo-gallery .carousel-inner > .item {
        max-width: 100%;
        height: 296.94px;
        background-position: center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
        margin: 0 auto;
    }

    #photo-gallery .carousel-control {
        opacity: 1;
        background: none;
        top: auto;
        left: calc(50% - 46px);
        margin-bottom: 15px;
    }

        #photo-gallery .carousel-control.right {
            left: calc(50% - 41px);
        }

    #photo-gallery .carousel-icon-left {
        width: 46px;
        height: 46px;
        border: 1px solid #0b3d51;
        background: url(/content/img/arrow-right-blue-icon.png) center center #fff no-repeat;
        transform: rotate(-180deg);
        opacity: 1;
        position: absolute;
        bottom: 0;
        top: auto;
        left: auto;
        right: 50px;
        box-shadow: none;
    }

    #photo-gallery .carousel-icon-right {
        box-shadow: none;
        width: 46px;
        height: 46px;
        border: 1px solid #000;
        transform: rotate(-180deg);
        opacity: 1;
        position: absolute;
        bottom: 0;
        top: auto;
        left: auto;
        background: url(/content/img/arrow-right-white-icon.png) center center #000 no-repeat;
        transform: rotate(0deg);
        right: 0px;
    }

.page-content.document {
    background: #f0f0f0;
}

    .page-content.document .gallery-images {
        margin-bottom: 20px;
        margin-top: 5px;
        display: block;
        float: left;
        width: 100%;
    }

        .page-content.document .gallery-images a {
            display: block;
            float: left;
            margin-bottom: 1.333%;
            width: 24%;
            margin-left: 1.333%;
            position: relative;
            border: 5px solid #f0f0f0;
            overflow: hidden;
        }

            .page-content.document .gallery-images a:hover {
                border-color: #c5c5c5;
            }

                .page-content.document .gallery-images a:hover > .caption {
                    display: block;
                }

            .page-content.document .gallery-images a:nth-child(4n+1) {
                margin-left: 0;
            }

            .page-content.document .gallery-images a img {
                width: 100%;
            }

    .page-content.document a .caption {
        display: none;
        position: absolute;
        background: url(../..../..../..../../content/img/home-category-search-icon.png) center no-repeat #ec2028;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        height: 50px;
        -webkit-animation-duration: .3s;
        animation-duration: .3s;
    }

.page-content.product-list {
    background-color: #f0f0f0;
}

.product-list-wrapper {
    border: 5px solid #f0f0f0;
    background-color: #fff;
    margin: 15px auto;
}

    .product-list-wrapper:hover {
        border-color: #dadada;
    }

    .product-list-wrapper h3 {
        font-weight: 700;
        color: #ec2028;
        font-size: 20px;
        margin-bottom: 5px;
        padding-left: 10px;
    }

    .product-list-wrapper > span {
        font-family: 'Roboto',Arial,sans-serif;
        font-size: 18px;
        color: #787878;
        display: block;
        padding-left: 10px;
        height:45px;
    }

    .product-list-wrapper .pro-img-center {
        height: 350px;
        display: flex;
        width: calc(100% - 20px);
        margin: 10px;
    }

        .product-list-wrapper .pro-img-center img {
            margin: auto;
            max-width:100%;
			height:300px;
        }

    .product-list-wrapper .pro-list-spec ul {
        padding-left: 25px;
    }

        .product-list-wrapper .pro-list-spec ul li {
            font-size: 14px;
            color: #787878;
            font-family: 'Roboto',Arial,sans-serif;
        }

    .product-list-wrapper .pro-list-link {
        height: 50px;
        display: block;
    }

        .product-list-wrapper .pro-list-link a {
            width: 50%;
            height: 50px;
            color: #fff;
            font-family: 'Roboto',Arial,sans-serif;
            line-height: 50px;
            font-size: 18px;
            display: block;
            text-align: center;
            float: left;
        }

            .product-list-wrapper .pro-list-link a:first-child {
                background-color: #ec2028;
            }

            .product-list-wrapper .pro-list-link a:last-child {
                background-color: #000;
            }

            .product-list-wrapper .pro-list-link a:first-child span {
                display: inline-block;
                background: url(../..../..../..../../content/img/home-category-search-icon.png) no-repeat center;
                height: 25px;
                width: 25px;
                position: relative;
                top: 5px;
                left: 5px;
            }

            .product-list-wrapper .pro-list-link a:hover:first-child span {
                background-image: url(../..../../content/img/home-category-search-icon-hover.png);
            }

            .product-list-wrapper .pro-list-link a:hover:first-child {
                color: #000;
            }

            .product-list-wrapper .pro-list-link a:hover:last-child {
                color: #ec2028;
            }

.category-list {
    background-color: #a5a5a5;
}

    .category-list h3 {
        text-align: center;
        color: #ec2028;
        font-size: 18px;
        width: calc(100% - 20px);
        display: inline-block;
        margin: 10px;
        text-overflow: ellipsis;
        overflow: hidden;
        height: 40px;
    }

    .category-list .category-list-wrapper {
        background-color: #fff;
        margin: 15px auto;
    }

.category-list-wrapper .cat-img-center {
    height: 275px;
    display: flex;
    width: calc(100% - 20px);
    margin: 10px;
}

    .category-list-wrapper .cat-img-center img {
        margin: auto;
		height: 250px;
    }

.category-list-wrapper .cat-list-link {
    height: 50px;
    display: block;
}

    .category-list-wrapper .cat-list-link a {
        width: 100%;
        height: 50px;
        color: #fff;
        background-color: #ec2028;
        font-family: 'Roboto',Arial,sans-serif;
        line-height: 50px;
        font-size: 18px;
        display: block;
        text-align: center;
        float: left;
    }

        .category-list-wrapper .cat-list-link a span {
            display: inline-block;
            background: url(../..../..../..../../content/img/home-category-search-icon.png) no-repeat center;
            height: 25px;
            width: 25px;
            position: relative;
            top: 5px;
            left: 5px;
        }

        .category-list-wrapper .cat-list-link a:hover span {
            background-image: url(../..../../content/img/home-category-search-icon-hover.png);
        }

        .category-list-wrapper .cat-list-link a:hover {
            color: #0b3d51;
        }

.page-content.product-detail {
    margin-bottom:30px;
}
.prod-detail-img-list {
    margin-top: 60px;
}

    .prod-detail-img-list .carousel-control {
        background:none;
        text-shadow:none;
    }

        .prod-detail-img-list .carousel-control span {
            color: #0b3d51;
            font-size: 40px;
            position: absolute;
            top: calc(50% - 20px);
            display: inline-block;
        }

    .prod-detail-img-list .carousel-inner {
        background: url(../../content/img/ce-cert.png) no-repeat left bottom;
    }

    .prod-detail-img-list .carousel-indicators {
        bottom: -10px;
    }

        .prod-detail-img-list .carousel-indicators li {
            width: 16px;
            height: 16px;
            background-color: #ffffff;
            border: 4px solid #a0a0a0;
        }

            .prod-detail-img-list .carousel-indicators li.active {
                width: 16px;
                height: 16px;
                margin: 0;
                border: 3px solid #fff;
                background-color: #cf2025;
            }

    .prod-detail-img-list .carousel-inner {
        display: flex;
        height: 360px;
    }

        .prod-detail-img-list .carousel-inner a {
            margin: 0 auto;
            width: 100%;
        }

            .prod-detail-img-list .carousel-inner a img {
                margin:0 auto;
            }
            .prod-detail-spec {
                color: #787878;
                margin-top: 60px;
            }

    .prod-detail-spec .prod-code {
        color: #787878;
        font-size: 14px;
        font-family: Roboto,Arial,sans-serif
    }

        .prod-detail-spec .prod-code span {
            font-size: 15.5px;
            padding: 2px 5px;
            color: #fff;
            background-color: #cf2025;
            font-weight: 500;
        }

                .prod-detail-spec h3 {
                    font-size: 30px;
                    color: #cf2025;
                }

    .prod-detail-spec .prod-html {
        margin: 30px 0;
    }

        .prod-detail-spec .prod-html * {
            font-family: 'Roboto', Arial, sans-serif;
            color: #787878
        }

        .prod-detail-spec .prod-html ul {
            padding-left: 15px;
        }

        .prod-detail-spec .prod-html h5 {
            font-weight: 300;
        }

.prod-catalog {
    display: block;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    color: #fff;
    text-align: center;
    background-color: #cf2025;
    border: 1px solid #cf2025;
    line-height: 45px;
}

    .prod-catalog:hover {
        background: #fff;
        color: #cf2025;
    }

.prod-order {
    display: block;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    color: #fff;
    text-align: center;
    background-color: #cf2025;
    border: 1px solid #cf2025;
    line-height: 45px;
}

    .prod-order:hover {
        background: #fff;
        color: #cf2025;
    }

.prod-share {
    display: block;
    font-family: 'Roboto', Arial, sans-serif;
    position: relative;
    font-size: 18px;
    color: #787878;
    text-align: center;
    background-color: #fff;
    border: 1px solid #787878;
    line-height: 45px;
    height: 46.8px;
    overflow: hidden;
    
}

    .prod-share .socialLinks {
        z-index: 5;
        float: left;
        width: 100%;
        list-style: none;
        text-align: center;
        position: absolute;
        margin-top: 0;
        display: block;
        height:46.8px;
    }

        .prod-share .socialLinks a {
            height:46.8px;
            margin:0;
            width:25%;

        }

        .prod-share .socialLinks .facebook {
            background: #3b5998;
            border-color: #3b5998;
        }

        .prod-share .socialLinks .mail {
            background: #e24e43;
            border-color: #e24e43;
        }

        .prod-share .socialLinks .twitter {
            background: #55acee;
            border-color: #55acee;
        }

        .prod-share .socialLinks .youtube {
            background: #e52c28;
            border-color: #e52c28;
        }
        
        
        
        
        .prod-share:hover .inner {
    position: relative;
    left: -100%;
    z-index: 10;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

    .prod-share .inner {
        color: #787878;
        position: relative;
        top: 0;
        left: 0;
        z-index: 10;
        float: left;
        width: 100%;
        height: 46.8px;
        background-color: #ddd;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

.product-technic-detail {
    background-color: #f0f0f0;
}

    .product-technic-detail h3 {
        color: #000;
        font-size: 30px;
        padding-left: 15px;
        margin-bottom: 30px;
    }

    .product-technic-detail table {
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: 500;
        color: #787878;
        font-size: 14px;
        width: 100%;
        margin-bottom: 50px;
    }

        .product-technic-detail table th {
            background-color: #cf2025;
            font-size: 14px;
            padding: 0 10px;
            line-height: 40px;
            border-left: 1px solid #a0a0a0;
            border-left: 1px solid #a0a0a0;
        }

        .product-technic-detail table td {
            line-height: 40px;
            padding: 0 10px;
            color: #787878;
            border-left: 1px solid #a0a0a0;
            border-bottom: 1px solid #a0a0a0;
        }

        .product-technic-detail table tr:nth-child(even) {
            background: #fff;
        }

        .product-technic-detail table tr:nth-child(odd) {
            background: #f7f7f7
        }

.product-related-list h3 {
    color: #cf2025;
    font-weight: 400;
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
}

#product-related-carousel {
    height: 202px;
    border: 1px solid #d6d6d6;
    line-height: normal;
}

    #product-related-carousel .carousel-inner {
    }

    #product-related-carousel .item a {
        display: block;
    }

    #product-related-carousel .product-related-img {
        width: 175px;
        height: 175px;
        background-size: contain;
        background-repeat: no-repeat;
        margin-top: 12.5px;
    }

    #product-related-carousel .row-fluid > div:first-child {
        background-color: #fff;
        padding-left: 5%;
    }

    #product-related-carousel .row-fluid > div:last-child {
        border-left: 1px solid #d6d6d6;
        padding-right: 5%;
    }

    #product-related-carousel .row-fluid div:first-child .product-related-name {
        display: table;
        height: 200px;
        float: left;
        padding-left:5px;
    }

    #product-related-carousel .row-fluid div:first-child .product-related-img {
        float: right;
        margin-right: 15px;
    }

    #product-related-carousel .row-fluid div:first-child .product-related-name h4 {
        display: table-cell;
        vertical-align: middle;
        color: #cf2025;
        font-weight: 700;
        font-size: 18px;
        max-width: 300px;
    }

    #product-related-carousel .row-fluid div:first-child .product-related-name span {
        display: block;
        color: #959595;
        font-family: 'Roboto',Arial,sans-serif;
        font-size: 18px;
        font-weight: 400;
        margin-top: 10px;
    }

    #product-related-carousel .row-fluid div:last-child .product-related-img {
        float: left;
        margin-left: 15px;
    }

    #product-related-carousel .row-fluid > div:last-child .product-related-name {
        display: table;
        height: 200px;
        float: right;
    }

        #product-related-carousel .row-fluid > div:last-child .product-related-name h4 {
            display: table-cell;
            vertical-align: middle;
            color: #cf2025;
            font-weight: 700;
            font-size: 18px;
            width: 300px;
        }

        #product-related-carousel .row-fluid > div:last-child .product-related-name span {
            display: block;
            color: #959595;
            font-family: 'Roboto',Arial,sans-serif;
            font-size: 18px;
            font-weight: 400;
            margin-top: 10px;
        }

    #product-related-carousel .carousel-control {
        background: url(/content/img/prod-releated-left-arrow.png) no-repeat center center;
        opacity: 1;
        width: 5%;
    }

        #product-related-carousel .carousel-control.right {
            transform: rotate(-180deg);
        }

.product-tags {
    color: #787878;
    font-family: 'Roboto',Arial,sans-serif;
    font-size: 14px;
    text-align: center;
    margin: 45px 0;
}

    .product-tags span {
        color: #0b3d51;
        font-weight: 700;
        font-family: 'Roboto',Arial,sans-serif;
        font-size: 14px;
    }

.page-content.dealer {
    margin-bottom: 30px;
}

.search-dealer {
    margin-top: -120px;
}

    .search-dealer .search-title {
        background: url(../..../../content/img/home-dealers-bg.png) center right 25px no-repeat #0b3d51;
        padding: 10px;
        float: left;
        width: 100%;
    }

        .search-dealer .search-title h3 {
            font-size: 24px;
            font-weight: 400;
            margin-top: 0;
        }

        .search-dealer .search-title span {
            display: block;
            width: 80%;
        }

.dealer-search-form {
    padding: 10px;
    background-color: #4e5458;
    display: inline-block;
    position: relative;
    z-index: 999;
    width:100%;
}

    .dealer-search-form:before {
        content: '';
        position: absolute;
        width: 43px;
        height: 43px;
        background-color: #4e5458;
        transform: rotate(-45deg);
        top: -12px;
        margin: auto;
        right: 0;
        left: 0;
        z-index: 0
    }

    .dealer-search-form .select2-container {
        margin: 2.5px 0;
    }

    .dealer-search-form button {
        background-color: #fff;
        font-size: 16px;
        color: #4e5458;
        width: 100%;
        border: 0;
        height: 37px;
        margin-top: 2.5px;
    }

.dealer-list-wrapper {
    border: 1px solid #d6d6d6;
    width: 48%;
    float: left;
    padding: 15px;
    margin-top: 2%;
}

    .dealer-list-wrapper:nth-child(2n+1) {
        margin-right: 2%;
    }

    .dealer-list-wrapper h5 {
        font-family: 'Roboto',Arial,sans-serif;
        font-size: 16px;
        color: #787878;
        font-weight: 700;
        margin-top: 0;
        margin-left: 25px;
    }

    .dealer-list-wrapper .dealer-address {
        font-family: 'Roboto',Arial,sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #787878;
        background: url(../../content/img/dealer-address-icon.png) center left no-repeat;
        padding-left: 25px;
    }

    .dealer-list-wrapper .dealer-tel {
        font-family: 'Roboto',Arial,sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #787878;
        background: url(../../content/img/dealer-tel-icon.png) center left no-repeat;
        padding-left: 25px;
        margin: 10px 0;
    }

    .dealer-list-wrapper .dealer-mail {
        font-family: 'Roboto',Arial,sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #787878;
        background: url(../../content/img/dealer-mail-icon.png) center left no-repeat;
        padding-left: 25px;
    }

.contact-map {
    height: 563px;
    width: 100%;
}

.contact-left {
    margin-top: -63px;
}

.contact-right {
    margin-top: -335px;
    margin-bottom: 60px;
}

    .contact-right img {
        width: 100%;
    }

.contact-detail {
    background-color: #1a1b1b;
    color: #fff;
    display: inline-block;
}

    .contact-detail > div {
        border-bottom: 1px solid #252525;
        padding: 10px 15px 13px 50px;
    }

        .contact-detail > div:last-child {
            border: 0;
            margin-bottom: 0;
        }

    .contact-detail .contact-address {
        font-family: 'Roboto',Arial,sans-serif;
        font-size: 14px;
        color: #787878;
        background: url(../../content/img/contact-address-icon.png) top .8em left 15px no-repeat;
        color: #fff;
    }

    .contact-detail .contact-tel {
        font-family: 'Roboto',Arial,sans-serif;
        font-size: 14px;
        color: #787878;
        background: url(../../content/img/contact-tel-icon.png) top .8em left 19px no-repeat;
        color: #fff;
        margin: 10px 0;
    }

    .contact-detail .contact-mail {
        font-family: 'Roboto',Arial,sans-serif;
        font-size: 14px;
        color: #787878;
        background: url(../../content/img/contact-mail-icon.png) top 1em left 21px no-repeat;
        color: #fff;
        margin: 10px 0;
    }

    .contact-detail a {
        color: #fff;
    }

        .contact-detail a:hover {
            color: #ec2028;
        }

    .contact-detail .contact-fax {
        font-family: 'Roboto',Arial,sans-serif;
        font-size: 14px;
        color: #787878;
        background: url(../../content/img/contact-fax-icon.png) top .8em left 20px no-repeat;
        margin: 10px 0;
        color: #fff;
    }

.home-technic-service.contact-service, .home-dealer.contact-dealer {
    margin-top: 15px;
}

    .home-technic-service.contact-service h3, .home-dealer.contact-dealer h3 {
        margin-top: 0;
    }

.search-technic-services {
    margin-top: -120px;
}

    .search-technic-services .search-title {
        background: url(../..../../content/img/home-technic-bg.png) center right 25px no-repeat #ec2028;
        padding: 10px;
        float: left;
        width: 100%;
    }

        .search-technic-services .search-title h3 {
            font-size: 24px;
            font-weight: 400;
            margin-top: 0;
        }

        .search-technic-services .search-title span {
            display: block;
            width: 80%;
            margin-bottom: 20px;
        }

.technic-services-search-form {
    padding: 10px;
    background-color: #4e5458;
    display: inline-block;
    position: relative;
    z-index: 999;
    width:100%;
}

    .technic-services-search-form:before {
        content: '';
        position: absolute;
        width: 43px;
        height: 43px;
        background-color: #4e5458;
        transform: rotate(-45deg);
        top: -12px;
        margin: auto;
        right: 0;
        left: 0;
        z-index: 0
    }

    .technic-services-search-form .select2-container {
        margin: 2.5px 0;
    }

    .technic-services-search-form button {
        background-color: #fff;
        font-size: 16px;
        color: #4e5458;
        width: 100%;
        border: 0;
        height: 37px;
        margin-top: 2.5px;
    }

.contact-title {
    background: url(../../content/img/contact-form-img.png) no-repeat;
    background-size: cover;
    width: 100%;
    display: inline-block;
    padding-left: 15px;
}

    .contact-title h3 {
        font-weight: 700;
        color: #fff;
        font-size: 24px;
    }

    .contact-title span {
        font-size: 14px;
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: 400;
        margin-bottom: 10px;
        display: block;
    }


.contact-form {
    margin-top: 30px;
}

    .contact-form input, .contact-form textarea {
        border: 1px solid #999999;
        color: #787878;
        font-size: 14px;
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: 400;
        width: 100%;
        height: 40px;
        padding-left: 10px;
        padding-right: 30px;
    }

        .contact-form input[type=text]::-webkit-input-placeholder, .contact-form input[type=email]::-webkit-input-placeholder, .contact-form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */ /* Firefox 19+ */ /* IE 10+ */
            color: #787878;
        }



        .contact-form input#adisoyadi {
            background: url(../../content/img/inpt-user-icon.png) center right 5px no-repeat;
        }

        .contact-form input#telefon {
            background: url(../../content/img/inpt-tel-icon.png) center right 5px no-repeat;
        }

        .contact-form input#email {
            background: url(../../content/img/inpt-email-icon.png) center right 5px no-repeat;
        }

        .contact-form input#sehir {
            background: url(../../content/img/inpt-city-icon.png) center right 5px no-repeat;
        }

        .contact-form input#sirket {
            background: url(../../content/img/inpt-company-icon.png) center right 5px no-repeat;
        }

        .contact-form input#ulke {
            background: url(../../content/img/inpt-country-icon.png) center right 5px no-repeat;
        }

        .contact-form textarea#mesaj {
            background: url(../../content/img/inpt-message-icon.png) top 5px right 5px no-repeat;
            resize: none;
            height: 100px;
        }

    .contact-form button {
        background-color: #ec2028;
        color: #fff;
        font-weight: 300;
        border: 0;
        width: 175px;
        height: 43px;
    }

.contact-info {
    padding-left: 25px;
    background: url(../../content/img/contact-info-icon.png) center left no-repeat;
    color: #ec2028;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    line-height: 43px;
}

/* Checbox Radio Styles */
.form-check {
    float: left;
    width: 50%;
    height: 40px;
}

input[type="checkbox"], input[type="radio"] {
    position: absolute;
    right: 9000px;
}

    /*Check box*/
    input[type="checkbox"] + .label-text {
        color: #787878;
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: 400;
        font-size: 14px;
    }

        input[type="checkbox"] + .label-text:hover {
            color: #0b3d51;
        }

        input[type="checkbox"] + .label-text:before {
            content: "";
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            width: 12px;
            height: 12px;
            display: inline-block;
            margin-right: 5px;
            border: 1px solid #000;
        }

    input[type="checkbox"]:checked + .label-text:before {
        content: "";
        background-image: url(../..../../content/img/contact-form-checked-icon.png);
        background-repeat: no-repeat;
        background-position: center;
        background-color: #ec2028;
        border-color: #ec2028;
        animation: effect 250ms ease-in;
    }

    input[type="checkbox"]:disabled + .label-text {
        color: #aaa;
    }

        input[type="checkbox"]:disabled + .label-text:before {
            content: "\f0c8";
            color: #ccc;
        }

    /*Radio box*/

    input[type="radio"] + .label-text {
        color: #787878;
        font-family: 'Roboto', Arial, sans-serif;
        font-weight: 400;
        font-size: 18px;
    }

        input[type="radio"] + .label-text:hover {
            color: #0b3d51;
        }

        input[type="radio"] + .label-text:before {
            content: "";
            speak: none;
            font-style: normal;
            font-weight: normal;
            font-variant: normal;
            text-transform: none;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            width: 16px;
            height: 16px;
            display: inline-block;
            margin-right: 5px;
            border: 1px solid #000;
            position: relative;
            top: 1px;
        }

    input[type="radio"]:checked + .label-text:before {
        content: "";
        background-image: url(../..../../content/img/contact-form-checked-icon.png);
        background-repeat: no-repeat;
        background-position: center;
        background-color: #ec2028;
        border-color: #ec2028;
        animation: effect 250ms ease-in;
    }

    input[type="radio"]:disabled + .label-text {
        color: #aaa;
    }

        input[type="radio"]:disabled + .label-text:before {
            content: "\f111";
            color: #ccc;
        }

/*Radio Toggle*/


.toggle input[type="radio"] + .label-text:before {
    content: "\f204";
    font-family: "FontAwesome";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 10px;
}

.toggle input[type="radio"]:checked + .label-text:before {
    content: "\f205";
    color: #16a085;
    animation: effect 250ms ease-in;
}

.toggle input[type="radio"]:disabled + .label-text {
    color: #aaa;
}

    .toggle input[type="radio"]:disabled + .label-text:before {
        content: "\f204";
        color: #ccc;
    }


@keyframes effect {
    0% {
        transform: scale(0);
    }

    25% {
        transform: scale(1.3);
    }

    75% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}


/* Order Form */
.order-form > span {
    font-weight: 400;
    color: #787878;
    font-size: 16px;
    font-family: 'Roboto', Arial, sans-serif;
    display: block;
    max-width: 750px;
    margin: 25px 0px 20px;
}

.order-form h3 {
    font-size: 22px;
    color: #ec2028;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 20px;
}

.order-form input, .order-form textarea {
    border: 1px solid #999999;
    color: #787878;
    font-size: 14px;
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    width: 100%;
    height: 40px;
    padding-left: 10px;
    padding-right: 30px;
}

.order-form textarea {
    height: 150px;
}

.order-form .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #999999;
}

    .order-form .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #787878;
    }

    .order-form .select2-container--default .select2-selection--single .select2-selection__arrow b {
        background-image: url(/content/img/order-form-select-arrow.png);
    }

.order-form input[type=text]::-webkit-input-placeholder, .order-form input[type=email]::-webkit-input-placeholder, .order-form textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */ /* Firefox 19+ */ /* IE 10+ */
    color: #787878;
}

.order-form button {
    background-color: #ec2028;
    color: #fff;
    font-weight: 300;
    border: 0;
    width: 175px;
    height: 43px;
}


.order-form .form-group > label {
    color: #787878;
    font-size: 18px;
    float: left;
    font-family: 'Roboto', Arial,sans-serif;
    font-weight: 400;
}

.order-form .form-check {
    float: left;
    width: auto;
    height: auto;
    margin-left: 15px;
}

.mobile, .navbar-header-mobile {
    display: none !important;
}

.none-mobile {
    display: block;
}

.page-top-scroll {
    background: url(../../content/img/page-top-icon.png) center no-repeat #ec2028;
    width: 42px;
    height: 84px;
    display: block;
    position: absolute;
    right: -45px;
    top: -15px;
    z-index: 9999;
}

footer > .container > .row{
    position:relative;
}

    .page-top-scroll span {
        font-weight:300;
        font-size:20px;
        display: block;
        position: relative;
        bottom: -90px;
        left:5px;
        writing-mode: tb-rl;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
        white-space: nowrap;
    }

.show {
    visibility: visible !important;
}
.dealers-map{
    height:590px;
    position:relative;
}

.mapsIframe {
    height:100%;
    width:100%;
}

#message_error {
    color: #ed1620;
    background-color: #f2dede;
    border: 1px solid #efd7d9;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    clear: both;
}

#message_success {
    color: #468847;
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    padding: 10px;
    font-weight: bold;
    font-size: 16px;
    clear: both;
}

.loading {
    position: absolute;
    width: 100%;
    background: url(../../content/img/loading.gif) no-repeat center center #fff;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 10;
    opacity: 0.5;
    display: none;
}

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    margin-top: 6px;
    display: inline-block;
    margin-top: 0px;
    margin-right: 0px;
    width: 9px;
    height: 9px;
    background-repeat: no-repeat !important;
    background-image: url("../../content/img/remove-icon-small.png") !important;
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20);
    margin-top: 5px
    /* -webkit-appearance: none; */
}

#siparis-form ,#iletisim-form{
    position:relative;
}

.search-not-found *{
    font-family: 'Roboto',Arial,sans-serif;
    font-weight: 400;
    color: #787878;
}

    .search-not-found h5 {
        font-weight: 700;
        font-size: 24px;
        color: #787878;
    }

    .search-not-found p span {
        font-weight: 700;
        font-size: 16px;
        color: #787878;
        display:block;
        width:100%;
    }

.page-not-found {
    background-color: #0b3d51;
}

.page-not-found-wrapper {
    margin:45px 0;
}
.page-not-found-wrapper h1 {
    color: #ec2028;
    font-size: 230px;
    text-align: center;
    font-weight: 700;
}

.page-not-found-wrapper p {
    color:#fff;
    font-family:'Roboto',Arial,sans-serif;
    font-size:24px;
    text-align:center;
    width:100%;
}

    .page-not-found-wrapper p span {
        font-family: 'Roboto',Arial,sans-serif;
        width: 100%;
        color: #ec2028;
        display: block;
        font-size:15px;
    }

.page-not-found-wrapper a {
    width: 175px;
    height: 43px;
    line-height: 43px;
    font-size: 22px;
    margin-right: 7px;
    border: 1px solid #fff;
    display: block;
    transition: border-color 0.5s ease-out;
    font-weight: 300;
    text-align: center;
    color: #fff;
    margin: 0 auto;
}
div.error input {
    border-color: #ff0000;
}

.marker-custom {
    width: 20px;
    height: 20px;
    border: 5px solid #ed1620;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #e52c28;
    z-index: 10;
    overflow:inherit !important;
}

    .marker-custom:after {
        content: '';
        position: absolute;
        height: 50px;
        width: 50px;
        top: -20.5px;
        left: -20px;
        z-index: 2;
        opacity: 0;
        border: 10px solid #ff0000;
        background: transparent;
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
        -webkit-animation: flash 2s ease-out;
        -moz-animation: flash 2s ease-out;
        animation: flash 2s ease-out;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(0);
        opacity: 0.0;
    }

    25% {
        -moz-transform: scale(0);
        opacity: 0.1;
    }

    50% {
        -moz-transform: scale(0.1);
        opacity: 0.3;
    }

    75% {
        -moz-transform: scale(0.5);
        opacity: 0.5;
    }

    100% {
        -moz-transform: scale(1);
        opacity: 0.0;
    }
}

@-webkit-keyframes
"flash" {
    0%

{
    -webkit-transform: scale(0);
    opacity: 0.0;
}

25% {
    -webkit-transform: scale(0);
    opacity: 0.1;
}

50% {
    -webkit-transform: scale(0.1);
    opacity: 0.3;
}

75% {
    -webkit-transform: scale(0.5);
    opacity: 0.5;
}

100% {
    -webkit-transform: scale(1);
    opacity: 0.0;
}

}
.bounce {
    -webkit-animation: bounce 2s linear;
    animation: bounce 1s linear infinite -0.75s;
}
@-webkit-keyframes
"bounce"{
0%  {
    -webkit-transform: translateY(0);
}

50% {
    -webkit-transform: translateY(-30px);
}

100% {
    -webkit-transform: translateY(0px);
}
}


.page-content.catalog-list {
    background-color: #f0f0f0;
}

.catalog-list-wrapper {
    border: 5px solid #f0f0f0;
    margin: 15px auto;
}

    .catalog-list-wrapper a {
        display: block;
    }

        .catalog-list-wrapper a:hover {
            border-color: #dadada;
        }

    .catalog-list-wrapper .catalog-name {
        font-family: 'Oswald',Arial,sans-serif;
        font-size: 20px;
        color: #787878;
        display: block;
        padding-left: 0;
        font-weight: 400;
        text-align: center;
    }

        .catalog-list-wrapper .catalog-name > span {
            font-family: 'Oswald',Arial,sans-serif;
            font-size: 20px;
            color: #787878;
            display: block;
            font-weight: 300;
        }

    .catalog-list-wrapper .catalog-img-center {
        height: 300px;
        display: flex;
        width: 100%;
    }

        .catalog-list-wrapper .catalog-img-center img {
            margin: auto;
        }
@media screen and (max-width: 1300px) {
    .carousel-caption h3{
        font-size:40px;
    }
    .carousel-caption div {
        font-size: 18px;
    }
}
    @media screen and (max-width: 480px) {
        .navbar-brand {
            padding-top: 10px;
        } #reference-carousel .carousel-inner .item .row-fluid > div:not(:first-child), .print-page-email {
            display: none;
        }

        .contact-form button, .home-catalog h3 {
            width: 100%;
        }

        .search-dealer .search-title {
            padding-bottom: 20px;
        }

        #product-related-carousel .row-fluid > div:last-child {
            display: none;
        }

        .navbar-toggle[aria-expanded=true] > .icon-bar:nth-of-type(2) {
            top: 9px;
            transform: rotate(45deg);
        }

        .navbar-toggle[aria-expanded=true] > .icon-bar:nth-of-type(3) {
            background-color: transparent !important;
        }

        .navbar-toggle[aria-expanded=true] > .icon-bar:nth-of-type(4) {
            top: -7px;
            transform: rotate(-45deg);
        }

        .mobile, .navbar-header-mobile {
            display: block !important;
        }

        .dealers-map {
            height: 300px;
        }

        .header-top, .none-mobile, .navbar-header {
            display: none !important;
        }

        .header-wrapper {
            width: 100%;
            height: auto;
        }

        .navbar-brand {
            position: relative;
            width: 100%;
            height: 90px;
        }

            .navbar-brand > img {
                margin: auto;
            }

        .navbar-header-mobile {
            clear: both;
            position: relative;
            width: calc(100% - 15px);
            margin-top: 30px;
        }

        .navbar-toggle {
            margin-left: 15px;
            float: left;
            padding: 7px 10px;
        }

            .navbar-toggle .icon-bar {
                background-color: #fff;
                position: relative;
            }

            .navbar-toggle .icon-bar {
                width: 25px;
            }

                .navbar-toggle .icon-bar + .icon-bar {
                    margin-top: 6px;
                }

        .mobile-menu-text {
            font-weight: 300;
            font-size: 22px;
            position: absolute;
            top: -1px;
            left: 40px;
        }

        .header-sub-menu {
            line-height: 50px;
        }

            .header-sub-menu li {
                display: flex;
                height: 50px;
            }

            .header-sub-menu .search-icon {
                margin: auto;
            }

        #navbar-mobile {
            position: relative;
            clear: both;
        }

            #navbar-mobile ul > li > a, #navbar-mobile ul > li > a:focus {
                color: #fff;
                font-size: 22px;
                text-align: left;
                border-bottom: 1px solid #101010;
                clear: both;
                background: #1a1b1b;
            }

            #navbar-mobile .dropdown-submenu > a:after {
                content: none;
            }

            #navbar-mobile .dropdown-submenu a,
            #navbar-mobile .dropdown-submenu a:focus {
                background-color: #ec2028;
            }

            #navbar-mobile .dropdown-submenu > .dropdown-menu {
                margin: 0;
                border: 0;
            }

            #navbar-mobile ul > li > a span {
                background: url(../..../../content/img/hamburger-menu.png) no-repeat;
                width: 25px;
                height: 18px;
                display: inline-block;
                margin-top: 7px;
                margin-left: 10px;
            }

        .dropdown-submenu:hover > .dropdown-menu {
            left: 0;
            position: relative;
            width: 100%;
        }

        #top-menu ul ul li a {
            background-color: #0d2a35 !important;
        }

        .header-sub-menu .language span {
            width: 100%;
            text-align: center;
        }

        .header-sub-menu .language a, .header-sub-menu .search a {
            width: 100%;
            margin: 10px 0 0;
        }

        .navbar-header-mobile .dropdown-menu {
            top: 50px;
            padding-top: 10px;
            left: 0;
            width: calc(100% + 15px);
        }

        .header-sub-menu .search input {
            width: 100%;
        }
        /* Sonraki */
        .carousel-caption {
            max-width: 90%;
            left: 10%;
            right: 10%;
        }

            .carousel-caption h3 {
                font-size: 35px;
            }

            .carousel-caption div {
                font-size: 12px;
            }

        #home-block-1 {
            margin-top: auto;
        }

        .home-corporate, .new-product-list, .home-catalog, .offer-wrapper, .home-technic-service, .home-dealer, .video-block {
            margin: 15px -15px;
        }

        .home-technic-service, .home-dealer {
            width: calc(100% + 30px);
        }

        #home-block-1 .row .col-md-3 {
            top: auto;
        }

        .home-catalog {
            text-align: center;
        }

            .home-catalog img {
                left: auto;
                margin: 0 auto;
                display: flex;
            }

            .home-catalog a {
                float: none;
            }

        .home-product-category-wrapper h3 {
            font-size: 24px;
            margin-left: 15px;
        }

        .home-product-category-wrapper .carousel-control {
            display: none;
        }

        .home-product-category-wrapper .item a {
            margin-bottom: 15px;
        }

        .socialLinks {
            width: 100%;
            margin-top: 90px;
        }

        .page-content {
            padding-bottom: 30px;
        }

        footer .col-md-9, .footer-contact-title {
            display: none;
        }

        .footer-bottom {
            line-height: inherit;
            text-align: center;
            padding: 10px 0;
        }

            .footer-bottom p {
                font-size: 13px;
            }

            .footer-bottom a {
                float: none;
            }

        #slider .carousel-indicators {
            bottom: 0;
        }

        .page-top-scroll {
            right: 0;
            left: 0;
            margin: 0 auto;
        }

            .page-top-scroll span {
                display: none;
            }

        .print-page-email, .page-content-header h3, .bread-crumb-list, .order-form {
            padding: 0 15px;
        }

        .print-page-email {
            float: left;
        }

        .dealer-list-wrapper .dealer-tel, .dealer-list-wrapper .dealer-address, .dealer-list-wrapper .dealer-mail {
            font-size: 12px;
        }

        .dealer-list-wrapper {
            width: 100%;
        }

            .dealer-list-wrapper:nth-child(2n+1) {
                margin-right: 0;
            }

        .search-dealer, .search-technic-services {
            margin-top: 0;
            margin: 0 -15px;
        }

        .page-content.document .gallery-images a {
            width: 49%;
            margin-bottom: 2%;
            margin-left: 2%;
        }

            .page-content.document .gallery-images a:nth-child(2n+1) {
                margin-left: 0;
            }

        .contact-right {
            margin-top: 15px;
        }

        .home-technic-service.contact-service, .home-dealer.contact-dealer {
            margin: 7.5px -15px;
        }

        .home-dealer.contact-dealer, .order-form {
            margin-bottom: 30px;
        }

        .page-content.corporate .vertical-content {
            display: block;
        }

            .page-content.corporate .vertical-content img, .order-form button {
                width: 100%;
            }

        .page-content.corporate h3, .product-technic-detail h3 {
            text-align: center;
        }

        #photo-gallery .carousel-control {
            width: calc(50% - 92px);
        }

        .prod-catalog, .prod-order, .prod-share {
            margin-bottom: 15px;
        }

        #product-related-carousel .row-fluid div:first-child .product-related-name h4 {
            font-size: 14px;
            max-width: 200px;
        }

        #product-related-carousel .row-fluid div:first-child .product-related-name span {
            font-size: 12px;
        }

        #product-related-carousel .product-related-img {
            width: 125px;
            height: 125px;
            margin-top: 45px;
        }

        .product-technic-detail table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }

        .product-list-wrapper {
            border-color: #fff;
        }

        .page-content-header h3 {
            line-height: 40px;
        }
    }

    @media screen and (max-width: 400px) {
        #product-related-carousel .row-fluid div:first-child .product-related-name h4 {
            max-width: 160px;
        }
    }

    @media screen and (max-width: 360px) {
        .product-related-list {
            display: none;
        }
    }

    @media print {
        .navbar, #videoModal, footer, .bread-crumb-print {
            display: none;
        }

        .example-print {
            display: block;
        }
    }