html,
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #42413d;
}

a {
    color: #0f9585;
    text-decoration: none;
}

    a:hover {
        color: #0a675c;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #42413d;
}

input,
select,
textarea {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    outline: none;
    color: #42413d;
}

picture {
    display: block;
    margin: 0;
}

.ink-button {
    background: #ffffff;
    color: #0f9585;
    border: 1px solid #c2c1bd;
    font-weight: 300;
    text-transform: uppercase;
    border-radius: 3px;
    background-clip: padding-box;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -webkit-appearance: none !important;
    /*i.fa {
	margin-right: .5em;
}*/
}

    .ink-button:focus,
    .ink-button:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
        border: 1px solid #0f9585;
        color: #ffffff;
        background: #0f9585;
    }

    .ink-button.full-width {
        width: 100%;
    }

    .ink-button i.fa-angle-right {
        margin-right: .0;
        margin-left: .5em;
    }

    .ink-button.dark,
    .ink-button.main-action {
        background: #0f9585;
        color: #ffffff;
        border: 1px solid #0f9585;
    }

        .ink-button.dark:focus,
        .ink-button.main-action:focus,
        .ink-button.dark:hover,
        .ink-button.main-action:hover {
            border: none;
            background: #0c7568;
            border: 1px solid #0c7568;
        }

    .ink-button.light {
        background: none;
        color: #0f9585;
        border: 1px solid #0f9585;
    }

    .ink-button.disabled,
    .ink-button[disabled] {
        zoom: 1;
        filter: alpha(opacity=30);
        opacity: 0.3;
        pointer-events: none;
    }

.ink-form .ink-button {
    margin: 0;
}

.ink-alert.block.success {
    border: 1px solid #0f9585;
}

    .ink-alert.block.success > h4 {
        background-color: #0f9585;
        background-color: rgba(15, 149, 133, 0.3);
        zoom: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4d0f9585, endColorstr=#4d0f9585)";
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4d0f9585, endColorstr=#4d0f9585);
        color: #0a675c;
    }

    .ink-alert.block.success .ink-dismiss {
        color: #0a675c;
    }

.ink-alert.block.info {
    border: 1px solid #6f6d66;
}

    .ink-alert.block.info > h4 {
        background-color: #6f6d66;
        background-color: rgba(111, 109, 102, 0.1);
        zoom: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1a6f6d66, endColorstr=#1a6f6d66)";
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#1a6f6d66, endColorstr=#1a6f6d66);
        color: #6f6d66;
    }

    .ink-alert.block.info .ink-dismiss {
        color: #54534e;
    }

.ink-tooltip > .content {
    background: #42413d;
    color: #ffffff;
}

.ink-tooltip > .arrow.down {
    border-top: 6px solid #42413d;
    margin-left: -6px;
}

.ink-tooltip {
    max-width: 200px !important;
}

.radio-tabs {
    border-bottom: 1px solid #c2c1bd;
    padding-left: .75em;
}

    .radio-tabs:after {
        content: "";
        display: table;
        clear: both;
    }

    .radio-tabs .tab {
        float: left;
    }

        .radio-tabs .tab label {
            background: #f3f2ed;
            padding: .5em 1em;
            border: 1px solid #c2c1bd;
            margin-left: -1px;
            position: relative;
            display: block !important;
            left: 1px;
            bottom: -1px;
            margin: 0 0 0 -1px !important;
            font-size: 1.1em;
            text-transform: uppercase;
            color: #918f87;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
        }

            .radio-tabs .tab label:hover {
                color: #42413d;
            }

            .radio-tabs .tab label .badge {
                display: inline-block;
                background: #6f6d66;
                color: #ffffff;
                padding: 0 .5em;
                border-radius: 20px;
                background-clip: padding-box;
                font-size: .8em;
                margin-left: .25em;
            }

        .radio-tabs .tab [type=radio] {
            display: none;
        }

            .radio-tabs .tab [type=radio]:checked ~ label {
                background: white;
                border-bottom: 1px solid #ffffff;
                z-index: 2;
                color: #42413d;
            }

                .radio-tabs .tab [type=radio]:checked ~ label .badge {
                    background: #42413d;
                }

        .radio-tabs .tab:first-child label {
            border-radius: 3px 0 0 0;
            background-clip: padding-box;
        }

        .radio-tabs .tab:last-child label {
            border-radius: 0 3px 0 0;
            background-clip: padding-box;
        }

@media screen and (max-width: 1260px) {
    .radio-tabs .tab label {
        font-size: .9em;
        padding: .5em .75em;
    }
}

@media screen and (max-width: 640px) {
    .radio-tabs .tab label {
        font-size: .8em;
        padding: .5em;
    }

        .radio-tabs .tab label .badge {
            display: none;
        }
}

.back-to-top {
    visibility: hidden;
    filter: alpha(opacity=0);
    opacity: 0;
    position: fixed;
    z-index: 100000;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.8);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ccffffff, endColorstr=#ccffffff)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ccffffff, endColorstr=#ccffffff);
    border-radius: 0 3px 0 0;
    background-clip: padding-box;
    padding: .5em;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

    .back-to-top span {
        display: none;
    }

@media screen and (min-width: 960px) {
    .back-to-top.is-visible {
        visibility: visible;
        filter: alpha(opacity=100);
        opacity: 1;
    }
}

.negative-top-margin {
    margin-top: -2.5em;
}

@media screen and (max-width: 1260px) {
    .negative-top-margin {
        margin-top: -2.2em;
    }
}

@media screen and (max-width: 960px) {
    .negative-top-margin {
        margin-top: -2em;
    }
}

@media screen and (max-width: 640px) {
    .negative-top-margin {
        margin-top: -1.8em;
    }
}

@media screen and (max-width: 320px) {
    .negative-top-margin {
        margin-top: -1.5em;
    }
}

.no-bottom-margin {
    margin-bottom: 0 !important;
}

.bsu-target {
    height: 72px;
    height: 36px;
}

@media screen and (max-width: 960px) {
    .bsu-target {
        height: 36px;
    }
}

#bsu-v2-ctn #bsu-v2-subbsu {
    background-color: #6f6d66 !important;
    border-bottom: none !important;
}

    #bsu-v2-ctn #bsu-v2-subbsu .bsu-v2-menu li a,
    #bsu-v2-ctn #bsu-v2-subbsu .bsu-v2-menu li a span {
        font-family: 'Roboto' !important;
        font-weight: 400 !important;
        color: #d6d3c5 !important;
        display: block;
        padding: 0;
    }

        #bsu-v2-ctn #bsu-v2-subbsu .bsu-v2-menu li a:hover span:hover,
        #bsu-v2-ctn #bsu-v2-subbsu .bsu-v2-menu li a span:hover span:hover {
            color: #ffffff !important;
        }

        #bsu-v2-ctn #bsu-v2-subbsu .bsu-v2-menu li a span {
            padding: 0 15px;
        }

#bsu-placeholder {
    height: 60px;
    position: relative;
}

.bsu-wrapper {
    background-color: #000;
}

body.ink-drawer .drawer {
    background: #353431;
    z-index: 99999;
}

@media screen and (max-width: 960px) {
    body.ink-drawer .drawer {
        top: 60px;
    }
}

body.ink-drawer .drawer .ink-navigation > ul.menu li a {
    border-bottom: 1px solid #6f6d66;
    color: #d6d3c5;
    outline: none;
    text-align: left;
}

    body.ink-drawer .drawer .ink-navigation > ul.menu li a:hover {
        color: #ffffff;
    }

    body.ink-drawer .drawer .ink-navigation > ul.menu li a .fa {
        float: right;
        line-height: 1.7;
    }

body.ink-drawer .drawer .ink-navigation > ul.menu li.active a,
body.ink-drawer .drawer .ink-navigation > ul.menu li.active a:hover {
    color: #ffffff;
    background: #6f6d66;
    text-decoration: none;
}

body.ink-drawer .drawer .ink-navigation > ul.menu li.search {
    padding: 1em;
}

    body.ink-drawer .drawer .ink-navigation > ul.menu li.search .control-group {
        position: relative;
        margin-bottom: 0;
    }

        body.ink-drawer .drawer .ink-navigation > ul.menu li.search .control-group input {
            border: none;
            color: #42413d;
            border-radius: 0px;
            background-clip: padding-box;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        body.ink-drawer .drawer .ink-navigation > ul.menu li.search .control-group .ink-button {
            position: absolute;
            top: 0;
            right: 0;
            height: 37px;
            padding: 8px;
            margin: 0;
            border: none;
            background: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            color: #6f6d66;
        }

            body.ink-drawer .drawer .ink-navigation > ul.menu li.search .control-group .ink-button:hover {
                background: none;
                color: #42413d !important;
            }

body.ink-drawer .drawer .ink-navigation > ul.menu li.separator-above {
    border-top: 2px solid #6f6d66;
}

body.ink-drawer .drawer .ink-navigation > ul.menu li .submenu {
    background: #42413d;
}

.sell-car-home {
    background: #6f6d66;
    padding: 1.5em 0;
    color: #ffffff;
    text-align: left;
}

@media screen and (max-width: 640px) {
    .sell-car-home {
        padding: 1.5em 0 0 0;
        text-align: center;
    }

        .sell-car-home .column-group > div:after {
            content: "";
            border-bottom: 1px solid #c2c1bd;
            display: block;
            margin-top: 1em;
        }

        .sell-car-home .column-group > div:last-child:after {
            border-bottom: none;
        }

        .sell-car-home .column-group > div:last-child {
            padding-bottom: .5em;
        }
}

.sell-car-home h3 {
    font-size: 1.6em;
    color: #e4e2d9;
    font-weight: 200;
    text-transform: uppercase;
    margin-bottom: .25em;
}

    .sell-car-home h3 strong {
        font-weight: 300;
    }

.sell-car-home p {
    font-size: 1em;
    font-weight: 300;
    margin-top: .15em;
    margin-bottom: .75em;
    line-height: 1.2em;
}

.sell-car-home .ink-button {
    background: #0f9585;
    color: #ffffff;
    border: none;
    position: absolute;
    bottom: 0;
}

    .sell-car-home .ink-button:focus,
    .sell-car-home .ink-button:hover {
        border: none;
        background: #0c7568;
    }

@media screen and (max-width: 640px) {
    .sell-car-home .ink-button {
        position: relative;
    }
}

.sell-car-home:before {
    line-height: 36px;
    color: #d6d3c5;
}

.sell-car-home .column-group > div {
    position: relative;
    padding-bottom: 2.2em;
}

.sell-car-home.columns-2 {
    text-align: center;
}

    .sell-car-home.columns-2 .column-group > div {
        padding-bottom: 1.5em;
    }

@media screen and (max-width: 640px) {
    .sell-car-home.columns-2 .column-group > div {
        padding-bottom: .5em;
    }
}

.sell-car-home.columns-2 .ink-button {
    padding: 5px 10px;
    font-size: .85em;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

@media screen and (max-width: 640px) {
    .sell-car-home.columns-2 .ink-button {
        left: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.license-plate {
    position: relative;
    padding-left: 3.5em;
}

    .license-plate .dash {
        font-size: 1.1em;
        font-weight: bold;
    }

    .license-plate:before,
    .license-plate:after {
        position: absolute;
        top: 0;
        content: "";
    }

    .license-plate:before {
        top: -1px;
        left: -1px;
        width: 3.5em;
        height: 2.15em;
        padding: 1.3em 0 0 0;
        background-color: #1856b3;
        color: #ffffff;
        font-size: 12px;
        font-weight: 900;
        text-align: center;
        content: "P";
        border-radius: 3px 0 0 3px;
        background-clip: padding-box;
    }

    .license-plate:after {
        top: .3em;
        left: .8em;
        width: 8px;
        height: 8px;
        border: 2px solid #FFE300;
        border-radius: 20px;
        background-clip: padding-box;
    }

    .license-plate input:focus {
        -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 1px 1px inset;
        box-shadow: rgba(0, 0, 0, 0.2) 0 1px 1px inset;
    }

@media screen and (max-width: 960px) {
    .license-plate:before {
        width: 3.2em;
        height: 2em;
    }
}

@media screen and (max-width: 640px) {
    .license-plate:before {
        width: 3.1em;
        height: 1.9em;
    }

    .license-plate:after {
        left: .75em;
    }
}

@media screen and (max-width: 320px) {
    .license-plate:before {
        height: 1.9em;
    }
}

.has-halpage .content {
    width: 100%;
    padding: 0 335px 0 0;
    margin-right: -300px;
    position: relative;
    float: left;
}

@media screen and (max-width: 960px) {
    .has-halpage .content {
        padding: 0;
        margin-right: 0;
    }
}

.has-halpage aside {
    width: 300px;
    position: relative;
    float: left;
}

@media screen and (max-width: 960px) {
    .has-halpage aside {
        width: 100%;
    }
}

@media screen and (max-width: 640px) {
    .has-halpage aside {
        margin-top: .5em;
    }
}

.has-halpage:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

@media screen and (min-width: 960px) {
    .has-sidebar {
        display: -moz-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: -webkit-box;
        display: flex;
    }
}

.has-sidebar .content {
    width: 100%;
    padding: 0 0 0 340px;
    margin-left: -320px;
    position: relative;
    float: left;
}

@media screen and (max-width: 960px) {
    .has-sidebar .content {
        padding: 0;
        margin-left: 0;
    }
}

.has-sidebar aside {
    width: 320px;
    min-height: 1px;
    padding-right: 20px;
    border-right: 1px solid #e4e2d9;
    position: relative;
    float: left;
    z-index: 1;
}

@media screen and (min-width: 960px) {
    .has-sidebar aside {
        -moz-align-items: stretch;
        -ms-align-items: stretch;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }
}

@media screen and (max-width: 960px) {
    .has-sidebar aside {
        display: none;
    }
}

.has-sidebar:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}
/*
.pub {
position: relative;
text-align: center;
width: 100%;
min-height: 250px;

&:before {
font-family: sans-serif;
font-size: 8px;
font-weight: 700;
text-transform: uppercase;
line-height: 8px;
color: #999;
content: "Pub";
position: absolute;
top: -10px;
}

iframe {
display: inline-block;
width: 300px!important;
}
}
.pub-halfpage-mrec {
max-height: 600px;
}
*/
.pub {
    text-align: center;
    width: 100%;
    overflow: hidden;
    min-height: 270px;
    min-width: 300px;
}

    .pub.half-page {
        height: 620px;
    }

    .pub .mrec {
        display: inline-block;
        width: 300px;
        text-align: left;
        min-height: 205px;
        margin-bottom: 2em;
        position: relative;
    }

        .pub .mrec:after {
            font-family: sans-serif;
            font-size: 8px;
            font-weight: 700;
            text-transform: uppercase;
            line-height: 8px;
            color: #999;
            content: "Pub";
            bottom: -10px;
            position: absolute;
        }

        .pub .mrec iframe {
            display: inline-block;
            width: 300px !important;
        }

        .pub .mrec .abd_elm {
            min-height: 255px;
            max-height: 605px;
        }

            .pub .mrec .abd_elm.banner {
                min-height: 205px;
            }

.pub-100 {
    position: relative;
    /*position: relative;

	iframe {
		position: absolute;
		top: 0;
		bottom: 0;
		width: 100%!important;
	}
	.tag{
		display: none;
	}
	iframe + .tag{
		display: block;
		width: 100%;
		padding-top: 15%;
		margin-bottom: 2em;

		@media screen and (max-width:@breakpoint-medium) {
			margin-bottom: 1.75em;
		}
		@media screen and (max-width:@breakpoint-small) {
			margin-bottom: 1.5em;
		}

		small{
			font-family: sans-serif;
			font-size: 8px;
			font-weight: 700;
			text-transform: uppercase;
			color: #999;
			display: block;
			width: 100%;
			position: absolute;
			bottom: -2em;
		}
	}*/
}

    .pub-100:after {
        font-family: sans-serif;
        font-size: 8px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 8px;
        color: #999;
        content: "Pub";
        bottom: -15px;
        position: absolute;
    }

.banner_push_down + section.main {
    padding-top: 0;
}

.banner_push_down + .section-menu {
    margin-top: -2em;
}

@media screen and (max-width: 1260px) {
    .banner_push_down + .section-menu {
        margin-top: -1.75em;
    }
}

@media screen and (max-width: 960px) {
    .banner_push_down + .section-menu {
        margin-top: -1.5em;
    }
}

@media screen and (max-width: 640px) {
    .banner_push_down + .section-menu {
        margin-top: -1.25em;
    }
}

.banner_push_down {
    position: relative;
    padding: 2em 0;
}

@media screen and (max-width: 1260px) {
    .banner_push_down {
        padding: 1.75em 0;
    }
}

@media screen and (max-width: 960px) {
    .banner_push_down {
        padding: 1.5em 0;
    }
}

@media screen and (max-width: 640px) {
    .banner_push_down {
        padding: 1.25em 0;
    }
}

.ink-navigation ul.menu.horizontal .autocomplete,
.autocomplete {
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 1px;
    z-index: 5;
    text-align: left;
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 3px 3px;
    background-clip: padding-box;
}

    .ink-navigation ul.menu.horizontal .autocomplete a,
    .autocomplete a {
        padding: .25em 1em;
        display: block;
        line-height: 1.2em;
        text-decoration: none;
        border: none;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
    }

        .ink-navigation ul.menu.horizontal .autocomplete a.ui-state-active,
        .autocomplete a.ui-state-active,
        .ink-navigation ul.menu.horizontal .autocomplete a:focus,
        .autocomplete a:focus,
        .ink-navigation ul.menu.horizontal .autocomplete a:hover,
        .autocomplete a:hover {
            background: #0f9585;
            color: #fff;
            outline: none;
            border: none;
        }

@media screen and (max-width: 800px) {
    .ink-navigation ul.menu.horizontal .autocomplete a,
    .autocomplete a {
        padding: .5em 1em;
    }
}

.ink-navigation ul.menu.horizontal .autocomplete .optgroup > a,
.autocomplete .optgroup > a {
    font-size: .7em;
    padding: .5em 1.5em .25em 1.5em;
    line-height: 1.8em;
    color: #6f6d66;
    text-transform: uppercase;
}

    .ink-navigation ul.menu.horizontal .autocomplete .optgroup > a span,
    .autocomplete .optgroup > a span {
        color: #0f9585;
        width: auto !important;
        float: right;
        display: inline-block;
    }

    .ink-navigation ul.menu.horizontal .autocomplete .optgroup > a:focus,
    .autocomplete .optgroup > a:focus,
    .ink-navigation ul.menu.horizontal .autocomplete .optgroup > a:hover,
    .autocomplete .optgroup > a:hover {
        color: #ffffff;
    }

        .ink-navigation ul.menu.horizontal .autocomplete .optgroup > a:focus span,
        .autocomplete .optgroup > a:focus span,
        .ink-navigation ul.menu.horizontal .autocomplete .optgroup > a:hover span,
        .autocomplete .optgroup > a:hover span {
            color: #ffffff;
        }

.ink-navigation ul.menu.horizontal .autocomplete .optgroup,
.autocomplete .optgroup {
    margin-top: 1em;
    border-top: 1px solid #c2c1bd;
}

    .ink-navigation ul.menu.horizontal .autocomplete .optgroup.ui-state-active,
    .autocomplete .optgroup.ui-state-active {
        border: none;
        border-top: 1px solid #c2c1bd;
        color: #ffffff;
        background: #0f9585;
    }

        .ink-navigation ul.menu.horizontal .autocomplete .optgroup.ui-state-active a,
        .autocomplete .optgroup.ui-state-active a,
        .ink-navigation ul.menu.horizontal .autocomplete .optgroup.ui-state-active span,
        .autocomplete .optgroup.ui-state-active span {
            color: #ffffff;
        }

.ink-navigation ul.menu.horizontal .autocomplete ul,
.autocomplete ul {
    margin: 0;
    padding: 0;
    padding-bottom: .5em;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    outline: none;
    /*
		li[data-submodel="false"] + li[data-submodel="true"]:before {
		content: "";
		display: block;
		margin: 0 1em;
		border-top: 1px solid @border-color;
	}*/
}

@media screen and (max-width: 800px) {
    .ink-navigation ul.menu.horizontal .autocomplete ul,
    .autocomplete ul {
        max-height: 300px;
    }
}

.ink-navigation ul.menu.horizontal .autocomplete ul li,
.autocomplete ul li {
    margin: 0;
    padding: 0;
    float: none !important;
}

    .ink-navigation ul.menu.horizontal .autocomplete ul li:first-child .optgroup,
    .autocomplete ul li:first-child .optgroup {
        margin-top: 0;
        border-top: none;
    }

    .ink-navigation ul.menu.horizontal .autocomplete ul li[data-submodel="true"] a,
    .autocomplete ul li[data-submodel="true"] a {
        padding: .25em 1em .25em 1.25em;
    }

        .ink-navigation ul.menu.horizontal .autocomplete ul li[data-submodel="true"] a:before,
        .autocomplete ul li[data-submodel="true"] a:before {
            font-family: FontAwesome;
            content: "\f105";
            margin-right: .5em;
            color: #c2c1bd;
        }

@media screen and (max-width: 800px) {
    .ink-navigation ul.menu.horizontal .autocomplete,
    .autocomplete {
        border-radius: 3px !important;
        background-clip: padding-box !important;
    }
}

.control.append-button span:first-of-type .autocomplete {
    border-radius: 3px 0 3px 3px;
    background-clip: padding-box;
}

    .control.append-button span:first-of-type .autocomplete .optgroup label {
        font-size: .7em;
        padding: .5em 1.5em .25em 1.5em;
        margin: 0;
        line-height: 1.8em;
        color: #6f6d66;
        text-transform: uppercase;
        cursor: auto;
    }

    .control.append-button span:first-of-type .autocomplete ul li:first-child .optgroup {
        margin-top: 0;
        border-top: none;
        background: transparent !important;
    }

        .control.append-button span:first-of-type .autocomplete ul li:first-child .optgroup.ui-state-active {
            background: none !important;
            outline: none !important;
        }

.ink-navigation ul.menu.horizontal .autocomplete {
    left: 1px;
}

    .ink-navigation ul.menu.horizontal .autocomplete a {
        padding: .25em .75em;
    }

    .ink-navigation ul.menu.horizontal .autocomplete .optgroup > a,
    .ink-navigation ul.menu.horizontal .autocomplete .autocomplete .optgroup > a {
        font-size: .65em;
        padding: .5em 1em .25em 1em;
    }

@media screen and (max-width: 1100px) {
    .ink-navigation ul.menu.horizontal .autocomplete .optgroup > a span,
    .ink-navigation ul.menu.horizontal .autocomplete .autocomplete .optgroup > a span {
        float: none;
        display: block;
        margin-top: -0.5em;
    }
}

.ink-modal .autocomplete {
    margin: 0 1px 0 1px;
    position: relative;
}

.ink-tabs.top {
    margin-top: 0;
}

    .ink-tabs.top .tabs-nav {
        border: none;
    }

        .ink-tabs.top .tabs-nav li {
            margin-right: .5em;
        }

            .ink-tabs.top .tabs-nav li a {
                background: #f3f2ed;
                border: 1px solid #d6d3c5;
                border-radius: 3px;
                background-clip: padding-box;
                font-weight: 300;
                text-transform: uppercase;
                color: #42413d;
                text-decoration: none;
            }

                .ink-tabs.top .tabs-nav li a:hover {
                    background: #42413d;
                    border: 1px solid #42413d;
                    color: #ffffff;
                }

@media screen and (max-width: 640px) {
    .ink-tabs.top .tabs-nav li a {
        padding: .25em .5em;
        font-size: .9em;
    }
}

.ink-tabs.top .tabs-nav li.active {
    margin-right: .5em;
}

    .ink-tabs.top .tabs-nav li.active a {
        margin: 0;
        background: #42413d;
        border: 1px solid #42413d;
        color: #ffffff;
    }

.navigator {
    margin: 1em 0 -2em 0;
}

@media screen and (max-width: 640px) {
    .navigator {
        margin: 0.75em 0 -0.5em 0;
    }
}

.navigator .ink-navigation ul.menu.horizontal li .ink-button {
    padding: 0;
    font-size: .85em;
    border: none;
    text-transform: none;
}

    .navigator .ink-navigation ul.menu.horizontal li .ink-button i.fa-angle-right {
        margin-left: 0.25em;
    }

    .navigator .ink-navigation ul.menu.horizontal li .ink-button i.fa-angle-left {
        margin-right: 0.25em;
    }

    .navigator .ink-navigation ul.menu.horizontal li .ink-button:focus,
    .navigator .ink-navigation ul.menu.horizontal li .ink-button:hover {
        background: none;
        color: #0a675c;
        text-decoration: underline;
    }

.navigator .ink-navigation ul.menu.horizontal li:first-child {
    float: left;
}

.navigator .ink-navigation ul.menu.horizontal li:last-child {
    float: right;
}

.navigator .ink-navigation.push-right ul.menu.horizontal li {
    margin-left: .5em;
}

@media screen and (min-width: 640px) {
    section.section-menu ~ section.mega-gallery {
        margin-top: 1em;
    }
}

.cofidis-wrapper {
    position: relative;
    /*padding-bottom: 42%;
	height: 0;*/
    /*
	@media screen and (max-width: 1364px) {
	padding-bottom: 70%;
}
	@media screen and (max-width: 1210px) {
	padding-bottom: 80%;
}
	@media screen and (max-width: 1100px) {
	padding-bottom: 90%;
}
	@media screen and (max-width: 960px) {
	padding-bottom: 75%;
}
	@media screen and (max-width: 820px) {
	padding-bottom: 90%;
}
	@media screen and (max-width: 540px) {
	padding-bottom: 110%;
}
	@media screen and (max-width: 470px) {
	padding-bottom: 130%;

}
	@media screen and (max-width: 420px) {
	padding-bottom: 150%;

}
	@media screen and (max-width: 380px) {
	padding-bottom: 170%;

}
	@media screen and (max-width: 340px) {
	padding-bottom: 190%;

}*/
}

    .cofidis-wrapper iframe {
        /*position: absolute;
		top: 0;
		left: 0;*/
        width: 100%;
    }

.sponsored-ads .cofidis-wrapper {
    /*
		@media screen and (max-width: 1080px) {
		padding-bottom: 105%;
	}
		@media screen and (max-width: 960px) {
		padding-bottom: 70%;
	}
		@media screen and (max-width: 860px) {
		padding-bottom: 80%;
	}
		@media screen and (max-width: 770px) {
		padding-bottom: 90%;
	}
		@media screen and (max-width: 540px) {
		padding-bottom: 110%;
	}
		@media screen and (max-width: 480px) {
		padding-bottom: 130%;
	}
		@media screen and (max-width: 420px) {
		padding-bottom: 150%;
	}
		@media screen and (max-width: 380px) {
		padding-bottom: 170%;
	}
		@media screen and (max-width: 330px) {
		padding-bottom: 190%;
	}*/
}

.newsletter {
    background-color: #e4e2d9;
    padding: 2em 0 0 0;
}

    .newsletter h3 {
        font-size: 1.8em;
        font-weight: 300;
        text-transform: uppercase;
        margin-bottom: 0;
    }

    .newsletter p {
        font-size: 1em;
        font-weight: 300;
        margin-bottom: 0;
    }

    .newsletter .control-group .control.append-button {
        margin-top: .6em;
    }

        .newsletter .control-group .control.append-button span > input {
            border-radius: 5px 0 0 5px;
            background-clip: padding-box;
            padding: 0 10px;
            height: 44px;
            font-size: 1.2em;
            color: #42413d;
            background: #ffffff;
            vertical-align: top;
            border: none;
        }

        .newsletter .control-group .control.append-button .ink-button {
            border: none;
            background: #0f9585;
            padding: 0 20px;
            height: 44px;
            font-size: 1.1em;
            text-transform: uppercase;
            color: #ffffff;
            border-radius: 0 5px 5px 0;
            background-clip: padding-box;
            -webkit-box-shadow: none;
            box-shadow: none;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
        }

            .newsletter .control-group .control.append-button .ink-button span {
                margin-right: .75em;
            }

            .newsletter .control-group .control.append-button .ink-button:hover {
                background: #0c7568;
            }

            .newsletter .control-group .control.append-button .ink-button .fa {
                line-height: 44px;
                margin-right: 0;
            }

    .newsletter .control-group .ink-alert {
        margin-bottom: -1.5em;
    }

        .newsletter .control-group .ink-alert h4 {
            padding: .75em 2em .75em .75em;
        }

        .newsletter .control-group .ink-alert .ink-dismiss {
            top: .4em;
        }

.main-title {
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 300;
    border-bottom: 1px solid #e4e2d9;
    padding-bottom: .25em;
    margin-top: 1em !important;
}

    .main-title strong {
        font-weight: 500;
    }

    .main-title a {
        float: right;
        font-size: .5em;
        text-transform: none;
        margin-top: 1em;
        text-transform: uppercase;
    }

@media screen and (max-width: 640px) {
    .main-title a {
        float: none;
        display: block;
        margin-top: .25em;
    }
}

.main-title:after {
    content: '';
    display: block;
    clear: both;
}

.ink-form .control-group label {
    font-size: .9em;
    text-transform: uppercase;
    color: #6f6d66;
    margin-left: 3px;
    display: block;
    z-index: 1;
}

.ink-form .control-group.required label:after {
    position: relative;
    top: -2px;
}

.ink-form .control-group input[type=search] {
    border-radius: 0;
    background-clip: padding-box;
    border: 1px solid #c2c1bd;
}

.ink-form .control-group input {
    font-weight: 400;
}

    .ink-form .control-group input:disabled {
        filter: alpha(opacity=75);
        opacity: 0.75;
    }

.ink-form .control-group button.clear {
    border-radius: 0 3px 3px 0;
    background-clip: padding-box;
    position: absolute;
    top: 1px;
    right: 1px;
    font-size: 1.5em;
    z-index: 1;
    height: 34px;
    line-height: 34px;
    background: #fff;
    border: none;
    outline: none;
    display: none;
}

    .ink-form .control-group button.clear .fa {
        line-height: 30px;
        display: block;
    }

@media screen and (max-width: 800px) {
    .ink-form .control-group button.clear {
        display: block;
    }
}

.ink-form .control-group textarea {
    font-weight: 400;
    padding: 8px;
    color: #42413d;
}

.ink-form .control-group .control.top-space {
    margin-top: 1.75em;
}

.ink-form .control-group .captcha {
    text-align: center;
}

    .ink-form .control-group .captcha img {
        display: inline-block;
        max-height: 60px;
    }

.ink-form .control-group .select {
    position: relative;
    vertical-align: top;
}

    .ink-form .control-group .select select {
        position: relative;
        padding: 2px 10px;
        padding-right: 34px !important;
        color: #42413d;
        font-weight: 400;
        font-size: .85em;
        height: 2.8em;
        background: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        outline: 0;
        border-radius: 3px;
        background-clip: padding-box;
    }

        .ink-form .control-group .select select::-ms-expand {
            display: none;
        }

    .ink-form .control-group .select:hover:before {
        filter: alpha(opacity=100);
        opacity: 1;
    }

    .ink-form .control-group .select:before {
        position: absolute;
        top: 0%;
        right: 0;
        width: 30px;
        height: 1.5em;
        line-height: 1.5em;
        font-size: 1.4em;
        text-align: center;
        font-family: FontAwesome;
        content: "\f107";
        text-shadow: none;
        color: #42413d;
        z-index: 1;
        cursor: pointer;
        cursor: hand;
        pointer-events: none;
        filter: alpha(opacity=60);
        opacity: 0.6;
    }

.ink-form .control-group .control.prepend-symbol span input {
    background: transparent;
    height: 2.4em;
    padding-left: 3em;
    color: #42413d;
    font-weight: 400;
    border-radius: 3px;
    background-clip: padding-box;
    z-index: 2;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
    box-shadow: 0 0 0px 1000px #ffffff inset;
}

    .ink-form .control-group .control.prepend-symbol span input:focus + i.fa {
        background: #42413d;
        color: #e4e2d9;
        z-index: 1;
    }

.ink-form .control-group .control.prepend-symbol i.fa {
    top: 0px;
    left: 0px;
    display: block;
    z-index: 1;
    font-size: 1.2em;
    width: 2em;
    text-align: center;
    height: 2em;
    line-height: 2em;
    background: #e4e2d9;
    border-radius: 3px 0 0 3px;
    background-clip: padding-box;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

.ink-form small .fa-asterisk {
    color: #c91111;
    font-size: .8em;
    margin-top: -0.15em;
}

.ink-modal {
    border-radius: 0;
    background-clip: padding-box;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    .ink-modal .modal-header {
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none;
        background-color: #42413d;
        padding: .9em 1em .8em;
    }

        .ink-modal .modal-header #modal-title {
            font-size: 1.6em;
            text-transform: uppercase;
            font-weight: 300;
            margin-bottom: 0;
            color: #e4e2d9;
        }

            .ink-modal .modal-header #modal-title strong {
                font-weight: 400;
            }

        .ink-modal .modal-header .modal-close {
            background: #e4e2d9;
            color: #42413d;
        }

            .ink-modal .modal-header .modal-close:after {
                line-height: 15px;
            }

            .ink-modal .modal-header .modal-close:active,
            .ink-modal .modal-header .modal-close:hover {
                background: #e4e2d9;
                color: #42413d;
                outline: none;
            }

    .ink-modal .modal-body > p {
        font-size: 1.1em;
        font-weight: 300;
    }

        .ink-modal .modal-body > p strong {
            font-weight: 400;
        }

        .ink-modal .modal-body > p.medium {
            font-size: .9em;
        }

    .ink-modal .modal-body > h3 {
        font-weight: 400;
        margin-bottom: .5em;
    }

    .ink-modal .modal-body .ink-form {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-transform: scale(1);
        transform: scale(1);
        width: calc(99% + 1%);
    }

        .ink-modal .modal-body .ink-form.search-form .top-space {
            margin-top: 0;
        }

        .ink-modal .modal-body .ink-form.search-form .column-group.vertical-gutters > [class*=all-],
        .ink-modal .modal-body .ink-form.search-form .column-group.vertical-gutters > [class*=large-] {
            margin-bottom: 1em;
        }

            .ink-modal .modal-body .ink-form.search-form .column-group.vertical-gutters > [class*=all-] .control-group,
            .ink-modal .modal-body .ink-form.search-form .column-group.vertical-gutters > [class*=large-] .control-group {
                margin-bottom: 0;
            }

        .ink-modal .modal-body .ink-form fieldset legend {
            font-size: 1.3em;
            text-transform: uppercase;
            font-weight: 500;
            display: block;
            color: #42413d;
            padding-top: .75em;
            border-bottom: none;
            border-top: 1px solid #c2c1bd;
        }

            .ink-modal .modal-body .ink-form fieldset legend + * {
                margin-bottom: 0;
                margin-top: 1em;
            }

        .ink-modal .modal-body .ink-form .radio-group,
        .ink-modal .modal-body .ink-form .checkbox-group,
        .instant-contact .checkbox-group {
            margin: 0;
            padding: 0;
            padding: .5em 0 0 .5em;
            border: 1px solid #c2c1bd;
            border-radius: 3px;
            background-clip: padding-box;
        }

            .ink-modal .modal-body .ink-form .radio-group.no-border,
            .ink-modal .modal-body .ink-form .checkbox-group.no-border,
            .instant-contact .checkbox-group.no-border {
                border: none;
                padding-left: 3px;
            }

                .ink-modal .modal-body .ink-form .radio-group.no-border li,
                .ink-modal .modal-body .ink-form .checkbox-group.no-border li,
                .instant-contact .checkbox-group.no-border li {
                    float: none;
                }

            .ink-modal .modal-body .ink-form .radio-group li,
            .ink-modal .modal-body .ink-form .checkbox-group li,
            .instant-contact .checkbox-group li {
                margin: 0;
                padding-bottom: .5em;
                float: left;
                margin-right: 1em;
                position: relative;
            }

                .ink-modal .modal-body .ink-form .radio-group li label,
                .ink-modal .modal-body .ink-form .checkbox-group li label,
                .instant-contact .checkbox-group li label {
                    display: inline-block;
                    cursor: pointer;
                    cursor: hand;
                    font-size: .9em;
                    color: #42413d;
                    text-transform: none;
                    font-weight: 400;
                    margin: 0;
                    padding: 0;
                    vertical-align: baseline !important;
                }

                .ink-modal .modal-body .ink-form .radio-group li input[type=radio],
                .ink-modal .modal-body .ink-form .checkbox-group li input[type=radio],
                .ink-modal .modal-body .ink-form .radio-group li input[type=checkbox],
                .ink-modal .modal-body .ink-form .checkbox-group li input[type=checkbox],
                .instant-contact .checkbox-group li input[type=radio],
                .instant-contact .checkbox-group li input[type=checkbox] {
                    margin-right: .5em;
                    position: relative;
                    visibility: hidden;
                }

                    .ink-modal .modal-body .ink-form .radio-group li input[type=radio] ~ label:before,
                    .ink-modal .modal-body .ink-form .checkbox-group li input[type=radio] ~ label:before,
                    .ink-modal .modal-body .ink-form .radio-group li input[type=checkbox] ~ label:before,
                    .ink-modal .modal-body .ink-form .checkbox-group li input[type=checkbox] ~ label:before,
                    .instant-contact .checkbox-group li input[type=radio] ~ label:before,
                    .instant-contact .checkbox-group li input[type=checkbox] ~ label:before {
                        position: absolute;
                        left: 0;
                        top: 2px;
                        content: "";
                        background: #f3f2ed;
                        border: 1px solid #c2c1bd;
                        height: 16px;
                        width: 16px;
                        line-height: 16px;
                        border-radius: 3px;
                        background-clip: padding-box;
                        display: inline-block;
                        cursor: pointer;
                        cursor: hand;
                    }

                    .ink-modal .modal-body .ink-form .radio-group li input[type=radio]:checked ~ label:before,
                    .ink-modal .modal-body .ink-form .checkbox-group li input[type=radio]:checked ~ label:before,
                    .ink-modal .modal-body .ink-form .radio-group li input[type=checkbox]:checked ~ label:before,
                    .ink-modal .modal-body .ink-form .checkbox-group li input[type=checkbox]:checked ~ label:before,
                    .instant-contact .checkbox-group li input[type=radio]:checked ~ label:before,
                    .instant-contact .checkbox-group li input[type=checkbox]:checked ~ label:before {
                        font-family: FontAwesome;
                        content: "\f00c";
                        background: #0f9585;
                        border: 1px solid #0f9585;
                        color: #ffffff;
                        font-size: .85em;
                        text-align: center;
                    }

                    .ink-modal .modal-body .ink-form .radio-group li input[type=radio]:checked ~ label,
                    .ink-modal .modal-body .ink-form .checkbox-group li input[type=radio]:checked ~ label,
                    .ink-modal .modal-body .ink-form .radio-group li input[type=checkbox]:checked ~ label,
                    .ink-modal .modal-body .ink-form .checkbox-group li input[type=checkbox]:checked ~ label,
                    .instant-contact .checkbox-group li input[type=radio]:checked ~ label,
                    .instant-contact .checkbox-group li input[type=checkbox]:checked ~ label {
                        color: #0f9585;
                    }

                    .ink-modal .modal-body .ink-form .radio-group li input[type=radio] ~ label:before,
                    .ink-modal .modal-body .ink-form .checkbox-group li input[type=radio] ~ label:before,
                    .instant-contact .checkbox-group li input[type=radio] ~ label:before {
                        border-radius: 16px;
                        background-clip: padding-box;
                    }

                    .ink-modal .modal-body .ink-form .radio-group li input[type=radio]:checked ~ label:before,
                    .ink-modal .modal-body .ink-form .checkbox-group li input[type=radio]:checked ~ label:before,
                    .instant-contact .checkbox-group li input[type=radio]:checked ~ label:before {
                        font-family: sans-serif;
                        content: "\2022";
                        font-size: 2em;
                        line-height: .6em;
                    }

                .ink-modal .modal-body .ink-form .radio-group li .select select,
                .ink-modal .modal-body .ink-form .checkbox-group li .select select,
                .instant-contact .checkbox-group li .select select {
                    padding: 0px 10px;
                    height: 28px;
                    margin-left: .25em;
                    margin-top: -0.25em;
                }

                .ink-modal .modal-body .ink-form .radio-group li .select:before,
                .ink-modal .modal-body .ink-form .checkbox-group li .select:before,
                .instant-contact .checkbox-group li .select:before {
                    height: 28px;
                    line-height: 28px;
                    margin-top: -0.15em;
                }

            .ink-modal .modal-body .ink-form .radio-group:after,
            .ink-modal .modal-body .ink-form .checkbox-group:after,
            .instant-contact .checkbox-group:after {
                content: "";
                display: table;
                clear: both;
            }

            .ink-modal .modal-body .ink-form .checkbox-group li input[type=checkbox],
            .instant-contact .checkbox-group li input[type=checkbox] {
                position: absolute;
            }

            .ink-modal .modal-body .ink-form .checkbox-group li label,
            .instant-contact .checkbox-group li label {
                margin-left: 1.75em;
            }

        .ink-modal .modal-body .ink-form .ink-dropdown {
            margin-top: 0;
            position: relative;
        }

            .ink-modal .modal-body .ink-form .ink-dropdown .ink-button {
                width: 100%;
                background: #ffffff;
                border-radius: 0;
                background-clip: padding-box;
                color: #42413d;
                padding: 8px 6px;
                vertical-align: top;
                text-transform: none;
                text-align: left;
                border: 1px solid #c2c1bd;
                margin: 0;
            }

                .ink-modal .modal-body .ink-form .ink-dropdown .ink-button:after {
                    position: absolute;
                    top: 0%;
                    right: 0;
                    width: 30px;
                    height: 40px;
                    line-height: 40px;
                    font-size: 1.4em;
                    text-align: center;
                    font-family: FontAwesome;
                    content: "\f107";
                    text-shadow: none;
                    color: #42413d;
                    z-index: 1;
                    cursor: pointer;
                    pointer-events: none;
                    filter: alpha(opacity=60);
                    opacity: 0.6;
                }

            .ink-modal .modal-body .ink-form .ink-dropdown:hover .ink-button {
                background: #f3f2ed;
            }

                .ink-modal .modal-body .ink-form .ink-dropdown:hover .ink-button:before {
                    filter: alpha(opacity=100);
                    opacity: 1;
                }

            .ink-modal .modal-body .ink-form .ink-dropdown.active .ink-button {
                -webkit-box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
                box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
            }

            .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu {
                width: 100%;
                max-width: 100%;
                max-height: 300px;
                min-width: auto;
                overflow-y: auto;
                top: 100%;
                padding: 1em 1em 0 1em;
                margin: 0 0 1em 0;
                border-top: none;
                font-size: 1em;
                border-radius: 0 0 3px 3px;
                background-clip: padding-box;
            }

                .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li {
                    margin-bottom: .5em;
                    float: left;
                    width: 50%;
                }

                    .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li label {
                        display: inline-block;
                        cursor: pointer;
                        cursor: hand;
                        color: #42413d;
                        text-transform: none;
                        font-weight: 400;
                        margin: 0;
                        padding-left: 0;
                    }

                    .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=radio],
                    .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=checkbox] {
                        margin-right: .5em;
                        position: relative;
                        visibility: hidden;
                    }

                        .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=radio] ~ label,
                        .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=checkbox] ~ label {
                            vertical-align: middle;
                        }

                            .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=radio] ~ label:before,
                            .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=checkbox] ~ label:before {
                                position: absolute;
                                left: 0;
                                top: 3px;
                                content: "";
                                background: #f3f2ed;
                                border: 1px solid #c2c1bd;
                                height: 16px;
                                width: 16px;
                                border-radius: 3px;
                                background-clip: padding-box;
                                display: inline-block;
                                cursor: pointer;
                                cursor: hand;
                            }

                        .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=radio]:checked ~ label:before,
                        .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=checkbox]:checked ~ label:before {
                            font-family: FontAwesome;
                            content: "\f00c";
                            background: #0f9585;
                            border: 1px solid #0f9585;
                            color: #ffffff;
                            font-size: .75em;
                            text-align: center;
                        }

                        .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=radio]:checked ~ label,
                        .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=checkbox]:checked ~ label {
                            color: #0f9585;
                        }

@media screen and (max-width: 800px) {
    .ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=radio]:checked ~ label:before {
        font-size: .9em !important;
    }
}

.ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu li input[type=radio] ~ label:before {
    border-radius: 16px;
    background-clip: padding-box;
}

.ink-modal .modal-body .ink-form .ink-dropdown .dropdown-menu:after {
    content: "";
    display: table;
    clear: both;
}

.ink-modal .modal-body .ink-form .ink-dropdown .append-clear {
    padding-bottom: 30px;
    position: absolute;
    z-index: 2;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.3);
}

    .ink-modal .modal-body .ink-form .ink-dropdown .append-clear .dropdown-menu {
        margin-bottom: 0;
        position: relative;
        top: 0;
        border-radius: 3px 3px 0 0;
        background-clip: padding-box;
        -webkit-box-shadow: none;
        box-shadow: none;
        max-height: 250px;
    }

        .ink-modal .modal-body .ink-form .ink-dropdown .append-clear .dropdown-menu li {
            width: 100%;
        }

    .ink-modal .modal-body .ink-form .ink-dropdown .append-clear .push-bottom {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 30px;
        border-radius: 0 0 3px 3px;
        background-clip: padding-box;
    }

        .ink-modal .modal-body .ink-form .ink-dropdown .append-clear .push-bottom .ink-button {
            width: 100%;
            line-height: 30px;
            height: 30px;
            text-align: center;
            text-transform: none;
            border: none;
            margin: 0;
            font-size: .75em;
            font-weight: 400;
            padding: 0 .5em;
            background: #f3f2ed;
            border-radius: 0 0 3px 3px;
            background-clip: padding-box;
        }

            .ink-modal .modal-body .ink-form .ink-dropdown .append-clear .push-bottom .ink-button .fa {
                font-size: 1.3em;
                vertical-align: middle;
                margin: 0 0 0 .5em;
            }

            .ink-modal .modal-body .ink-form .ink-dropdown .append-clear .push-bottom .ink-button:hover {
                color: #ffffff;
                background: #0f9585;
            }

            .ink-modal .modal-body .ink-form .ink-dropdown .append-clear .push-bottom .ink-button:after {
                display: none;
            }

.ink-modal .modal-body .ink-form .slider {
    position: relative;
    margin-top: .75em;
    height: 10px;
    border-radius: 3px;
    background-clip: padding-box;
    background: #f3f2ed;
    border: 1px solid #c2c1bd;
}

    .ink-modal .modal-body .ink-form .slider .ui-slider-range {
        position: absolute;
        z-index: 1;
        top: 0;
        height: 100%;
        background-color: #0f9585;
        background-color: rgba(15, 149, 133, 0.4);
        zoom: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#660f9585, endColorstr=#660f9585)";
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#660f9585, endColorstr=#660f9585);
    }

    .ink-modal .modal-body .ink-form .slider .ui-slider-handle {
        position: absolute;
        z-index: 1;
        background: #0f9585;
        border-radius: 15px;
        background-clip: padding-box;
        height: 26px;
        width: 26px;
        top: -8px;
    }

        .ink-modal .modal-body .ink-form .slider .ui-slider-handle:hover {
            cursor: pointer;
            cursor: hand;
            background: #0c7568;
        }

        .ink-modal .modal-body .ink-form .slider .ui-slider-handle.ui-state-focus {
            outline: none;
        }

        .ink-modal .modal-body .ink-form .slider .ui-slider-handle.ui-corner-all.ui-state-default + .ui-slider-handle.ui-corner-all.ui-state-default {
            z-index: 2;
        }

    .ink-modal .modal-body .ink-form .slider p {
        font-size: .85em;
        margin: 18px 0 0 0;
    }

        .ink-modal .modal-body .ink-form .slider p.min {
            float: left;
        }

        .ink-modal .modal-body .ink-form .slider p.max {
            float: right;
        }

.ink-modal .modal-body .ink-form .license-plate {
    margin: 0;
    padding: 0 0 0 2.5em;
    border: 1px solid #c2c1bd;
    border-radius: 3px;
    background-clip: padding-box;
}

    .ink-modal .modal-body .ink-form .license-plate .control-group {
        margin-bottom: 0;
    }

        .ink-modal .modal-body .ink-form .license-plate .control-group .control input {
            border: none;
            font-weight: 500;
            font-size: 1.2em;
            padding: 6px;
        }

.ink-modal .modal-body .ink-form .filter-nav .checkbox-group li input[type=checkbox],
.ink-modal .modal-body .ink-form .stands-sorting .checkbox-group li input[type=checkbox] {
    position: relative;
}

.ink-modal .modal-body .ink-form .filter-nav .checkbox-group li label,
.ink-modal .modal-body .ink-form .stands-sorting .checkbox-group li label {
    margin-left: 0;
}

.ink-modal .modal-body .basic-info label {
    font-size: .9em;
    text-transform: uppercase;
    color: #6f6d66;
    margin-left: 3px;
    display: block;
    font-weight: 500;
}

.ink-modal .modal-body .basic-info input[type=search] {
    border-radius: 0;
    background-clip: padding-box;
    border: 1px solid #c2c1bd;
}

.ink-modal .modal-body .basic-info input {
    font-weight: 400;
}

.ink-modal .modal-body .autocomplete {
    position: absolute;
    top: 100%;
    margin: 0;
    border-radius: 3px !important;
    background-clip: padding-box !important;
}

    .ink-modal .modal-body .autocomplete ul {
        max-height: 250px;
    }

    .ink-modal .modal-body .autocomplete li:first-child .optgroup label {
        background: #fff !important;
    }

    .ink-modal .modal-body .autocomplete li:first-child .optgroup a {
        font-size: .7em;
        padding: .5em 10px .25em 10px;
        margin: 0;
        line-height: 1.8em;
        color: #6f6d66;
        text-transform: uppercase;
        background: #fff !important;
    }

        .ink-modal .modal-body .autocomplete li:first-child .optgroup a span {
            color: #0f9585;
            width: auto !important;
            float: right;
            display: inline-block;
        }

    .ink-modal .modal-body .autocomplete .optgroup label {
        font-size: .7em;
        padding: .5em 10px .25em 10px;
        margin: 0;
        line-height: 1.8em;
        color: #6f6d66;
        text-transform: uppercase;
        cursor: auto;
    }

    .ink-modal .modal-body .autocomplete a {
        font-size: .9em;
        padding: .5em 10px;
    }

    .ink-modal .modal-body .autocomplete.append-clear {
        padding-bottom: 30px;
    }

        .ink-modal .modal-body .autocomplete.append-clear ul {
            border-radius: 3px 3px 0 0;
            background-clip: padding-box;
        }

        .ink-modal .modal-body .autocomplete.append-clear .push-bottom {
            position: absolute;
            bottom: 0;
            width: 100%;
        }

            .ink-modal .modal-body .autocomplete.append-clear .push-bottom .ink-button {
                width: 100%;
                line-height: 30px;
                height: 30px;
                text-align: center;
                text-transform: none;
                border: none;
                margin: 0;
                font-size: .75em;
                font-weight: 400;
                padding: 0 .5em;
                background: #f3f2ed;
                border-radius: 0 0 2px 2px;
                -webkit-box-shadow: inset 0 1px 3px 0px rgba(0, 0, 0, 0.3);
                box-shadow: inset 0 1px 3px 0px rgba(0, 0, 0, 0.3);
                border-radius: 0 0 3px 3px;
                background-clip: padding-box;
            }

                .ink-modal .modal-body .autocomplete.append-clear .push-bottom .ink-button .fa {
                    font-size: 1.3em;
                    vertical-align: middle;
                    margin: 0 0 0 .5em;
                }

                .ink-modal .modal-body .autocomplete.append-clear .push-bottom .ink-button:hover {
                    color: #ffffff;
                    background: #0f9585;
                }

.ink-modal .buttons {
    margin: 0;
}

    .ink-modal .buttons li {
        position: relative;
        float: left;
        margin: 0 0 0 1em;
    }

.ink-modal .modal-footer {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #f3f2ed;
}

    .ink-modal .modal-footer small {
        line-height: 2.5em;
        font-weight: 300;
    }

        .ink-modal .modal-footer small .fa {
            color: #c91111;
            font-size: .8em;
            margin-top: -0.25em;
        }

    .ink-modal .modal-footer .ink-button {
        background: #0f9585;
        color: #ffffff;
        border: none;
        position: relative;
    }

        .ink-modal .modal-footer .ink-button:focus,
        .ink-modal .modal-footer .ink-button:hover {
            border: none;
            background: #0c7568;
        }

        .ink-modal .modal-footer .ink-button.light {
            padding: 6px 10px;
            background: none;
            color: #0f9585;
            border: 1px solid #0f9585;
        }

            .ink-modal .modal-footer .ink-button.light:focus,
            .ink-modal .modal-footer .ink-button.light:hover {
                color: #ffffff;
                border: 1px solid #0c7568;
                background: #0c7568;
            }

        .ink-modal .modal-footer .ink-button .fa {
            margin-top: .25em;
            margin-left: .5em;
        }

    .ink-modal .modal-footer .ink-alert {
        position: absolute;
        z-index: 1;
        padding: .5em;
        width: 100%;
        top: 0;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        font-size: .9em;
        text-transform: none;
        white-space: normal;
        border-radius: 3px;
        background-clip: padding-box;
        background: #ffffff;
        color: #42413d;
        font-weight: 400;
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.3);
        height: 0;
        line-height: 0;
        font-size: 0;
    }

        .ink-modal .modal-footer .ink-alert.active {
            filter: alpha(opacity=100);
            opacity: 1;
            top: -100%;
            -webkit-transform: translate(-50%, -60%);
            transform: translate(-50%, -60%);
            -webkit-transition: top 0.25s ease-in-out;
            -moz-transition: top 0.25s ease-in-out;
            -ms-transition: top 0.25s ease-in-out;
            -o-transition: top 0.25s ease-in-out;
            height: auto;
            line-height: 1.25em;
            font-size: .9em;
        }

        .ink-modal .modal-footer .ink-alert:after {
            content: '';
            position: absolute;
            bottom: -9px;
            left: 50%;
            margin-left: -10px;
            width: 0;
            height: 0;
            border-top: solid 10px #ffffff;
            border-left: solid 10px transparent;
            border-right: solid 10px transparent;
        }

@media screen and (max-width: 640px) {
    .ink-modal {
        width: 100% !important;
        height: 100% !important;
    }
}

#myModal4 {
    height: auto !important;
    max-height: 100%;
}

    #myModal4 .modal-footer .push-left a {
        line-height: 2.5em;
        font-size: .9em;
    }

.ink-shade {
    background-color: #42413d;
    background-color: rgba(66, 65, 61, 0.9);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#e642413d, endColorstr=#e642413d)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e642413d, endColorstr=#e642413d);
    z-index: 3000000000;
}

.ink-navigation ul.pagination {
    text-align: center;
}

    .ink-navigation ul.pagination li {
        float: none;
        display: inline-block;
        padding: 0px;
        margin: 0px 0;
    }

        .ink-navigation ul.pagination li a {
            font-size: 0.9em;
            color: #0f9585;
            border: 1px solid #c2c1bd;
            background: #ffffff;
            font-weight: 400;
            text-decoration: none;
            border-radius: 3px;
            background-clip: padding-box;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
        }

            .ink-navigation ul.pagination li a:focus,
            .ink-navigation ul.pagination li a:hover {
                -webkit-box-shadow: none;
                box-shadow: none;
                border: 1px solid #0f9585;
                color: #ffffff;
                background: #0f9585;
            }

        .ink-navigation ul.pagination li:first-child a,
        .ink-navigation ul.pagination li:last-child a {
            border-radius: 3px;
            background-clip: padding-box;
        }

            .ink-navigation ul.pagination li:first-child a .fa,
            .ink-navigation ul.pagination li:last-child a .fa {
                font-size: 1.5em;
                vertical-align: text-bottom;
            }

        .ink-navigation ul.pagination li.active a,
        .ink-navigation ul.pagination li.active a:hover {
            -webkit-box-shadow: none;
            box-shadow: none;
            border: 1px solid #0f9585;
            text-decoration: none;
            color: #ffffff;
            background: #0f9585;
        }

        .ink-navigation ul.pagination li.disabled a:focus,
        .ink-navigation ul.pagination li.disabled a:hover {
            -webkit-box-shadow: none;
            box-shadow: none;
            text-shadow: none;
            border: 1px solid #e0e0e0;
            color: #e0e0e0;
            background: #ffffff;
        }

.report h2 {
    font-size: 2em;
    font-weight: 300;
}

.report h3 {
    font-size: 1.2em;
    font-weight: 400;
}

.report p {
    font-size: 1.2em;
    font-weight: 300;
}

.outer-table.has-scroll {
    position: relative;
    overflow: hidden;
}

    .outer-table.has-scroll:before {
        content: "";
        position: absolute;
        z-index: 1;
        top: 3%;
        bottom: 3%;
        right: -20px;
        width: 20px;
        border-radius: 20px;
        background-clip: padding-box;
        -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
        box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
    }

    .outer-table.has-scroll table.ink-table.bordered {
        -webkit-overflow-scrolling: touch;
        display: inline-block;
        vertical-align: top;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        border-collapse: collapse;
        border-spacing: 0;
        margin-bottom: 0;
    }

        .outer-table.has-scroll table.ink-table.bordered td,
        .outer-table.has-scroll table.ink-table.bordered th {
            width: 100%;
        }

.outer-table table.ink-table.bordered tr th {
    border-left: #e4e2d9 1px solid !important;
    background: #e4e2d9;
    font-weight: 300;
}

    .outer-table table.ink-table.bordered tr th:first-child {
        font-weight: 500;
        text-transform: uppercase;
    }

    .outer-table table.ink-table.bordered tr th span:first-of-type {
        font-weight: 500;
        font-size: .8em;
        text-transform: uppercase;
    }

.outer-table table.ink-table.bordered tr:nth-child(odd) {
    background-color: #f3f2ed;
}

.outer-table table.ink-table.bordered tr td .control {
    position: relative;
}

    .outer-table table.ink-table.bordered tr td .control select {
        position: relative;
        padding-right: 30px !important;
        -webkit-appearance: none;
        text-indent: .01px;
        text-overflow: '';
        outline: 0;
        line-height: 1.25em;
    }

        .outer-table table.ink-table.bordered tr td .control select:disabled {
            background: #f3f2ed;
            color: #c5c5c5;
        }

    .outer-table table.ink-table.bordered tr td .control.select:before {
        position: absolute;
        top: 50%;
        right: 0;
        width: 38px;
        height: 38px;
        margin-top: -18px;
        line-height: 38px;
        font-size: 1.2em;
        text-align: center;
        z-index: -1;
        font-family: 'FontAwesome';
        content: "\f107";
        text-shadow: none;
        color: #333;
        z-index: 1;
        cursor: pointer;
        pointer-events: none;
        zoom: 1;
        filter: alpha(opacity=50);
        -webkit-opacity: .5;
        -moz-opacity: .5;
        opacity: .5;
    }

.sub-nav {
    background: #6f6d66;
    padding: .75em 0;
    color: #ffffff;
    margin-bottom: 2em;
}

    .sub-nav .ink-navigation ul.menu.horizontal li {
        margin: .25em 2em .25em 0;
    }

        .sub-nav .ink-navigation ul.menu.horizontal li a {
            text-transform: uppercase;
            font-size: 1em;
            text-decoration: none;
            color: #d6d3c5;
            padding: 0;
        }

            .sub-nav .ink-navigation ul.menu.horizontal li a:hover {
                color: #ffffff;
            }

        .sub-nav .ink-navigation ul.menu.horizontal li.active a {
            color: #ffffff;
        }
/* /// PhotoSwipe  /// */
.pswp {
    z-index: 9999999999999999999999999999999999 !important;
}

.pswp--zoom-allowed .pswp__button--zoom {
    display: none !important;
}

body.pswping {
    overflow: hidden;
}

.pswp.pswp--open {
    width: auto;
    right: 340px;
    z-index: 2000000001;
}

.pswp-ctn .pswp__caption a:hover {
    color: #FFF;
    text-decoration: underline;
}

.pswp-ctn h3.title {
    font-weight: 400;
    margin-bottom: .25em;
    font-size: 1.4em;
}

    .pswp-ctn h3.title + p {
        margin-bottom: .5em;
        color: #6f6d66;
    }

.pswp-ctn h4.price {
    margin-bottom: 1em;
    font-weight: 400;
}

.pswp-ctn p.name_customer {
    margin-bottom: 0;
}

.pswp-ctn p.location_customer {
    color: #6f6d66;
    font-size: .85em;
}

.pswp-ctn .ink-button.main-action .fa {
    margin-right: .25em;
}

.ad-ctn {
    position: relative;
    text-align: center;
}

    .ad-ctn .ad.ad-label:before {
        position: absolute;
        top: -12px;
        left: 3px;
        font-family: sans-serif;
        font-size: 8px;
        font-weight: bold;
        text-transform: uppercase;
        color: #999;
        content: "Pub";
    }

.pswp-ctn .pswp-sidebar {
    text-align: center;
    position: fixed;
    top: 0;
    right: -340px;
    width: 340px;
    height: 100%;
    padding: 20px;
    margin: 0;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 2000000001;
    pointer-events: none;
    zoom: 1;
    -webkit-transition: 0.333s opacity cubic-bezier(0.4, 0, 0.22, 1);
    -moz-transition: 0.333s opacity cubic-bezier(0.4, 0, 0.22, 1);
    -ms-transition: 0.333s opacity cubic-bezier(0.4, 0, 0.22, 1);
    -o-transition: 0.333s opacity cubic-bezier(0.4, 0, 0.22, 1);
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

    .pswp-ctn .pswp-sidebar .description {
        font-size: .875em;
        line-height: 1.4em;
    }

.pswp-ctn.open .pswp-sidebar {
    right: 0;
    pointer-events: auto;
    zoom: 1;
    filter: alpha(opacity=100);
    opacity: 1;
}

@media screen and (max-width: 960px) {
    .pswp-ctn .pswp {
        right: 0;
        bottom: 111px;
        height: auto;
    }

    .pswp-ctn .pswp-sidebar {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        height: 111px;
        padding: 10px 0;
        overflow: hidden;
    }
}

@media screen and (min-width: 961px) {
    .pswp-ctn .pswp__caption {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .pswp-ctn .pswp {
        right: 0;
        bottom: 50px;
    }

    .pswp-ctn .pswp-sidebar {
        padding: 0;
        height: 50px;
    }
}

.introjs-tooltipReferenceLayer .introjs-tooltip {
    padding: 20px;
    border-radius: 0;
    min-width: 250px;
}

    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltiptext {
        font-size: 1.2em;
        line-height: 1.2em;
    }

    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-skipbutton {
        float: left;
    }

    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button {
        font-size: .85em;
        color: #0f9585;
        text-shadow: none;
        padding: 5px 10px;
        background: #ffffff;
        border: 1px solid #c2c1bd;
        border-radius: 3px;
        background-clip: padding-box;
    }

        .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button:focus,
        .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button:hover {
            -webkit-box-shadow: none;
            box-shadow: none;
            border: 1px solid #0f9585;
            color: #ffffff;
            background: #0f9585;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
        }

        .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button.introjs-nextbutton {
            margin-left: 5px;
            color: #ffffff;
            background: #0f9585;
            border: 1px solid #0f9585;
        }

            .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button.introjs-nextbutton:focus,
            .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-button.introjs-nextbutton:hover {
                border: 1px solid #0a675c;
                background: #0a675c;
            }

    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-nextbutton.introjs-disabled,
    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-nextbutton.introjs-disabled:hover,
    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-nextbutton.introjs-disabled:focus,
    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-disabled,
    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-disabled:hover,
    .introjs-tooltipReferenceLayer .introjs-tooltip .introjs-tooltipbuttons .introjs-disabled:focus {
        color: #c5c5c5;
        border: 1px solid #c2c1bd;
        background: #ffffff;
        -webkit-box-shadow: none;
        box-shadow: none;
        cursor: default;
    }

.introjs-tooltipReferenceLayer .introjs-helperNumberLayer {
    text-shadow: none;
    background: #42413d;
    font-size: 1em;
    border: 2px solid #ffffff;
}

.introjs-hints .introjs-hint-dot {
    border: 10px solid rgba(15, 149, 133, 0.36);
}

.introjs-hints .introjs-hint-pulse {
    border: 5px solid rgba(15, 149, 133, 0.27);
    background-color: rgba(15, 149, 133, 0.24);
}

.introjs-hints .introjs-hint:hover > .introjs-hint-pulse {
    border: 5px solid rgba(10, 103, 92, 0.57);
}

.introjs-hintReference .introjs-tooltiptext p {
    margin-bottom: .5em;
    font-weight: 300;
}

.introjs-hintReference .introjs-button {
    color: #ffffff;
    background: #0f9585;
    border: 1px solid #0f9585;
    text-shadow: none;
    text-transform: uppercase;
    font-family: inherit;
    font-size: 12px;
}

    .introjs-hintReference .introjs-button:hover {
        color: #ffffff;
        background: #0c7568;
        border: 1px solid #0c7568;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.slideout {
    position: fixed;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    right: -270px;
    width: 300px;
    padding: 10px;
    height: 100px;
    z-index: 100;
    color: #ffffff;
    background: #42413d;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    border-radius: 3px 0 0 3px;
    background-clip: padding-box;
}

    .slideout:before {
        content: "";
        position: absolute;
        left: 30px;
        right: 0;
        top: 0;
        bottom: 0;
        background: #6f6d66;
    }

    .slideout .title {
        position: absolute;
        top: 62%;
        left: 0;
        width: 30px;
        font-size: 15px;
        letter-spacing: .075em;
        -webkit-transform: rotate(270deg);
        transform: rotate(270deg);
        white-space: nowrap;
        text-transform: uppercase;
    }

        .slideout .title i.fa {
            -webkit-transform: rotate(-270deg);
            transform: rotate(-270deg);
            margin-right: 5px;
        }

    .slideout .inner {
        position: absolute;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        left: 30px;
        right: 0;
        text-align: center;
    }

        .slideout .inner p {
            font-size: .85em;
            font-weight: 400;
            margin-bottom: 0.75em;
        }

        .slideout .inner .ink-button {
            padding: .25em .5em;
        }

    .slideout:focus,
    .slideout:hover {
        right: 0px;
    }

    .slideout.orelha-mapfre {
        background: #d81e05;
    }

        .slideout.orelha-mapfre:before {
            background: #4d4d4d;
        }

        .slideout.orelha-mapfre .title {
            top: 68%;
        }

            .slideout.orelha-mapfre .title i.fa {
                margin-right: 3px;
            }

        .slideout.orelha-mapfre .inner p {
            margin: 0 1em;
            margin-bottom: 0.75em;
        }

        .slideout.orelha-mapfre .inner .ink-button {
            padding: .15em 1em;
            background: #d81e05;
            border: none;
            cursor: pointer;
            cursor: hand;
        }

            .slideout.orelha-mapfre .inner .ink-button:hover {
                background: #bf1b04;
            }

span.tutorial-step {
    width: 100%;
}

@media screen and (max-width: 960px) {
    .slideout,
    .introjsFloatingElement,
    .introjs-overlay,
    .introjs-helperLayer,
    .introjs-tooltipReferenceLayer {
        display: none !important;
    }
}

.ink-modal ::-webkit-scrollbar {
    -webkit-appearance: none;
}

    .ink-modal ::-webkit-scrollbar:vertical {
        width: 12px;
    }

    .ink-modal ::-webkit-scrollbar:horizontal {
        height: 12px;
    }

.ink-modal ::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 2px solid #ffffff;
}

.ink-modal ::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #ffffff;
}
/*Captcha z-index*/
div[style*="z-index: 2000000000"] {
    z-index: 4000000000 !important;
}

.alert-modal {
    top: 50%;
    left: 50%;
    position: fixed;
    z-index: 1000;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 500px;
    min-width: 300px;
    padding: 1em 1.5em;
    background: #42413d;
    color: #ffffff;
    text-align: center;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

    .alert-modal h3 {
        color: #ffffff;
        font-size: 1.2em;
        font-weight: 300;
        text-transform: uppercase;
    }

    .alert-modal .close-button {
        display: block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        color: #c2c1bd;
        font-size: 1.5em;
        float: right;
        margin: -0.25em -0.5em 0.25em 0.25em;
    }

    .alert-modal p {
        color: #ffffff;
        margin-bottom: .75em;
        font-weight: 300;
    }

    .alert-modal .ink-alert {
        margin-bottom: .75em;
        font-size: .85em;
        font-weight: 400;
        color: #ff433f;
    }

    .alert-modal .ink-button {
        font-size: .8em;
    }

        .alert-modal .ink-button.light {
            border: 1px solid #c2c1bd;
            background: none;
            color: #ffffff;
        }

            .alert-modal .ink-button.light:focus,
            .alert-modal .ink-button.light:hover {
                border: 1px solid #0c7568;
                background: #0c7568;
            }

        .alert-modal .ink-button .fa {
            margin-right: .25em;
        }

    .alert-modal .checkbox-group {
        margin: 0;
    }

        .alert-modal .checkbox-group li {
            margin-right: 1em;
            position: relative;
            display: inline-block;
        }

            .alert-modal .checkbox-group li label {
                display: inline-block;
                cursor: pointer;
                cursor: hand;
                font-size: .9em;
                color: #ffffff;
                text-transform: none;
                font-weight: 300;
                margin: 0;
                padding: 0;
                vertical-align: baseline;
            }

            .alert-modal .checkbox-group li input[type=checkbox] {
                margin-right: .5em;
                position: relative;
                visibility: hidden;
            }

                .alert-modal .checkbox-group li input[type=checkbox] ~ label:before {
                    position: absolute;
                    left: 0;
                    top: 2px;
                    content: "";
                    background: #f3f2ed;
                    border: 1px solid #f3f2ed;
                    height: 16px;
                    width: 16px;
                    line-height: 16px;
                    border-radius: 3px;
                    background-clip: padding-box;
                    display: inline-block;
                    cursor: pointer;
                    cursor: hand;
                }

                .alert-modal .checkbox-group li input[type=checkbox]:checked ~ label:before {
                    font-family: FontAwesome;
                    content: "\f00c";
                    background: #0f9585;
                    border: 1px solid #0f9585;
                    color: #ffffff;
                    font-size: .85em;
                    text-align: center;
                }

        .alert-modal .checkbox-group:after {
            content: "";
            display: table;
            clear: both;
        }

.focus-hint {
    position: absolute;
    z-index: 1;
    right: 0;
}

    .focus-hint .ink-button {
        background: #42413d;
        color: #ffffff;
        border: none;
        font-size: .85em;
        text-transform: none;
        text-align: left;
        line-height: 24px;
        position: absolute;
        left: 0;
        border-radius: 0 3px 3px 0;
        background-clip: padding-box;
    }

        .focus-hint .ink-button:before {
            content: "";
            position: absolute;
            left: -15px;
            top: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 21px 15px 21px 0;
            border-color: transparent #42413d transparent transparent;
        }

        .focus-hint .ink-button strong {
            font-size: 1.2em;
            font-weight: 400;
            margin-right: .25em;
        }

        .focus-hint .ink-button .fa {
            height: 24px;
            width: 24px;
            display: inline-block;
            border: 1px solid #d6d3c5;
            text-align: center;
            line-height: 21px;
            border-radius: 3px;
            background-clip: padding-box;
            margin-left: 10px;
            margin-right: -4px;
        }

        .focus-hint .ink-button:hover .fa {
            background: #0f9585;
            border: 1px solid #0f9585;
        }

.side-promo {
    background: #ffffff;
    border-left: 3px solid #42413d;
    position: fixed;
    padding: 1em;
    top: 50%;
    right: 0;
    width: 50%;
    z-index: 3000000000;
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

    .side-promo.active {
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        -webkit-transition: all 0.5s ease-in-out;
        -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
        -o-transition: all 0.5s ease-in-out;
    }

        .side-promo.active .promo-open .fa:before {
            content: "\f057";
        }

    .side-promo .promo-open {
        position: fixed;
        left: -100px;
        width: 100px;
        top: 50%;
        -webkit-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
        background: #42413d;
        padding: 10px;
        color: #ffffff;
        -webkit-transition: background 0.5s ease-in-out;
        -moz-transition: background 0.5s ease-in-out;
        -ms-transition: background 0.5s ease-in-out;
        -o-transition: background 0.5s ease-in-out;
        border-radius: 3px 0 0 3px;
        text-transform: uppercase;
        font-size: .85em;
        text-align: center;
    }

        .side-promo .promo-open .fa {
            font-size: 1.5em;
            margin-top: -0.5em;
        }

        .side-promo .promo-open:hover {
            text-decoration: none;
            color: #ffffff;
            background: #0f9585;
        }

@media screen and (max-width: 1260px) {
    .side-promo {
        width: 60%;
    }
}

@media screen and (max-width: 960px) {
    .side-promo {
        width: 70%;
    }
}

@media screen and (max-width: 640px) {
    .side-promo {
        width: 80%;
    }

        .side-promo .promo-open.active {
            left: inherit;
            top: calc((-1em) - (2px));
            height: 30px;
            width: auto;
            line-height: 30px;
            padding: 0 10px;
            display: block;
        }
}

@media screen and (max-width: 640px) {
    .side-promo {
        width: 95%;
    }
}

.side-promo-overlay {
    content: "";
    position: fixed;
    top: 0;
    width: 0%;
    left: 0;
    height: 100%;
    z-index: 300000000;
    background-color: #42413d;
    background-color: rgba(66, 65, 61, 0);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#0042413d, endColorstr=#0042413d)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#0042413d, endColorstr=#0042413d);
    -webkit-transition: background 0.25s ease;
    -moz-transition: background 0.25s ease;
    -ms-transition: background 0.25s ease;
    -o-transition: background 0.25s ease;
}

    .side-promo-overlay.active {
        width: 100%;
        background-color: #42413d;
        background-color: rgba(66, 65, 61, 0.5);
        zoom: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#8042413d, endColorstr=#8042413d)";
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#8042413d, endColorstr=#8042413d);
    }

aside.pswp-sidebar .pub {
    width: 300px;
}
/*border radius*/
/*transitions*/
input::-webkit-input-placeholder {
    color: #918f87;
}

input:-moz-placeholder {
    color: #918f87;
}

input::-moz-placeholder {
    color: #918f87;
}

input:-ms-input-placeholder {
    color: #918f87;
}

textarea::-webkit-input-placeholder {
    color: #918f87;
}

textarea:-moz-placeholder {
    color: #918f87;
}

textarea::-moz-placeholder {
    color: #918f87;
}

textarea:-ms-input-placeholder {
    color: #918f87;
}
/*

.keyframes(rotate, {
    0%{
        .transform(rotate(0)); 
    }

    100%{
        .transform(rotate(180));
    }
});

.keyframes(rotate-fix, {
    0%{
        .transform(rotate(0));
    }

    100%{
        .transform(rotate(360));
    }
});

*/
.ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.break-word {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-word;
}

#header {
    height: 100px;
    background-color: #f3f2ed;
}

@media screen and (max-width: 960px) {
    #header {
        min-height: 60px;
        height: 60px !important;
        -webkit-transition: height 0.25s ease;
        -moz-transition: height 0.25s ease;
        -ms-transition: height 0.25s ease;
        -o-transition: height 0.25s ease;
    }
}

#header .ink-grid .column-group .tiny-70 {
    -webkit-box-flex: 0 0 330px;
    -ms-flex: 0 0 330px;
    flex: 0 0 330px;
}

#header .ink-grid .column-group .tiny-30 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media screen and (max-width: 960px) {
    #header .ink-grid .column-group [class*=tiny-] {
        -webkit-box-flex: inherit;
        -ms-flex: inherit;
        flex: inherit;
    }
}

#header .logo {
    display: inline-block;
    position: relative;
    height: 60px;
    padding: 20px 0;
    margin: 0;
    font-size: 1em;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

@media screen and (max-width: 960px) {
    #header .logo {
        height: 50px;
        padding: 5px 0;
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -ms-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
    }
}

@media screen and (max-width: 640px) {
    #header .logo {
        height: 40px;
        padding: 10px 0;
        -webkit-transition: all 0.25s ease;
        -moz-transition: all 0.25s ease;
        -ms-transition: all 0.25s ease;
        -o-transition: all 0.25s ease;
    }
}

#header .logo a:after {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    background: rgba(243, 242, 237, 0.3);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80f3f2ed', endColorstr='#80f3f2ed', GradientType=1);
}

#header .logo img {
    display: block;
    height: auto;
    max-height: 100%;
}

#header .ink-navigation.content-menu {
    height: 100px;
    padding: 25px 0;
    margin: 0;
}

@media screen and (max-width: 960px) {
    #header .ink-navigation.content-menu {
        height: 60px;
        padding: 10px 0;
    }
}

@media screen and (max-width: 640px) {
    #header .ink-navigation.content-menu {
        padding: 15px 0;
    }
}

#header .ink-navigation.content-menu > ul.menu.horizontal {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-box;
    display: flex;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

@media screen and (max-width: 1260px) {
    #header .ink-navigation.content-menu > ul.menu.horizontal {
        float: right;
    }
}

#header .ink-navigation.content-menu > ul.menu.horizontal > li {
    margin-left: 10px;
}

    #header .ink-navigation.content-menu > ul.menu.horizontal > li > a {
        height: 50px;
        padding: 10px 15px;
        text-transform: uppercase;
        border-radius: 3px;
        background-clip: padding-box;
        border: 1px solid #f3f2ed;
        color: #6f6d66;
        font-weight: 400;
        white-space: nowrap;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
  		position: relative;
    }

        #header .ink-navigation.content-menu > ul.menu.horizontal > li > a:focus,
        #header .ink-navigation.content-menu > ul.menu.horizontal > li > a:hover {
            color: #42413d;
            text-decoration: none;
            border-radius: 3px;
            background-clip: padding-box;
            border: 1px solid #d6d3c5;
            background-color: #ffffff;
            background-color: rgba(255, 255, 255, 0.3);
            zoom: 1;
            -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4dffffff, endColorstr=#4dffffff)";
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4dffffff, endColorstr=#4dffffff);
        }

        #header .ink-navigation.content-menu > ul.menu.horizontal > li > a .fa {
            color: #a2a099;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            margin-left: .25em;
        }
		#header .ink-navigation.content-menu > ul.menu.horizontal > li > a span.new {
		  color: red;
		  font-weight: bold;
		  font-size: 12px;
		  position: absolute;
		  top: 0;
		  left: 50%;
		  -webkit-transform: translate(-50%, -15px);
		  transform: translate(-50%, -15px);
		}
	@media screen and (min-width: 1261px) {
	  #header .ink-navigation.content-menu > ul.menu.horizontal > li > a span.new {
	    -webkit-transform: translate(-50%, -10px);
	    transform: translate(-50%, -10px);
	        }
	}
    #header .ink-navigation.content-menu > ul.menu.horizontal > li:hover > a {
        color: #42413d;
        text-decoration: none;
        border-radius: 3px;
        background-clip: padding-box;
        border: 1px solid #d6d3c5;
        background-color: #ffffff;
        background-color: rgba(255, 255, 255, 0.3);
        zoom: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4dffffff, endColorstr=#4dffffff)";
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4dffffff, endColorstr=#4dffffff);
    }

    #header .ink-navigation.content-menu > ul.menu.horizontal > li .separator-above {
        border-top: 2px solid #d6d3c5;
    }

    #header .ink-navigation.content-menu > ul.menu.horizontal > li.has-dropdown ul.submenu {
        top: 98%;
        border-radius: 3px;
        background-clip: padding-box;
        border: 1px solid #d6d3c5;
    }
    
        #header .ink-navigation.content-menu > ul.menu.horizontal > li.has-dropdown ul.submenu li a {
            color: #6f6d66;
            background-color: #f3f2ed;
            white-space: nowrap;
        }

            #header .ink-navigation.content-menu > ul.menu.horizontal > li.has-dropdown ul.submenu li a:hover {
                color: #42413d;
                text-decoration: none;
                background-color: #ffffff;
                background-color: rgba(255, 255, 255, 0.3);
                zoom: 1;
                -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4dffffff, endColorstr=#4dffffff)";
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4dffffff, endColorstr=#4dffffff);
            }

        #header .ink-navigation.content-menu > ul.menu.horizontal > li.has-dropdown ul.submenu li .fa {
            float: right;
            line-height: 1.7em;
            color: #a2a099;
        }

        #header .ink-navigation.content-menu > ul.menu.horizontal > li.has-dropdown ul.submenu li strong {
            color: #0f9585;
            font-size: .7em;
            font-weight: 600;
            text-transform: uppercase;
        }

    #header .ink-navigation.content-menu > ul.menu.horizontal > li.menu-trigger > a {
        height: 40px;
        padding: 5px 15px;
        border: none;
        background: #42413d;
        color: #d6d3c5;
        white-space: nowrap;
    }

@media screen and (max-width: 640px) {
    #header .ink-navigation.content-menu > ul.menu.horizontal > li.menu-trigger > a {
        height: 30px;
        padding: 2px 10px;
    }
}

#header .ink-navigation.content-menu > ul.menu.horizontal > li.menu-trigger > a:hover {
    color: #ffffff;
}

    #header .ink-navigation.content-menu > ul.menu.horizontal > li.menu-trigger > a:hover .fa {
        color: #ffffff;
    }

#header .ink-navigation.content-menu > ul.menu.horizontal > li.menu-trigger > a .fa {
    color: #d6d3c5;
    margin-right: .25em;
    margin-left: 0;
}

@media screen and (max-width: 640px) {
    #header .ink-navigation.content-menu > ul.menu.horizontal > li.menu-trigger a {
        width: 34px;
    }

        #header .ink-navigation.content-menu > ul.menu.horizontal > li.menu-trigger a span {
            display: none;
        }
}

#header .ink-navigation.content-menu > ul.menu.horizontal > li.search-trigger .ink-button {
    background: #0f9585;
    color: #ffffff;
    border: none;
    padding: 0 15px;
    height: 40px;
    line-height: 30px;
    margin-right: .5em;
}

    #header .ink-navigation.content-menu > ul.menu.horizontal > li.search-trigger .ink-button span {
        display: none;
    }

    #header .ink-navigation.content-menu > ul.menu.horizontal > li.search-trigger .ink-button .fa {
        color: #ffffff;
        line-height: 40px;
        margin: 0;
    }

    #header .ink-navigation.content-menu > ul.menu.horizontal > li.search-trigger .ink-button:focus,
    #header .ink-navigation.content-menu > ul.menu.horizontal > li.search-trigger .ink-button:hover {
        border: none;
        background: #0c7568;
    }

@media screen and (max-width: 640px) {
    #header .ink-navigation.content-menu > ul.menu.horizontal > li.search-trigger .ink-button {
        height: 30px;
        width: 34px;
        padding: 0px 10px;
        margin-right: 0;
    }

        #header .ink-navigation.content-menu > ul.menu.horizontal > li.search-trigger .ink-button .fa {
            line-height: 30px;
        }
}

@media screen and (min-width: 961px) and (max-width: 1180px) {
    #header.six-items-max .ink-grid .column-group .tiny-70 {
        -webkit-box-flex: 0 0 240px;
        -ms-flex: 0 0 240px;
        flex: 0 0 240px;
    }

    #header.six-items-max .ink-navigation.content-menu {
        padding: 30px 0;
    }

        #header.six-items-max .ink-navigation.content-menu > ul.menu.horizontal li {
            margin-left: 2px;
        }

            #header.six-items-max .ink-navigation.content-menu > ul.menu.horizontal li a {
                font-size: .9em;
                line-height: 1.9em;
                height: 40px;
                padding: 5px 10px;
                white-space: nowrap;
            }

                #header.six-items-max .ink-navigation.content-menu > ul.menu.horizontal li a .fa {
                    margin-left: .15em;
                }
}
@media screen and (min-width: 1061px) and (max-width: 1260px) {
  #header.six-items-max .ink-grid .column-group .tiny-70 {
    -webkit-box-flex: 0 0 280px;
    -ms-flex: 0 0 280px;
    flex: 0 0 280px;
  }
  #header.six-items-max .ink-navigation.content-menu > ul.menu.horizontal li {
    margin-left: 2px;
  }
  #header.six-items-max .ink-navigation.content-menu > ul.menu.horizontal li a {
    padding: 5px 10px;
  }
}
@media screen and (min-width: 1261px) {
  #header.six-items-max .ink-navigation.content-menu > ul.menu.horizontal li {
    margin-left: 5px;
  }
}
#header.ink-sticky {
    top: -60px;
}

    #header.ink-sticky.ink-sticky-stuck {
        z-index: 10;
        min-height: 60px;
        height: 60px !important;
        top: 0px;
        -webkit-transition: top 0.25s ease;
        -moz-transition: top 0.25s ease;
        -ms-transition: top 0.25s ease;
        -o-transition: top 0.25s ease;
    }

        #header.ink-sticky.ink-sticky-stuck .logo {
            height: 50px;
            padding: 5px 0;
        }

@media screen and (max-width: 640px) {
    #header.ink-sticky.ink-sticky-stuck .logo {
        height: 40px;
        padding: 10px 0;
    }
}

#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu {
    height: 60px;
    padding: 10px 0;
    width: 100%;
}

@media screen and (max-width: 640px) {
    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu {
        padding: 15px 0;
    }
}

#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal {
    float: right;
}

    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li {
        display: none;
    }

        #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search {
            display: inherit !important;
            width: 100%;
        }

@media screen and (max-width: 1260px) {
    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search {
        display: none !important;
    }
}

#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form {
    width: 100%;
}

    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group {
        margin-bottom: 0;
    }

        #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button {
            margin-top: 0;
        }

            #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span > input,
            #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span > select {
                border-radius: 0;
                background-clip: padding-box;
                padding: 0 10px;
                height: 40px;
                color: #42413d;
                background: #ffffff;
                vertical-align: top;
                border-right: 0;
                border-color: #c2c1bd;
            }

            #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span:first-of-type > input,
            #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span:first-child > input {
                border-radius: 3px 0 0 3px;
                background-clip: padding-box;
            }

            #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span > select {
                position: relative;
                padding-right: 28px !important;
                background: 0;
                background-color: #ffffff;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                outline: 0;
            }

                #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span > select::-ms-expand {
                    display: none;
                }

            #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select:hover:before {
                filter: alpha(opacity=100);
                opacity: 1;
            }

            #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select:before {
                position: absolute;
                top: 0%;
                right: 0;
                width: 30px;
                height: 40px;
                line-height: 40px;
                font-size: 1.4em;
                text-align: center;
                font-family: FontAwesome;
                content: "\f107";
                text-shadow: none;
                color: #42413d;
                z-index: 1;
                cursor: pointer;
                pointer-events: none;
                filter: alpha(opacity=60);
                opacity: 0.6;
            }

            #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button .ink-button {
                border: none;
                background: #0f9585;
                padding: 0 20px;
                height: 40px;
                color: #ffffff;
                border-radius: 0 3px 3px 0;
                background-clip: padding-box;
                -webkit-box-shadow: none;
                box-shadow: none;
                -webkit-transition: all 0.25s ease-in-out;
                -moz-transition: all 0.25s ease-in-out;
                -ms-transition: all 0.25s ease-in-out;
                -o-transition: all 0.25s ease-in-out;
                margin-right: 1em;
                position: relative;
            }

                #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button .ink-button:hover {
                    background: #0c7568;
                }

                #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button .ink-button .fa {
                    line-height: 40px;
                }

            #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown {
                margin-top: 0;
            }

                #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .ink-button {
                    width: 100%;
                    background: #ffffff;
                    border-radius: 0;
                    background-clip: padding-box;
                    color: #42413d;
                    padding: 0 10px;
                    height: 40px;
                    line-height: 40px;
                    vertical-align: top;
                    text-transform: none;
                    text-align: left;
                    border: 1px solid #c2c1bd;
                    border-right: none;
                }

                #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown:hover .ink-button:before {
                    filter: alpha(opacity=100);
                    opacity: 1;
                }

                #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown.active .ink-button {
                    -webkit-box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
                    box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
                }

                #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu {
                    width: 100%;
                    max-width: 100%;
                    max-height: 300px;
                    min-width: auto;
                    overflow-y: auto;
                    top: 100%;
                    padding: 1em 1em 0 1em;
                    margin: 0;
                    border: none;
                    font-size: 1em;
                    border-radius: 0 0 3px 3px;
                    background-clip: padding-box;
                }

                    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li {
                        margin-bottom: .5em;
                        float: left;
                        width: 100%;
                    }

@media screen and (max-width: 1260px) {
    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li {
        width: 100%;
    }
}

#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li label {
    display: inline-block;
    cursor: pointer;
    cursor: hand;
    color: #42413d;
    text-transform: none;
    font-weight: 400;
    margin: 0;
    padding-left: 0;
    vertical-align: baseline;
}

#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio],
#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=checkbox] {
    margin-right: .5em;
    position: relative;
    visibility: hidden;
}

    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio] ~ label:before,
    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=checkbox] ~ label:before {
        position: absolute;
        left: 0;
        top: 3px;
        content: "";
        background: #f3f2ed;
        border: 1px solid #c2c1bd;
        height: 16px;
        width: 16px;
        border-radius: 3px;
        background-clip: padding-box;
        display: inline-block;
        cursor: pointer;
        cursor: hand;
    }

    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio]:checked ~ label:before,
    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=checkbox]:checked ~ label:before {
        font-family: FontAwesome;
        content: "\f00c";
        background: #0f9585;
        border: 1px solid #0f9585;
        color: #ffffff;
        font-size: .75em;
        text-align: center;
    }

    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio]:checked ~ label,
    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=checkbox]:checked ~ label {
        color: #0f9585;
    }

@media screen and (max-width: 800px) {
    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio]:checked ~ label:before {
        font-size: .9em !important;
    }
}

#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio] ~ label:before {
    border-radius: 16px;
    background-clip: padding-box;
}

#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button span.select .ink-dropdown .dropdown-menu:after {
    content: "";
    display: table;
    clear: both;
}

#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .control.append-button .autocomplete {
    min-width: 170px;
}

#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .ink-alert {
    position: absolute;
    width: 180px;
    padding: .5em;
    top: 3.5em;
    left: 50%;
    margin: 0;
    margin-left: -90px;
    font-size: .7em;
    white-space: normal;
    border-radius: 3px;
    background-clip: padding-box;
    background: #42413d;
    color: #ffffff;
    font-weight: 400;
    filter: alpha(opacity=0);
    opacity: 0;
}

    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .ink-alert.active {
        filter: alpha(opacity=100);
        opacity: 1;
        top: 5em;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
    }

    #header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search .ink-form .control-group .ink-alert:before {
        content: '';
        position: absolute;
        top: -10px;
        left: 50%;
        margin-left: -10px;
        width: 0;
        height: 0;
        border-bottom: solid 10px #42413d;
        border-left: solid 10px transparent;
        border-right: solid 10px transparent;
    }

#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.search-trigger,
#header.ink-sticky.ink-sticky-stuck .ink-navigation.content-menu > ul.menu.horizontal > li.menu-trigger {
    display: inherit !important;
}

@-moz-document url-prefix() {
    #header .ink-navigation.content-menu > ul.menu.horizontal > li.has-dropdown ul.submenu li a {
        white-space: nowrap;
    }
}

.cover {
    position: relative;
    height: 500px;
    background: #42413d url() no-repeat center center;
    background-size: cover;
}

    .cover .cover-video {
        height: 500px;
        width: 100%;
        overflow: hidden;
        position: absolute;
    }

        .cover .cover-video video {
            position: absolute;
            left: 50%;
            top: 50%;
            min-width: 100%;
            min-height: 100%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            z-index: 0;
        }

    .cover .cover-ad {
        padding: 1em 0;
        position: relative;
        z-index: 1;
        background-color: #d6d3c5;
        background-color: rgba(214, 211, 197, 0.6);
        zoom: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99d6d3c5, endColorstr=#99d6d3c5)";
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#99d6d3c5, endColorstr=#99d6d3c5);
    }

        .cover .cover-ad a {
            color: #42413d;
            display: block;
        }

            .cover .cover-ad a:hover {
                text-decoration: none;
            }

                .cover .cover-ad a:hover span.ink-button {
                    background-color: #42413d;
                    zoom: 1;
                    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff42413d, endColorstr=#ff42413d)";
                    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff42413d, endColorstr=#ff42413d);
                }

            .cover .cover-ad a span.ink-button {
                font-size: 1em;
                font-weight: 300;
                text-transform: uppercase;
                color: #f3f2ed;
                border-radius: 5px;
                background-clip: padding-box;
                padding: 5px 15px;
                margin-top: .5em;
                border: none;
                background-color: #42413d;
                background-color: rgba(66, 65, 61, 0.7);
                zoom: 1;
                -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#b342413d, endColorstr=#b342413d)";
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b342413d, endColorstr=#b342413d);
                -webkit-transition: all 0.25s ease-in-out;
                -moz-transition: all 0.25s ease-in-out;
                -ms-transition: all 0.25s ease-in-out;
                -o-transition: all 0.25s ease-in-out;
            }

                .cover .cover-ad a span.ink-button:hover {
                    -webkit-box-shadow: none;
                    box-shadow: none;
                }

        .cover .cover-ad h2 {
            font-size: 2.4em;
            line-height: 1.1em;
            font-weight: 300;
            margin-bottom: 0;
        }

            .cover .cover-ad h2 strong {
                font-weight: 400;
            }

        .cover .cover-ad p {
            font-size: 1.3em;
            line-height: 1.2em;
            font-weight: 300;
            margin-bottom: 0;
        }

@media screen and (max-width: 640px) {
    .cover .cover-ad h2 {
        font-size: 1.8em;
    }

    .cover .cover-ad p {
        font-size: 1.1em;
    }
}

.cover .cover-ad .cover-ad-button {
    display: inline-block;
    font-size: 1em;
    font-weight: 300;
    text-transform: uppercase;
    color: #f3f2ed;
    border-radius: 5px;
    background-clip: padding-box;
    padding: 5px 15px;
    margin-top: .5em;
    border: none;
    background-color: #42413d;
    background-color: rgba(66, 65, 61, 0.7);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#b342413d, endColorstr=#b342413d)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b342413d, endColorstr=#b342413d);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

    .cover .cover-ad .cover-ad-button:hover {
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: #42413d;
        zoom: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff42413d, endColorstr=#ff42413d)";
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff42413d, endColorstr=#ff42413d);
    }

.cover .cover-search {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 0;
    height: 130px;
    background-color: #42413d;
    background-color: rgba(66, 65, 61, 0.8);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d);
}

    .cover .cover-search .control-group {
        margin-bottom: 0;
    }

        .cover .cover-search .control-group .control.append-button {
            margin-top: 0;
        }

            .cover .cover-search .control-group .control.append-button span {
                margin-left: 1px;
            }

                .cover .cover-search .control-group .control.append-button span > input,
                .cover .cover-search .control-group .control.append-button span > select {
                    border-radius: 0;
                    background-clip: padding-box;
                    padding: 0 10px;
                    height: 44px;
                    font-size: 1.2em;
                    color: #42413d;
                    background: #ffffff;
                    vertical-align: top;
                    border: none;
                }

                .cover .cover-search .control-group .control.append-button span:first-of-type > input {
                    border-radius: 3px 0 0 3px;
                    background-clip: padding-box;
                }

                .cover .cover-search .control-group .control.append-button span > select {
                    position: relative;
                    padding-right: 30px !important;
                    background: 0;
                    background-color: #ffffff;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    appearance: none;
                    outline: 0;
                }

                    .cover .cover-search .control-group .control.append-button span > select::-ms-expand {
                        display: none;
                    }

                .cover .cover-search .control-group .control.append-button span.select:hover:before {
                    filter: alpha(opacity=100);
                    opacity: 1;
                }

                .cover .cover-search .control-group .control.append-button span.select:before {
                    position: absolute;
                    top: 0%;
                    right: 0;
                    width: 44px;
                    height: 44px;
                    line-height: 44px;
                    font-size: 1.4em;
                    text-align: center;
                    font-family: FontAwesome;
                    content: "\f107";
                    text-shadow: none;
                    color: #42413d;
                    z-index: 1;
                    cursor: pointer;
                    pointer-events: none;
                    filter: alpha(opacity=60);
                    opacity: 0.6;
                }

            .cover .cover-search .control-group .control.append-button .ink-button {
                border: none;
                background: #0f9585;
                padding: 0 20px;
                height: 44px;
                font-size: 1.1em;
                text-transform: uppercase;
                color: #ffffff;
                border-radius: 0 3px 3px 0;
                background-clip: padding-box;
                -webkit-box-shadow: none;
                box-shadow: none;
                -webkit-transition: all 0.25s ease-in-out;
                -moz-transition: all 0.25s ease-in-out;
                -ms-transition: all 0.25s ease-in-out;
                -o-transition: all 0.25s ease-in-out;
                position: relative;
            }

@media screen and (max-width: 800px) {
    .cover .cover-search .control-group .control.append-button .ink-button {
        width: 100%;
        border-radius: 3px;
        background-clip: padding-box;
    }

        .cover .cover-search .control-group .control.append-button .ink-button span.hide-medium {
            display: inline !important;
        }
}

.cover .cover-search .control-group .control.append-button .ink-button span {
    margin-left: .25em;
}

.cover .cover-search .control-group .control.append-button .ink-button:hover {
    background: #0c7568;
}

.cover .cover-search .control-group .control.append-button .ink-button .fa {
    line-height: 44px;
}

.cover .cover-search .control-group .control.append-button .ink-alert {
    position: absolute;
    width: 100%;
    padding: .5em 0;
    top: -3.5em;
    left: 0;
    right: 0;
    margin: 0 !important;
    font-size: .7em;
    white-space: normal;
    border-radius: 3px;
    background-clip: padding-box;
    background: #ffffff;
    color: #42413d;
    font-weight: 400;
    filter: alpha(opacity=0);
    opacity: 0;
}

    .cover .cover-search .control-group .control.append-button .ink-alert.active {
        filter: alpha(opacity=100);
        opacity: 1;
        top: -5em;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
    }

    .cover .cover-search .control-group .control.append-button .ink-alert:after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        margin-left: -10px;
        width: 0;
        height: 0;
        border-top: solid 10px #ffffff;
        border-left: solid 10px transparent;
        border-right: solid 10px transparent;
    }

@media screen and (max-width: 960px) {
    .cover .cover-search .control-group .control.append-button .ink-alert {
        left: auto;
        min-width: 180px;
        margin: 0 !important;
    }

        .cover .cover-search .control-group .control.append-button .ink-alert:after {
            left: auto;
            right: 20px;
        }
}

.cover .cover-search .control-group .control.append-button span.select .ink-dropdown .ink-button {
    width: 100%;
    background: #ffffff;
    border-radius: 0;
    background-clip: padding-box;
    font-size: 1.2em;
    color: #42413d;
    padding: 0 44px 0 10px;
    height: 44px;
    line-height: 44px;
    vertical-align: top;
    text-transform: none;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.cover .cover-search .control-group .control.append-button span.select .ink-dropdown:hover .ink-button {
    background: #f3f2ed;
}

    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown:hover .ink-button:before {
        filter: alpha(opacity=100);
        opacity: 1;
    }

.cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu {
    width: 100%;
    max-width: 100%;
    max-height: 300px;
    overflow-y: auto;
    top: 100%;
    padding: 1em 1em 0 1em;
    margin: 0;
    border: none;
    font-size: 1em;
    border-radius: 0 0 3px 3px;
    background-clip: padding-box;
    -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.3);
}

    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li {
        margin-bottom: .5em;
        float: left;
        width: 50%;
    }

@media screen and (max-width: 1260px) {
    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li {
        width: 100%;
    }
}

.cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li label {
    display: inline-block;
    cursor: pointer;
    cursor: hand;
    color: #42413d;
    text-transform: none;
    font-weight: 400;
    margin: 0;
    padding-left: 0;
    vertical-align: baseline;
    outline: none;
}

.cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio],
.cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=checkbox] {
    margin-right: .5em;
    position: relative;
    vertical-align: super;
    visibility: hidden;
}

    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio] ~ label:before,
    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=checkbox] ~ label:before {
        position: absolute;
        left: 0;
        top: 3px;
        content: "";
        background: #f3f2ed;
        border: 1px solid #c2c1bd;
        height: 16px;
        width: 16px;
        border-radius: 3px;
        background-clip: padding-box;
        display: inline-block;
        cursor: pointer;
        cursor: hand;
    }

    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio]:checked ~ label:before,
    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=checkbox]:checked ~ label:before {
        font-family: FontAwesome;
        content: "\f00c";
        background: #0f9585;
        border: 1px solid #0f9585;
        color: #ffffff;
        font-size: .75em;
        text-align: center;
    }

    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio]:checked ~ label,
    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=checkbox]:checked ~ label {
        color: #0f9585;
    }

@media screen and (max-width: 800px) {
    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio]:checked ~ label:before {
        font-size: .9em !important;
    }
}

.cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li input[type=radio] ~ label:before {
    border-radius: 16px;
    background-clip: padding-box;
}

.cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu:after {
    content: "";
    display: table;
    clear: both;
}

.cover .cover-search .adv-search {
    font-size: .85em;
    margin-top: 1em;
}

    .cover .cover-search .adv-search a {
        color: #12b19e;
        text-decoration: none;
        margin-left: 1em;
    }

        .cover .cover-search .adv-search a:hover {
            color: #15cdb7;
        }

        .cover .cover-search .adv-search a.push-right {
            text-align: center;
        }

@media screen and (max-width: 960px) {
    .cover .cover-search .adv-search a.push-right {
        width: auto;
    }
}

.cover .cover-search .adv-search .powerd {
    color: #d6d3c5;
    white-space: nowrap;
    margin-left: .5em;
    padding-left: .5em;
    border-left: 1px solid #a2a099;
}

    .cover .cover-search .adv-search .powerd small {
        color: #a2a099;
        margin-left: .5em;
    }

@media screen and (max-width: 640px) {
    .cover .cover-search {
        padding: 20px;
        height: auto;
    }

        .cover .cover-search .adv-search .powerd {
            margin-top: .5em;
            margin-left: 0;
            padding-left: 0;
            border-left: none;
            display: block;
        }
}

.cover .pub:before {
    display: none;
}

.cover .controls {
    position: absolute;
    right: 1em;
    top: 1em;
    z-index: 2;
}

    .cover .controls .ink-navigation ul.menu li {
        margin-left: .25em;
    }

        .cover .controls .ink-navigation ul.menu li .ink-button {
            background: #42413d;
            border: none;
            color: #ffffff;
            padding: 0;
            width: 25px;
            height: 25px;
            line-height: 25px;
            text-align: center;
            font-size: .9em;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            filter: alpha(opacity=60);
            opacity: 0.6;
        }

            .cover .controls .ink-navigation ul.menu li .ink-button:hover {
                filter: alpha(opacity=100);
                opacity: 1;
            }

            .cover .controls .ink-navigation ul.menu li .ink-button.play {
                display: none;
                background: none;
                font-size: 3em;
                top: 50%;
            }

@media screen and (max-width: 960px) {
    .cover .controls {
        left: 0;
        right: 1em;
        top: 55%;
        -webkit-transform: translate(0, -55%);
        transform: translate(0, -55%);
    }

        .cover .controls .ink-navigation ul.menu li {
            float: none;
            position: relative;
            text-align: right;
            margin: .5em 0;
        }

            .cover .controls .ink-navigation ul.menu li .ink-button {
                width: 30px;
                height: 30px;
                line-height: 30px;
                font-size: 1.2em;
            }

                .cover .controls .ink-navigation ul.menu li .ink-button.play {
                    position: absolute;
                    left: 50%;
                    -webkit-transform: translate(-50%, 0);
                    transform: translate(-50%, 0);
                    filter: alpha(opacity=80);
                    opacity: 0.8;
                    z-index: 1;
                }

                .cover .controls .ink-navigation ul.menu li .ink-button:hover {
                    filter: alpha(opacity=100);
                    opacity: 1;
                }
}
/*// mobile search //*/
@media screen and (max-width: 800px) {
    .cover {
        height: 370px;
        margin-bottom: 270px;
    }

        .cover .cover-search {
            bottom: -270px;
            height: 270px;
            background-color: #42413d;
        }

            .cover .cover-search .ink-grid {
                padding: 0;
            }

            .cover .cover-search .adv-search {
                margin-bottom: -1em;
            }

                .cover .cover-search .adv-search .push-right {
                    float: none;
                    margin: 0 1em;
                }

            .cover .cover-search .control-group .control.append-button {
                display: block;
            }

                .cover .cover-search .control-group .control.append-button > span,
                .cover .cover-search .control-group .control.append-button span > input,
                .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .ink-button {
                    margin-left: 0;
                    border-radius: 3px !important;
                    background-clip: padding-box !important;
                    height: 36px;
                    line-height: 36px;
                    font-size: 1em;
                }

                .cover .cover-search .control-group .control.append-button span.select:before {
                    width: 36px;
                    height: 36px;
                    line-height: 36px;
                }

                .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu {
                    border-radius: 3px;
                    background-clip: padding-box;
                }

                    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li {
                        width: 50%;
                    }

                .cover .cover-search .control-group .control.append-button span > select {
                    border-radius: 3px;
                    background-clip: padding-box;
                    height: 36px;
                    line-height: 36px;
                    font-size: 1em;
                }

                .cover .cover-search .control-group .control.append-button > span {
                    display: block;
                    margin-bottom: 20px;
                }

                .cover .cover-search .control-group .control.append-button .ink-button {
                    height: 36px;
                }

                    .cover .cover-search .control-group .control.append-button .ink-button .fa {
                        line-height: 36px;
                    }

                .cover .cover-search .control-group .control.append-button .ink-alert {
                    top: -4.5em;
                    background: #6f6d66;
                    color: #ffffff;
                    padding: 1em;
                    width: 200px;
                    left: 50%;
                    -webkit-transform: translate(-50%, 0);
                    transform: translate(-50%, 0);
                }

                    .cover .cover-search .control-group .control.append-button .ink-alert:after {
                        left: 50%;
                        right: auto;
                        border-top: solid 10px #6f6d66;
                    }

                    .cover .cover-search .control-group .control.append-button .ink-alert.active {
                        top: -5.5em;
                        z-index: 1;
                    }

        .cover .controls {
            top: 70%;
            -webkit-transform: translate(0, -70%);
            transform: translate(0, -70%);
        }
}

@media screen and (max-width: 800px) and (min-width: 450px) {
    .cover.search-five-options .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li,
    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li {
        width: 50%;
        float: left;
    }
}

@media screen and (max-width: 450px) {
    .cover .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li {
        width: 100%;
    }

    .cover .controls {
        top: 80%;
        -webkit-transform: translate(0, -80%);
        transform: translate(0, -80%);
    }
}

@media screen and (max-width: 320px) {
    .cover {
        height: 220px;
    }

        .cover .controls {
            top: auto;
            bottom: 0;
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
        }

            .cover .controls .ink-navigation ul.menu li .ink-button.play {
                -webkit-transform: translate(-50%, 40%);
                transform: translate(-50%, 40%);
            }
}
/*// search-five-options //*/
@media screen and (max-width: 800px) {
    .search-five-options {
        margin-bottom: 325px;
    }

        .search-five-options .adv-search a.push-right {
            float: none;
        }
}

.search-five-options .cover-search .control-group .control.append-button span.select {
    max-width: 15%;
}

    .search-five-options .cover-search .control-group .control.append-button span.select:before {
        width: 34px;
    }

    .search-five-options .cover-search .control-group .control.append-button span.select .ink-button {
        font-size: 1.1em;
        padding: 0 34px 0 10px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .search-five-options .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu {
        min-width: 100%;
    }

        .search-five-options .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu li {
            float: none;
            width: 100%;
        }

@media screen and (max-width: 960px) {
    .search-five-options .cover-search .control-group .control.append-button span.select {
        max-width: 20%;
    }
}

@media screen and (max-width: 800px) {
    .search-five-options .cover-search .control-group .control.append-button span.select {
        max-width: 100%;
    }

        .search-five-options .cover-search .control-group .control.append-button span.select.price {
            width: 47%;
            float: left;
        }

        .search-five-options .cover-search .control-group .control.append-button span.select.age {
            width: 47%;
            float: right;
        }
}

@media screen and (max-width: 800px) {
    .search-five-options .cover-search {
        bottom: -325px;
        height: 325px;
        padding: 20px;
        background-color: #42413d;
    }

        .search-five-options .cover-search .ink-grid {
            padding: 0;
        }

        .search-five-options .cover-search .control-group .control.append-button {
            display: block;
        }

            .search-five-options .cover-search .control-group .control.append-button > span,
            .search-five-options .cover-search .control-group .control.append-button span > input,
            .search-five-options .cover-search .control-group .control.append-button span.select .ink-dropdown .ink-button {
                margin-left: 0;
                border-radius: 3px !important;
                background-clip: padding-box !important;
                height: 36px;
                line-height: 36px;
                font-size: 1em;
            }

            .search-five-options .cover-search .control-group .control.append-button span.select:before {
                width: 36px;
                height: 36px;
                line-height: 36px;
            }

            .search-five-options .cover-search .control-group .control.append-button span.select .ink-dropdown .dropdown-menu {
                border-radius: 3px;
                background-clip: padding-box;
            }

            .search-five-options .cover-search .control-group .control.append-button span.select.age .ink-dropdown .dropdown-menu li,
            .search-five-options .cover-search .control-group .control.append-button span.select.price .ink-dropdown .dropdown-menu li {
                width: 100%;
                float: none;
            }

            .search-five-options .cover-search .control-group .control.append-button > span {
                display: block;
                margin-bottom: 20px;
            }

            .search-five-options .cover-search .control-group .control.append-button .ink-button {
                height: 36px;
                width: 100%;
                border-radius: 3px !important;
                background-clip: padding-box !important;
            }

                .search-five-options .cover-search .control-group .control.append-button .ink-button .fa {
                    line-height: 36px;
                }

                .search-five-options .cover-search .control-group .control.append-button .ink-button span.hide-medium {
                    display: inline !important;
                }

            .search-five-options .cover-search .control-group .control.append-button .ink-alert {
                top: -4.5em;
                background: #6f6d66;
                color: #ffffff;
                padding: 1em;
                width: 200px;
                left: 50%;
                -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
            }

                .search-five-options .cover-search .control-group .control.append-button .ink-alert:after {
                    left: 50%;
                    right: auto;
                    border-top: solid 10px #6f6d66;
                }

                .search-five-options .cover-search .control-group .control.append-button .ink-alert.active {
                    top: -5.5em;
                    z-index: 1;
                }
}
/*// no-pub  //*/
.no-pub {
    height: auto;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

    .no-pub .cover-search {
        position: relative;
        height: auto;
        padding: 4em 0;
    }

        .no-pub .cover-search .adv-search {
            margin-bottom: -2em;
        }

            .no-pub .cover-search .adv-search .push-right {
                text-align: center;
            }

@media screen and (max-width: 960px) {
    .no-pub .cover-search .adv-search .push-right {
        width: auto;
    }
}

@media screen and (max-width: 800px) {
    .no-pub {
        height: auto;
        margin-bottom: 0;
    }

        .no-pub .cover-search {
            position: relative;
            top: 0;
            bottom: 0;
            height: auto;
            padding: 2em 20px;
            background-color: #42413d;
            background-color: rgba(66, 65, 61, 0.8);
            zoom: 1;
            -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d)";
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d);
        }

            .no-pub .cover-search .adv-search {
                margin-bottom: -1em;
                margin-top: 1.5em;
            }

                .no-pub .cover-search .adv-search .push-right {
                    float: none;
                    margin: 0 1em;
                }
}

.vehicle-list,
.stands-list {
    margin: 0;
}

    .vehicle-list li,
    .stands-list li {
        margin: 0;
    }

        .vehicle-list li article,
        .stands-list li article {
            position: relative;
        }

            .vehicle-list li article a,
            .stands-list li article a {
                color: #42413d;
                text-decoration: none;
            }

                .vehicle-list li article a .thumb,
                .ink-modal .description article .thumb,
                .stands-list li article a .thumb {
                    position: relative;
                    overflow: hidden;
                }

                    .vehicle-list li article a .thumb picture,
                    .ink-modal .description article .thumb picture,
                    .stands-list li article a .thumb picture {
                        height: 0;
                        padding-bottom: 62.5%;
                        position: relative;
                        overflow: hidden;
                        background: #f3f2ed;
                        background-image: url("/Content/img/autosapo-placeholder.png");
                        background-position: center center;
                        background-size: auto 100%;
                        background-repeat: no-repeat;
                    }

                        .vehicle-list li article a .thumb picture img,
                        .ink-modal .description article .thumb picture img,
                        .stands-list li article a .thumb picture img {
                            position: absolute;
                            top: 50%;
                            left: 0;
                            width: 100%;
                            -webkit-transform: translate(0, -50%);
                            transform: translate(0, -50%);
                        }

                    .vehicle-list li article a .thumb .options,
                    .ink-modal .description article .thumb .options,
                    .stands-list li article a .thumb .options {
                        margin: 0;
                        padding: .5em .5em 0 0;
                        list-style: none;
                        position: absolute;
                        top: 0;
                        bottom: 0;
                        left: 0;
                        right: 0;
                    }

                        .vehicle-list li article a .thumb .options li,
                        .ink-modal .description article .thumb .options li,
                        .stands-list li article a .thumb .options li {
                            display: inline-block;
                            float: right;
                        }

                            .vehicle-list li article a .thumb .options li span,
                            .ink-modal .description article .thumb .options li span,
                            .stands-list li article a .thumb .options li span {
                                position: relative;
                                z-index: 2;
                                float: right;
                                color: #fff;
                                text-transform: uppercase;
                                font-size: .75em;
                                line-height: 30px;
                                padding: 0 .8em;
                            }

                            .vehicle-list li article a .thumb .options li.new-car .fa,
                            .vehicle-list li article a .thumb .options li.new-price .fa,
                            .vehicle-list li article a .thumb .options li.certificate .fa,
                            .vehicle-list li article a .thumb .options li.recommended .fa,
                            .vehicle-list li article a .thumb .options li.badge-360 .fa,
                            .ink-modal .description article .thumb .options li.new-car .fa,
                            .ink-modal .description article .thumb .options li.new-price .fa,
                            .ink-modal .description article .thumb .options li.certificate .fa,
                            .ink-modal .description article .thumb .options li.recommended .fa,
                            .ink-modal .description article .thumb .options li.badge-360 .fa,
                            .stands-list li article a .thumb .options li.new-car .fa,
                            .stands-list li article a .thumb .options li.new-price .fa,
                            .stands-list li article a .thumb .options li.certificate .fa,
                            .stands-list li article a .thumb .options li.recommended .fa,
                            .stands-list li article a .thumb .options li.badge-360 .fa {
                                margin-right: .25em;
                            }

                            .vehicle-list li article a .thumb .options li.favorite,
                            .ink-modal .description article .thumb .options li.favorite,
                            .stands-list li article a .thumb .options li.favorite {
                                filter: alpha(opacity=0);
                                opacity: 0;
                                -webkit-transition: all 0.25s ease-in-out;
                                -moz-transition: all 0.25s ease-in-out;
                                -ms-transition: all 0.25s ease-in-out;
                                -o-transition: all 0.25s ease-in-out;
                            }

@media screen and (max-width: 960px) {
    .vehicle-list li article a .thumb .options li.favorite,
    .ink-modal .description article .thumb .options li.favorite,
    .stands-list li article a .thumb .options li.favorite {
        filter: alpha(opacity=100);
        opacity: 1;
    }
}

.vehicle-list li article a .thumb .options li.favorite span,
.ink-modal .description article .thumb .options li.favorite span,
.stands-list li article a .thumb .options li.favorite span {
    background-color: #42413d;
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff42413d, endColorstr=#ff42413d)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff42413d, endColorstr=#ff42413d);
    width: 30px;
    padding: 0;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    cursor: hand;
}

    .vehicle-list li article a .thumb .options li.favorite span .fa,
    .ink-modal .description article .thumb .options li.favorite span .fa,
    .stands-list li article a .thumb .options li.favorite span .fa {
        font-size: 1.5em;
        margin-top: -0.15em;
        vertical-align: middle;
    }

@media screen and (max-width: 960px) {
    .vehicle-list li article a .thumb .options li.favorite span .fa,
    .ink-modal .description article .thumb .options li.favorite span .fa,
    .stands-list li article a .thumb .options li.favorite span .fa {
        margin-top: 0;
    }
}

.vehicle-list li article a .thumb .options li.favorite span:hover .fa-star-o:before,
.ink-modal .description article .thumb .options li.favorite span:hover .fa-star-o:before,
.stands-list li article a .thumb .options li.favorite span:hover .fa-star-o:before {
    content: "\f005";
    color: #ffffff;
}

.vehicle-list li article a .thumb .options li.favorite.active,
.ink-modal .description article .thumb .options li.favorite.active,
.stands-list li article a .thumb .options li.favorite.active {
    filter: alpha(opacity=100);
    opacity: 1;
}

    .vehicle-list li article a .thumb .options li.favorite.active span .fa-star-o:before,
    .ink-modal .description article .thumb .options li.favorite.active span .fa-star-o:before,
    .stands-list li article a .thumb .options li.favorite.active span .fa-star-o:before {
        content: "\f005";
        color: #ffe100;
    }

.vehicle-list li article a .thumb .options li.new-car span,
.vehicle-list li article a .thumb .options li.new-price span,
.vehicle-list li article a .thumb .options li.certificate span,
.ink-modal .description article .thumb .options li.new-car span,
.ink-modal .description article .thumb .options li.new-price span,
.ink-modal .description article .thumb .options li.certificate span,
.stands-list li article a .thumb .options li.new-car span,
.stands-list li article a .thumb .options li.new-price span,
.stands-list li article a .thumb .options li.certificate span {
    background-color: #42413d;
    background-color: rgba(66, 65, 61, 0.7);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#b342413d, endColorstr=#b342413d)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b342413d, endColorstr=#b342413d);
}

.vehicle-list li article a .thumb .options li.badge-360,
.ink-modal .description article .thumb .options li.badge-360,
.stands-list li article a .thumb .options li.badge-360 {
    position: absolute;
    z-index: 0;
    left: .5em;
    top: .5em;
}

    .vehicle-list li article a .thumb .options li.badge-360 img,
    .ink-modal .description article .thumb .options li.badge-360 img,
    .stands-list li article a .thumb .options li.badge-360 img {
        width: 50px;
        height: auto;
    }

.vehicle-list li article a .thumb .options li.photos,
.ink-modal .description article .thumb .options li.photos,
.stands-list li article a .thumb .options li.photos {
    position: absolute;
    z-index: 2;
    bottom: .5em;
    right: .5em;
    background-color: #42413d;
    background-color: rgba(66, 65, 61, 0.7);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#b342413d, endColorstr=#b342413d)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#b342413d, endColorstr=#b342413d);
    color: #ffffff;
}

    .vehicle-list li article a .thumb .options li.photos span,
    .ink-modal .description article .thumb .options li.photos span,
    .stands-list li article a .thumb .options li.photos span {
        line-height: 25px;
        padding: 0 .5em;
    }

    .vehicle-list li article a .thumb .options li.photos .fa,
    .ink-modal .description article .thumb .options li.photos .fa,
    .stands-list li article a .thumb .options li.photos .fa {
        margin-right: .25em;
    }

.vehicle-list li article a .thumb .options li.bolt-stamp .fa-bolt,
.ink-modal .description article .thumb .options li.bolt-stamp .fa-bolt,
.stands-list li article a .thumb .options li.bolt-stamp .fa-bolt {
    font-size: 25px;
    line-height: 30px;
}

    .vehicle-list li article a .thumb .options li.bolt-stamp .fa-bolt,
    .vehicle-list li article a .thumb .options li.bolt-stamp .fa-bolt:before,
    .vehicle-list li article a .thumb .options li.bolt-stamp .fa-bolt:after,
    .ink-modal .description article .thumb .options li.bolt-stamp .fa-bolt,
    .ink-modal .description article .thumb .options li.bolt-stamp .fa-bolt:before,
    .ink-modal .description article .thumb .options li.bolt-stamp .fa-bolt:after,
    .stands-list li article a .thumb .options li.bolt-stamp .fa-bolt,
    .stands-list li article a .thumb .options li.bolt-stamp .fa-bolt:before,
    .stands-list li article a .thumb .options li.bolt-stamp .fa-bolt:after {
        width: 30px;
        height: 30px;
    }

.vehicle-list li article a .thumb .options li.more span,
.ink-modal .description article .thumb .options li.more span,
.stands-list li article a .thumb .options li.more span {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #0f9585;
    color: #ffffff;
    display: block;
    padding: 0 1em;
    font-size: 1em;
    line-height: 2em;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 300;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

.vehicle-list li article a .thumb:after,
.ink-modal .description article .thumb:after,
.stands-list li article a .thumb:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
}

.vehicle-list li article a .details,
.ink-modal .description article .details,
.stands-list li article a .details {
    border: 1px solid #e4e2d9;
    border-top: none;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

    .vehicle-list li article a .details h3,
    .ink-modal .description article .details h3,
    .stands-list li article a .details h3 {
        font-size: 1.1em;
        font-weight: 500;
        padding-bottom: .4em;
        border-bottom: 1px solid #e4e2d9;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        margin-bottom: .25em;
    }

    .vehicle-list li article a .details p,
    .ink-modal .description article .details p,
    .stands-list li article a .details p {
        font-size: .9em;
        margin-bottom: 0;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

        .vehicle-list li article a .details p.price,
        .ink-modal .description article .details p.price,
        .stands-list li article a .details p.price {
            color: #0f9585;
        }

            .vehicle-list li article a .details p.price .units,
            .ink-modal .description article .details p.price .units,
            .stands-list li article a .details p.price .units {
                font-size: 2.5em;
                font-weight: 300;
                letter-spacing: -0.05em;
                line-height: 1em;
                display: inline-block;
            }

            .vehicle-list li article a .details p.price .text,
            .ink-modal .description article .details p.price .text,
            .stands-list li article a .details p.price .text {
                font-size: 1.1em;
                font-weight: 400;
                line-height: 2.5em;
                text-transform: uppercase;
            }

    .vehicle-list li article a .details.has-location .location,
    .ink-modal .description article .details.has-location .location,
    .stands-list li article a .details.has-location .location {
        color: #6f6d66;
        font-size: .8em;
        margin-top: .15em;
    }

    .vehicle-list li article a .details.has-location .column-group div:last-child,
    .ink-modal .description article .details.has-location .column-group div:last-child,
    .stands-list li article a .details.has-location .column-group div:last-child {
        margin-top: .25em;
        padding-top: .25em;
        border-top: 1px solid #e4e2d9;
    }

    .vehicle-list li article a .details.has-location .price .text,
    .ink-modal .description article .details.has-location .price .text,
    .stands-list li article a .details.has-location .price .text {
        line-height: 2em;
        margin-top: .45em;
        margin-right: .25em;
        display: inline-block;
    }

.vehicle-list li article a:hover .thumb:after,
.stands-list li article a:hover .thumb:after {
    background-color: #0f9585;
    background-color: rgba(15, 149, 133, 0.25);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#400f9585, endColorstr=#400f9585)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#400f9585, endColorstr=#400f9585);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
}

.vehicle-list li article a:hover .thumb .options li.favorite,
.stands-list li article a:hover .thumb .options li.favorite {
    width: auto;
    filter: alpha(opacity=100);
    opacity: 1;
}

.vehicle-list li article a:hover .thumb .options li.more span,
.stands-list li article a:hover .thumb .options li.more span {
    filter: alpha(opacity=100);
    opacity: 1;
}

.vehicle-list li article a:hover .details,
.stands-list li article a:hover .details {
    background: #f3f2ed;
}

.vehicle-list li article a.ink-button,
.stands-list li article a.ink-button {
    position: absolute;
    bottom: .8em;
    left: .75em;
    padding: 6px 10px;
    font-size: .8em;
}

@media screen and (max-width: 640px) {
    .vehicle-list li article a.ink-button,
    .stands-list li article a.ink-button {
        bottom: .6em;
    }
}

.vehicle-list li article a.ink-button .fa,
.stands-list li article a.ink-button .fa {
    margin-right: .25em;
    color: #0f9585;
}

.vehicle-list li article a.ink-button:hover .fa,
.stands-list li article a.ink-button:hover .fa {
    color: #ffffff;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

.vehicle-list li article.highlighted,
.stands-list li article.highlighted {
    position: relative;
}

    .vehicle-list li article.highlighted a .thumb,
    .stands-list li article.highlighted a .thumb {
        margin-right: 25%;
    }

    .vehicle-list li article.highlighted a .car-views,
    .stands-list li article.highlighted a .car-views {
        position: absolute;
        right: -25%;
        top: 0;
        width: 25%;
    }

.vehicle-list li article.premium a .details,
.stands-list li article.premium a .details {
    background: #f3f2ed;
}

.vehicle-list li article.hide-all.show-medium,
.stands-list li article.hide-all.show-medium {
    margin-top: 1.5em;
}

.vehicle-list li article.power-stand a .details,
.stands-list li article.power-stand a .details {
    background: #f3f2ed;
}

.vehicle-list li article.power-stand a .thumb .options li.recommended span,
.stands-list li article.power-stand a .thumb .options li.recommended span {
    background-color: #978f6b;
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff978f6b, endColorstr=#ff978f6b)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff978f6b, endColorstr=#ff978f6b);
}

.vehicle-list li article[class*=state-] .thumb:before,
.stands-list li article[class*=state-] .thumb:before {
    position: absolute;
    z-index: 1;
    top: 25px;
    left: -65px;
    width: 200px;
    padding: 4px 0;
    background: #42413d;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.25);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    content: "";
    display: none;
}

.vehicle-list li article.state-sold .thumb:before,
.stands-list li article.state-sold .thumb:before {
    display: block;
    background-color: #e53935;
    content: "Vendido";
}

.vehicle-list li article.state-reserved .thumb:before,
.stands-list li article.state-reserved .thumb:before {
    display: block;
    background-color: #ff8f00;
    content: "Reservado";
}

.vehicle-list li article.state-soon .thumb:before,
.stands-list li article.state-soon .thumb:before {
    display: block;
    background-color: #978f6b;
    content: "Brevemente";
}

.vehicle-list li article.state-unavailable .thumb:before,
.stands-list li article.state-unavailable .thumb:before {
    display: block;
    background-color: #6f6d66;
    content: "Indisponível";
}

.vehicle-list li article.state-unavailable .thumb picture img,
.stands-list li article.state-unavailable .thumb picture img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.vehicle-list li article.state-unavailable a .details .column-group,
.stands-list li article.state-unavailable a .details .column-group {
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.vehicle-list li article.state-unavailable a:hover,
.stands-list li article.state-unavailable a:hover {
    cursor: default;
}

    .vehicle-list li article.state-unavailable a:hover .details,
    .stands-list li article.state-unavailable a:hover .details {
        background: none;
    }

    .vehicle-list li article.state-unavailable .options li.more,
    .vehicle-list li article.state-unavailable a:hover .thumb:after,
    .stands-list li article.state-unavailable .options li.more,
    .stands-list li article.state-unavailable a:hover .thumb:after {
        display: none;
    }

@media screen and (min-width: 960px) {
    .vehicle-list.list-items > li,
    .stands-list.list-items > li {
        width: 100%;
    }

        .vehicle-list.list-items > li article:not(.highlighted),
        .stands-list.list-items > li article:not(.highlighted) {
            height: 100%;
            position: relative;
        }

            .vehicle-list.list-items > li article:not(.highlighted) .thumb,
            .stands-list.list-items > li article:not(.highlighted) .thumb {
                width: 30%;
            }

            .vehicle-list.list-items > li article:not(.highlighted) .details,
            .stands-list.list-items > li article:not(.highlighted) .details {
                height: 100%;
                padding: .75em;
                overflow: hidden;
                border: 1px solid #e4e2d9;
                position: absolute;
                left: 30%;
                right: 0;
                top: 0;
                bottom: 0;
            }

                .vehicle-list.list-items > li article:not(.highlighted) .details .all-40,
                .stands-list.list-items > li article:not(.highlighted) .details .all-40 {
                    position: absolute;
                    bottom: .75em;
                    left: .75em;
                }

                .vehicle-list.list-items > li article:not(.highlighted) .details .all-60,
                .stands-list.list-items > li article:not(.highlighted) .details .all-60 {
                    position: absolute;
                    bottom: .75em;
                    right: .75em;
                }
}
/*NOVA LISTAGEM*/
.vehicle-list > li,
.stands-list > li {
    position: relative;
}

    .vehicle-list > li article a .thumb picture,
    .stands-list > li article a .thumb picture {
        padding-bottom: 70%;
    }

    .vehicle-list > li article.highlighted a .thumb picture,
    .stands-list > li article.highlighted a .thumb picture {
        padding-bottom: 62.5%;
    }

.vehicle-list .pub,
.stands-list .pub {
    position: absolute;
    left: calc(50% + 1em);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

@media screen and (max-width: 1260px) {
    .vehicle-list .pub,
    .stands-list .pub {
        left: calc(50% + .875em);
    }
}

@media screen and (max-width: 960px) {
    .vehicle-list .pub,
    .stands-list .pub {
        left: calc(50% + .75em);
    }
}

@media screen and (max-width: 640px) {
    .vehicle-list .pub,
    .stands-list .pub {
        position: relative;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

@media screen and (min-width: 1261px) {
    .highlights .vehicle-list > li,
    .highlights .stands-list > li {
        min-height: 620px;
    }
}

.vehicle-list.has-contact li article a .details .column-group div:last-child,
.stands-list.has-contact li article a .details .column-group div:last-child {
    margin-top: .25em;
    padding-top: .5em;
    border-top: 1px solid #e4e2d9;
}

.vehicle-list.has-contact li article a .details p.price,
.stands-list.has-contact li article a .details p.price {
    font-size: .7em;
}

.vehicle-list.has-contact li article a.ink-button,
.stands-list.has-contact li article a.ink-button {
    bottom: .5em;
}

.vehicle-list.has-stand li article a.ink-button,
.stands-list.has-stand li article a.ink-button {
    bottom: calc(.5em + 40px);
    color: #ffffff;
    background: #0f9585;
    border: 1px solid #0f9585;
}

    .vehicle-list.has-stand li article a.ink-button .fa,
    .stands-list.has-stand li article a.ink-button .fa {
        color: #ffffff;
    }

    .vehicle-list.has-stand li article a.ink-button:hover,
    .stands-list.has-stand li article a.ink-button:hover {
        background: #0a675c;
        border: 1px solid #0a675c;
    }

.vehicle-list.has-stand .stand,
.stands-list.has-stand .stand {
    height: 40px;
    padding: .5em;
    border: 1px solid #e4e2d9;
    border-top: none;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    background: #f3f2ed;
}

    .vehicle-list.has-stand .stand span,
    .stands-list.has-stand .stand span {
        display: inline-block;
        font-size: .8em;
        text-transform: uppercase;
        margin-left: .5em;
    }

.listing-header {
    background: #42413d;
    padding: 2em 0 1em 0;
}

    .listing-header h2 {
        color: #ffffff;
        font-size: 1.3em;
        font-weight: 300;
        margin: 0;
        top: 50%;
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%);
    }

        .listing-header h2 strong {
            font-size: 1.5em;
            margin-right: .25em;
            font-weight: 300;
            color: #d6d3c5;
        }

        .listing-header h2 small {
            font-weight: 300;
        }

    .listing-header.ink-sticky.ink-sticky-stuck {
        z-index: 10;
    }

    .listing-header .listing-options {
        padding: 0;
        margin: 0;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: -webkit-box;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

        .listing-header .listing-options li {
            float: left;
            margin: 0 0 0 1.5em;
        }

@media screen and (max-width: 960px) {
    .listing-header .listing-options li {
        margin: 1em 0 0 1.5em;
    }

        .listing-header .listing-options li:first-child {
            margin-left: 0;
        }
}

.listing-header .listing-options li .control-group {
    margin-bottom: 0;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-box;
    display: flex;
    position: relative;
}

    .listing-header .listing-options li .control-group label {
        display: inline-block;
        color: #d6d3c5;
        font-weight: 300;
        line-height: 34px;
        position: absolute;
        top: -2.5em;
        font-size: 11px;
        margin-left: .5em;
    }

    .listing-header .listing-options li .control-group .control {
        display: inline-block;
        position: relative;
    }

        .listing-header .listing-options li .control-group .control.button-group {
            display: -moz-flex;
            display: -ms-flexbox;
            display: -ms-flex;
            display: -webkit-box;
            display: flex;
            -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        }

            .listing-header .listing-options li .control-group .control.button-group .ink-button {
                border: none;
                margin: 0;
                background: #e4e2d9;
                color: #aca689;
                line-height: 1.5;
                padding: 0 8px;
                font-size: 1.4em;
                height: 34px;
            }

                .listing-header .listing-options li .control-group .control.button-group .ink-button:hover {
                    color: #42413d;
                    background: #ffffff;
                }

                .listing-header .listing-options li .control-group .control.button-group .ink-button.active {
                    color: #42413d;
                }

                .listing-header .listing-options li .control-group .control.button-group .ink-button:first-child {
                    border-radius: 3px 0 0 3px;
                    background-clip: padding-box;
                    border-right: 1px solid #aca689;
                }

                .listing-header .listing-options li .control-group .control.button-group .ink-button:last-child {
                    border-radius: 0 3px 3px 0;
                    background-clip: padding-box;
                }

        .listing-header .listing-options li .control-group .control span > select {
            position: relative;
            padding: 2px 10px;
            padding-right: 34px !important;
            color: #42413d;
            font-weight: 400;
            font-size: .85em;
            height: 34px;
            background: 0;
            background-color: #e4e2d9;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            outline: 0;
            border: none;
            border-radius: 3px;
            background-clip: padding-box;
        }

            .listing-header .listing-options li .control-group .control span > select::-ms-expand {
                display: none;
            }

        .listing-header .listing-options li .control-group .control span.select:hover select {
            background: #ffffff;
        }

        .listing-header .listing-options li .control-group .control span.select:hover:before {
            filter: alpha(opacity=100);
            opacity: 1;
        }

        .listing-header .listing-options li .control-group .control span.select:before {
            position: absolute;
            top: -4px;
            right: 0;
            width: 30px;
            height: 34px;
            line-height: 34px;
            font-size: 1.4em;
            text-align: center;
            font-family: FontAwesome;
            content: "\f107";
            text-shadow: none;
            color: #42413d;
            z-index: 1;
            cursor: pointer;
            cursor: hand;
            pointer-events: none;
            filter: alpha(opacity=60);
            opacity: 0.6;
        }

.listing-header .listing-options .ink-button,
.mobile-sort .control-group .ink-button {
    background: #f3f2ed;
    border: 1px solid #e4e2d9;
    color: #42413d;
    text-transform: none;
    line-height: 34px;
    padding: 0 8px;
    font-size: .9em;
    font-weight: 400;
    height: 34px;
    position: relative;
}

    .listing-header .listing-options .ink-button:focus,
    .listing-header .listing-options .ink-button:hover,
    .listing-header .listing-options .ink-button.active,
    .mobile-sort .control-group .ink-button:focus,
    .mobile-sort .control-group .ink-button:hover,
    .mobile-sort .control-group .ink-button.active {
        background: #ffffff;
        border: 1px solid #ffffff;
    }

    .listing-header .listing-options .ink-button .badge,
    .mobile-sort .control-group .ink-button .badge {
        position: absolute;
        right: -10px;
        top: -10px;
        display: block;
        background: #0f9585;
        color: #ffffff;
        border-radius: 20px;
        background-clip: padding-box;
        width: 20px;
        height: 20px;
        line-height: 18px;
        font-size: .8em;
    }

.listing-header .filter-nav-mobile {
    width: 100%;
}

    .listing-header .filter-nav-mobile ul li .ink-button {
        display: block;
        white-space: normal;
        border: none;
        margin: 0;
        background: #e4e2d9;
        color: #42413d;
        line-height: 1.2em;
        padding: 6px 8px;
        font-size: 1.1em;
        -moz-align-items: center;
        -ms-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: -webkit-box;
        display: flex;
        width: 100%;
        height: 100%;
    }

        .listing-header .filter-nav-mobile ul li .ink-button:hover,
        .listing-header .filter-nav-mobile ul li .ink-button:active {
            color: #42413d;
            background: #f3f2ed;
        }

.mobile-sort:after {
    content: "";
    display: table;
    clear: both;
}

.mobile-sort .control-group {
    margin-bottom: 0;
    height: 1em;
}

    .mobile-sort .control-group label {
        display: inline;
        font-size: .8em;
        margin-right: .5em;
    }

    .mobile-sort .control-group .control {
        display: inline;
        padding-left: 1.5em;
    }

@media screen and (max-width: 640px) {
    .mobile-sort .control-group .control {
        -webkit-box-flex: 0 0 60%;
        -ms-flex: 0 0 60%;
        flex: 0 0 60%;
    }
}

.mobile-sort .control-group .select {
    display: inline-block;
}

    .mobile-sort .control-group .select select {
        font-size: .9em;
        height: 2.5em;
    }

    .mobile-sort .control-group .select:before {
        line-height: 1.65em;
    }

@media screen and (max-width: 640px) {
    .mobile-sort .control-group .select {
        width: 100%;
    }

        .mobile-sort .control-group .select select {
            width: 100%;
        }
}

.mobile-sort .navigator {
    margin: .25em 0 0 0;
    height: 1em;
}

    .mobile-sort .navigator .ink-navigation ul.menu.horizontal li:first-child {
        margin-right: 1em;
    }

@media screen and (max-width: 640px) {
    .mobile-sort .navigator {
        float: none;
    }
}

@media screen and (max-width: 640px) {
    .mobile-sort .control-group {
        float: none;
        margin-top: 1.5em;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: -webkit-box;
        display: flex;
    }
}

.mobile-sort .control-group .ink-button {
    background: #ffffff;
    color: #0f9585;
}

@media screen and (max-width: 640px) {
    .mobile-sort .control-group .ink-button {
        -webkit-box-flex: 0 0 40%;
        -ms-flex: 0 0 40%;
        flex: 0 0 40%;
    }
}

.mobile-sort .control-group .ink-button:hover {
    border: 1px solid #0f9585;
    color: #ffffff;
    background: #0f9585;
}

.mobile-sort .control-group .ink-button .badge {
    line-height: 20px;
}

.filter-nav h3,
.stands-sorting h3 {
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 300;
}

    .filter-nav h3 strong,
    .stands-sorting h3 strong {
        font-weight: 500;
    }

.filter-nav .control-group,
.stands-sorting .control-group {
    margin-bottom: 0;
    line-height: inherit;
}

    .filter-nav .control-group label,
    .stands-sorting .control-group label {
        font-size: 1.3em;
        text-transform: uppercase;
        font-weight: 500;
        display: block;
        color: #6f6d66;
        margin-bottom: .5em;
    }

        .filter-nav .control-group label small,
        .stands-sorting .control-group label small {
            font-weight: 300;
            font-size: .7em;
        }

        .filter-nav .control-group label .ink-button,
        .stands-sorting .control-group label .ink-button {
            float: right;
            height: 25px;
            line-height: 20px;
            width: 25px;
            font-size: .8em;
            text-align: center;
            padding: 0;
            margin-top: .2em;
        }

            .filter-nav .control-group label .ink-button.active,
            .stands-sorting .control-group label .ink-button.active {
                background: #0f9585;
                color: #ffffff;
                border: 1px solid #0f9585;
            }

    .filter-nav .control-group input,
    .stands-sorting .control-group input {
        border-radius: 3px;
        background-clip: padding-box;
    }

    .filter-nav .control-group .slider,
    .stands-sorting .control-group .slider {
        position: relative;
        height: 10px;
        border-radius: 3px;
        background-clip: padding-box;
        background: #f3f2ed;
        border: 1px solid #c2c1bd;
    }

        .filter-nav .control-group .slider .ui-slider-range,
        .stands-sorting .control-group .slider .ui-slider-range {
            position: absolute;
            z-index: 1;
            top: 0;
            height: 100%;
            background-color: #0f9585;
            background-color: rgba(15, 149, 133, 0.4);
            zoom: 1;
            -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#660f9585, endColorstr=#660f9585)";
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#660f9585, endColorstr=#660f9585);
        }

        .filter-nav .control-group .slider .ui-slider-handle,
        .stands-sorting .control-group .slider .ui-slider-handle {
            position: absolute;
            z-index: 1;
            background: #0f9585;
            border-radius: 15px;
            background-clip: padding-box;
            height: 26px;
            width: 26px;
            top: -8px;
            border: none;
        }

            .filter-nav .control-group .slider .ui-slider-handle:hover,
            .stands-sorting .control-group .slider .ui-slider-handle:hover {
                cursor: pointer;
                cursor: hand;
                background: #0c7568;
            }

            .filter-nav .control-group .slider .ui-slider-handle:last-of-type,
            .stands-sorting .control-group .slider .ui-slider-handle:last-of-type {
                margin-left: -15px;
            }

            .filter-nav .control-group .slider .ui-slider-handle.ui-state-focus,
            .stands-sorting .control-group .slider .ui-slider-handle.ui-state-focus {
                outline: none;
            }

            .filter-nav .control-group .slider .ui-slider-handle.ui-corner-all.ui-state-default + .ui-slider-handle.ui-corner-all.ui-state-default,
            .stands-sorting .control-group .slider .ui-slider-handle.ui-corner-all.ui-state-default + .ui-slider-handle.ui-corner-all.ui-state-default {
                z-index: 2;
            }

        .filter-nav .control-group .slider p,
        .stands-sorting .control-group .slider p {
            font-size: .85em;
            margin: 18px 0 0 0;
        }

            .filter-nav .control-group .slider p.min,
            .stands-sorting .control-group .slider p.min {
                float: left;
            }

            .filter-nav .control-group .slider p.max,
            .stands-sorting .control-group .slider p.max {
                float: right;
            }

    .filter-nav .control-group .ink-dropdown:hover .ink-button,
    .stands-sorting .control-group .ink-dropdown:hover .ink-button {
        background: #f3f2ed;
        border: 1px solid #0f9585;
    }

        .filter-nav .control-group .ink-dropdown:hover .ink-button:before,
        .stands-sorting .control-group .ink-dropdown:hover .ink-button:before {
            filter: alpha(opacity=100);
            opacity: 1;
        }

    .filter-nav .control-group .ink-dropdown > .ink-button,
    .stands-sorting .control-group .ink-dropdown > .ink-button {
        width: 100%;
        text-align: left;
        text-transform: none;
        padding-right: 40px;
        border: 1px solid #c2c1bd;
        color: #42413d;
        font-weight: 400;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        margin: 0;
    }

        .filter-nav .control-group .ink-dropdown > .ink-button:hover,
        .stands-sorting .control-group .ink-dropdown > .ink-button:hover {
            background: #f3f2ed;
            border: 1px solid #0f9585;
        }

            .filter-nav .control-group .ink-dropdown > .ink-button:hover:before,
            .stands-sorting .control-group .ink-dropdown > .ink-button:hover:before {
                filter: alpha(opacity=100);
                opacity: 1;
            }

        .filter-nav .control-group .ink-dropdown > .ink-button:after,
        .stands-sorting .control-group .ink-dropdown > .ink-button:after {
            position: absolute;
            top: 0%;
            right: 0;
            width: 40px;
            height: 40px;
            line-height: 40px;
            font-size: 1.4em;
            text-align: center;
            font-family: FontAwesome;
            content: "\f107";
            text-shadow: none;
            color: #42413d;
            z-index: 1;
            cursor: pointer;
            cursor: hand;
            pointer-events: none;
            filter: alpha(opacity=60);
            opacity: 0.6;
        }

    .filter-nav .control-group .ink-dropdown .dropdown-menu,
    .stands-sorting .control-group .ink-dropdown .dropdown-menu {
        width: 100%;
        max-width: 100%;
        max-height: 300px;
        overflow-y: auto;
        top: 100%;
        padding: 1em;
        margin: 0;
        border: 1px solid #c2c1bd;
        -webkit-box-shadow: rgba(100, 100, 100, 0.5) 0 1px 3px 0;
        box-shadow: rgba(100, 100, 100, 0.5) 0 1px 3px 0;
    }

        .filter-nav .control-group .ink-dropdown .dropdown-menu li,
        .stands-sorting .control-group .ink-dropdown .dropdown-menu li {
            margin-bottom: .5em;
        }

            .filter-nav .control-group .ink-dropdown .dropdown-menu li:last-child,
            .stands-sorting .control-group .ink-dropdown .dropdown-menu li:last-child {
                margin-bottom: 0;
            }

            .filter-nav .control-group .ink-dropdown .dropdown-menu li label,
            .stands-sorting .control-group .ink-dropdown .dropdown-menu li label {
                display: inline;
                cursor: pointer;
                cursor: hand;
                font-size: 1.1em;
                color: #42413d;
                text-transform: none;
                font-weight: 400;
                margin: 0;
                padding: 0;
                vertical-align: baseline;
            }

                .filter-nav .control-group .ink-dropdown .dropdown-menu li label span,
                .stands-sorting .control-group .ink-dropdown .dropdown-menu li label span {
                    color: #6f6d66;
                    font-size: .85em;
                }

            .filter-nav .control-group .ink-dropdown .dropdown-menu li input[type=checkbox],
            .stands-sorting .control-group .ink-dropdown .dropdown-menu li input[type=checkbox] {
                position: relative;
                margin-right: .75em;
                visibility: hidden;
            }

                .filter-nav .control-group .ink-dropdown .dropdown-menu li input[type=checkbox] ~ label:before,
                .stands-sorting .control-group .ink-dropdown .dropdown-menu li input[type=checkbox] ~ label:before {
                    position: absolute;
                    top: 3px;
                    left: 0;
                    content: "";
                    background: #f3f2ed;
                    border: 1px solid #c2c1bd;
                    height: 16px;
                    width: 16px;
                    margin-top: -2px;
                    border-radius: 3px;
                    background-clip: padding-box;
                    display: inline-block;
                    cursor: pointer;
                    cursor: hand;
                }

                .filter-nav .control-group .ink-dropdown .dropdown-menu li input[type=checkbox]:checked ~ label:before,
                .stands-sorting .control-group .ink-dropdown .dropdown-menu li input[type=checkbox]:checked ~ label:before {
                    font-family: FontAwesome;
                    content: "\f00c";
                    background: #0f9585;
                    border: 1px solid #0f9585;
                    color: #ffffff;
                    font-size: .8em;
                    text-align: center;
                }

                .filter-nav .control-group .ink-dropdown .dropdown-menu li input[type=checkbox]:checked ~ label,
                .stands-sorting .control-group .ink-dropdown .dropdown-menu li input[type=checkbox]:checked ~ label {
                    color: #0f9585;
                }

            .filter-nav .control-group .ink-dropdown .dropdown-menu li:after,
            .stands-sorting .control-group .ink-dropdown .dropdown-menu li:after {
                content: "";
                display: table;
                clear: both;
            }

            .filter-nav .control-group .ink-dropdown .dropdown-menu li h4,
            .stands-sorting .control-group .ink-dropdown .dropdown-menu li h4 {
                font-weight: 500;
                margin-bottom: 0;
                margin-top: 1em;
                margin-bottom: .25em;
            }

            .filter-nav .control-group .ink-dropdown .dropdown-menu li a.ink-toggle,
            .stands-sorting .control-group .ink-dropdown .dropdown-menu li a.ink-toggle {
                font-size: 1.1em;
                color: #42413d;
                font-weight: 400;
                padding: .25em 1.5em .25em .5em;
                margin: 0 -0.5em -0.25em -0.5em;
                border-radius: 3px;
                background-clip: padding-box;
            }

                .filter-nav .control-group .ink-dropdown .dropdown-menu li a.ink-toggle:hover,
                .filter-nav .control-group .ink-dropdown .dropdown-menu li a.ink-toggle.active,
                .stands-sorting .control-group .ink-dropdown .dropdown-menu li a.ink-toggle:hover,
                .stands-sorting .control-group .ink-dropdown .dropdown-menu li a.ink-toggle.active {
                    background: #f3f2ed;
                }

                    .filter-nav .control-group .ink-dropdown .dropdown-menu li a.ink-toggle.active:after,
                    .filter-nav .control-group .ink-dropdown .dropdown-menu li a.ink-toggle:hover:after,
                    .stands-sorting .control-group .ink-dropdown .dropdown-menu li a.ink-toggle.active:after,
                    .stands-sorting .control-group .ink-dropdown .dropdown-menu li a.ink-toggle:hover:after {
                        position: absolute;
                        right: 0;
                        line-height: 1.4em;
                        font-size: 1em;
                        text-align: center;
                        font-family: 'FontAwesome';
                        content: "\f107";
                        text-shadow: none;
                        color: #42413d;
                    }

                .filter-nav .control-group .ink-dropdown .dropdown-menu li a.ink-toggle + ul,
                .stands-sorting .control-group .ink-dropdown .dropdown-menu li a.ink-toggle + ul {
                    margin: .5em 0 0 0;
                }

                    .filter-nav .control-group .ink-dropdown .dropdown-menu li a.ink-toggle + ul li,
                    .stands-sorting .control-group .ink-dropdown .dropdown-menu li a.ink-toggle + ul li {
                        margin-bottom: 0;
                    }

                        .filter-nav .control-group .ink-dropdown .dropdown-menu li a.ink-toggle + ul li a,
                        .stands-sorting .control-group .ink-dropdown .dropdown-menu li a.ink-toggle + ul li a {
                            padding: .25em .5em;
                        }

                            .filter-nav .control-group .ink-dropdown .dropdown-menu li a.ink-toggle + ul li a:hover,
                            .stands-sorting .control-group .ink-dropdown .dropdown-menu li a.ink-toggle + ul li a:hover {
                                background: #f3f2ed;
                                border-radius: 3px;
                                background-clip: padding-box;
                            }

            .filter-nav .control-group .ink-dropdown .dropdown-menu li label + ul,
            .stands-sorting .control-group .ink-dropdown .dropdown-menu li label + ul {
                margin: 0.5em 0 0 1.6em;
            }

        .filter-nav .control-group .ink-dropdown .dropdown-menu :first-child h4,
        .stands-sorting .control-group .ink-dropdown .dropdown-menu :first-child h4 {
            margin-top: 0;
        }

        .filter-nav .control-group .ink-dropdown .dropdown-menu .heading,
        .stands-sorting .control-group .ink-dropdown .dropdown-menu .heading {
            width: 100% !important;
            padding: 0;
        }

    .filter-nav .control-group .ink-dropdown .append-search,
    .stands-sorting .control-group .ink-dropdown .append-search {
        padding-bottom: 2em;
        position: absolute;
        z-index: 30;
        width: 100%;
        border: 1px solid #c2c1bd;
        border-radius: 3px;
        background-clip: padding-box;
        background: #ffffff;
        -webkit-box-shadow: rgba(100, 100, 100, 0.5) 0 1px 3px 0;
        box-shadow: rgba(100, 100, 100, 0.5) 0 1px 3px 0;
    }

        .filter-nav .control-group .ink-dropdown .append-search .control.append-symbol,
        .stands-sorting .control-group .ink-dropdown .append-search .control.append-symbol {
            border-radius: 2px 2px 0 0;
            background-clip: padding-box;
            padding: .5em;
            background: #f3f2ed;
        }

        .filter-nav .control-group .ink-dropdown .append-search .dropdown-menu,
        .stands-sorting .control-group .ink-dropdown .append-search .dropdown-menu {
            position: relative;
            border: none;
            border-radius: 0;
            background-clip: padding-box;
            -webkit-box-shadow: none;
            box-shadow: none;
            border-top: 1px solid #c2c1bd;
            border-bottom: 1px solid #c2c1bd;
        }

            .filter-nav .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button,
            .stands-sorting .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button {
                width: 100%;
            }

                .filter-nav .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle,
                .stands-sorting .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle {
                    width: 100%;
                    padding: 5px 10px;
                    font-size: .8em;
                    background: #ffffff;
                    color: #0f9585;
                    outline: none;
                    border: 1px solid #c2c1bd;
                    font-weight: 300;
                    text-transform: uppercase;
                    border-radius: 3px;
                    background-clip: padding-box;
                    -webkit-transition: all 0.25s ease-in-out;
                    -moz-transition: all 0.25s ease-in-out;
                    -ms-transition: all 0.25s ease-in-out;
                    -o-transition: all 0.25s ease-in-out;
                    margin: .5em 0;
                }

                    .filter-nav .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle:hover,
                    .filter-nav .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle:active,
                    .stands-sorting .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle:hover,
                    .stands-sorting .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle:active {
                        border: 1px solid #0f9585;
                        color: #ffffff;
                        background: #0f9585;
                    }

                    .filter-nav .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle:before,
                    .stands-sorting .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle:before {
                        content: "Ver Mais";
                        margin-right: .5em;
                    }

                    .filter-nav .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle.active:before,
                    .stands-sorting .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle.active:before {
                        content: "Ver Menos";
                    }

                    .filter-nav .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle .fa,
                    .stands-sorting .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle .fa {
                        font-size: 1.5em;
                        vertical-align: bottom;
                    }

                    .filter-nav .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle.active .fa:before,
                    .stands-sorting .control-group .ink-dropdown .append-search .dropdown-menu li.toggle-button .ink-toggle.active .fa:before {
                        content: "\f106";
                    }

        .filter-nav .control-group .ink-dropdown .append-search .push-bottom,
        .stands-sorting .control-group .ink-dropdown .append-search .push-bottom {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 2em;
            border-radius: 0 0 2px 2px;
            background-clip: padding-box;
            background: #f3f2ed;
        }

            .filter-nav .control-group .ink-dropdown .append-search .push-bottom .ink-button,
            .stands-sorting .control-group .ink-dropdown .append-search .push-bottom .ink-button {
                width: auto;
                text-align: left;
                text-transform: none;
                border: 1px solid #c2c1bd;
                margin: .25em .25em 0 0;
                font-size: .75em;
                padding: .25em .5em;
                background: #ffffff;
            }

                .filter-nav .control-group .ink-dropdown .append-search .push-bottom .ink-button:before,
                .stands-sorting .control-group .ink-dropdown .append-search .push-bottom .ink-button:before {
                    display: none;
                }

                .filter-nav .control-group .ink-dropdown .append-search .push-bottom .ink-button:hover,
                .filter-nav .control-group .ink-dropdown .append-search .push-bottom .ink-button:active,
                .stands-sorting .control-group .ink-dropdown .append-search .push-bottom .ink-button:hover,
                .stands-sorting .control-group .ink-dropdown .append-search .push-bottom .ink-button:active {
                    color: #ffffff;
                    background: #0f9585;
                    border: 1px solid #0f9585;
                }

                .filter-nav .control-group .ink-dropdown .append-search .push-bottom .ink-button .fa,
                .stands-sorting .control-group .ink-dropdown .append-search .push-bottom .ink-button .fa {
                    font-size: 1.3em;
                    vertical-align: middle;
                    margin: 0 0 0 .25em;
                }

    .filter-nav .control-group .ink-dropdown.disabled .ink-button,
    .stands-sorting .control-group .ink-dropdown.disabled .ink-button {
        background: #f3f2ed;
        color: #c5c5c5;
        border: 1px solid #c2c1bd;
        cursor: not-allowed;
    }

        .filter-nav .control-group .ink-dropdown.disabled .ink-button:before,
        .stands-sorting .control-group .ink-dropdown.disabled .ink-button:before {
            filter: alpha(opacity=30);
            opacity: 0.3;
        }

    .filter-nav .control-group .ink-dropdown.disabled .dropdown-menu,
    .stands-sorting .control-group .ink-dropdown.disabled .dropdown-menu {
        display: none !important;
    }

    .filter-nav .control-group .checkbox-group,
    .stands-sorting .control-group .checkbox-group {
        margin: 0;
        padding: 0;
        padding: .5em 0 0 .5em;
        border: 1px solid #c2c1bd;
        border-radius: 3px;
        background-clip: padding-box;
    }

        .filter-nav .control-group .checkbox-group:hover,
        .stands-sorting .control-group .checkbox-group:hover {
            border: 1px solid #0f9585;
        }

        .filter-nav .control-group .checkbox-group li,
        .stands-sorting .control-group .checkbox-group li {
            margin: 0;
            padding-bottom: .5em;
            float: left;
            margin-right: 1em;
            position: relative;
        }

            .filter-nav .control-group .checkbox-group li label,
            .stands-sorting .control-group .checkbox-group li label {
                display: inline-block;
                cursor: pointer;
                cursor: hand;
                font-size: .9em;
                color: #42413d;
                text-transform: none;
                font-weight: 400;
                margin: 0;
                padding: 0;
                vertical-align: baseline;
            }

            .filter-nav .control-group .checkbox-group li input[type=checkbox],
            .stands-sorting .control-group .checkbox-group li input[type=checkbox] {
                margin-right: .5em;
                position: relative;
                visibility: hidden;
            }

                .filter-nav .control-group .checkbox-group li input[type=checkbox] ~ label:before,
                .stands-sorting .control-group .checkbox-group li input[type=checkbox] ~ label:before {
                    position: absolute;
                    left: 0;
                    top: 2px;
                    content: "";
                    background: #f3f2ed;
                    border: 1px solid #c2c1bd;
                    height: 16px;
                    width: 16px;
                    line-height: 16px;
                    border-radius: 3px;
                    background-clip: padding-box;
                    display: inline-block;
                    cursor: pointer;
                    cursor: hand;
                }

                .filter-nav .control-group .checkbox-group li input[type=checkbox]:checked ~ label:before,
                .stands-sorting .control-group .checkbox-group li input[type=checkbox]:checked ~ label:before {
                    font-family: FontAwesome;
                    content: "\f00c";
                    background: #0f9585;
                    border: 1px solid #0f9585;
                    color: #ffffff;
                    font-size: .85em;
                    text-align: center;
                }

                .filter-nav .control-group .checkbox-group li input[type=checkbox]:checked ~ label,
                .stands-sorting .control-group .checkbox-group li input[type=checkbox]:checked ~ label {
                    color: #0f9585;
                }

        .filter-nav .control-group .checkbox-group:after,
        .stands-sorting .control-group .checkbox-group:after {
            content: "";
            display: table;
            clear: both;
        }

    .filter-nav .control-group .car-style,
    .stands-sorting .control-group .car-style {
        padding: .75em .5em 0 .5em !important;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: -webkit-box;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .filter-nav .control-group .car-style li,
        .stands-sorting .control-group .car-style li {
            text-align: center;
            width: 33%;
            margin-right: 0 !important;
            position: relative;
            min-height: 4em;
        }

            .filter-nav .control-group .car-style li.show-all,
            .stands-sorting .control-group .car-style li.show-all {
                display: block;
            }

            .filter-nav .control-group .car-style li label,
            .stands-sorting .control-group .car-style li label {
                display: block !important;
                margin-top: .75em !important;
                font-size: .8em !important;
                line-height: 1.3em;
            }

            .filter-nav .control-group .car-style li input[type=checkbox],
            .stands-sorting .control-group .car-style li input[type=checkbox] {
                margin: 0 !important;
                visibility: hidden;
            }

                .filter-nav .control-group .car-style li input[type=checkbox] ~ label:before,
                .stands-sorting .control-group .car-style li input[type=checkbox] ~ label:before {
                    -webkit-transform: translate(-40px, -10px);
                    transform: translate(-40px, -10px);
                    content: "";
                    height: 40px !important;
                    width: 80px !important;
                    left: 50% !important;
                    display: block;
                    background-image: url("/Content/img/carrocarioas.png") !important;
                    background-position: 0 0;
                    background-color: #89877f !important;
                    border-radius: 0;
                    background-clip: padding-box;
                    border: none !important;
                    -webkit-transition: all 0.25s ease-in-out;
                    -moz-transition: all 0.25s ease-in-out;
                    -ms-transition: all 0.25s ease-in-out;
                    -o-transition: all 0.25s ease-in-out;
                }

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li input[type=checkbox] ~ label:before {
        background-size: 60px 600px !important;
        -webkit-transform: translate(-30px, -5px);
        transform: translate(-30px, -5px);
        height: 30px !important;
        width: 60px !important;
    }
}

.filter-nav .control-group .car-style li input[type=checkbox] ~ label:hover:before,
.stands-sorting .control-group .car-style li input[type=checkbox] ~ label:hover:before {
    background-color: #42413d !important;
}

.filter-nav .control-group .car-style li input[type=checkbox]:checked ~ label:before,
.stands-sorting .control-group .car-style li input[type=checkbox]:checked ~ label:before {
    content: "" !important;
    background: url("/Content/img/carrocarioas.png") no-repeat;
    background-color: #0f9585 !important;
    border: none;
}

.filter-nav .control-group .car-style li input[type=checkbox]:checked ~ label,
.stands-sorting .control-group .car-style li input[type=checkbox]:checked ~ label {
    color: #0f9585;
}

.filter-nav .control-group .car-style li.citadino input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.citadino input[type=checkbox] ~ label:before {
    background-position: 0 0;
}

.filter-nav .control-group .car-style li.utilitario input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.utilitario input[type=checkbox] ~ label:before {
    background-position: 0 -40px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.utilitario input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.utilitario input[type=checkbox] ~ label:before {
        background-position: 0 -30px !important;
    }
}

.filter-nav .control-group .car-style li.sedan input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.sedan input[type=checkbox] ~ label:before {
    background-position: 0 -80px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.sedan input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.sedan input[type=checkbox] ~ label:before {
        background-position: 0 -60px !important;
    }
}

.filter-nav .control-group .car-style li.carrinha input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.carrinha input[type=checkbox] ~ label:before {
    background-position: 0 -120px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.carrinha input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.carrinha input[type=checkbox] ~ label:before {
        background-position: 0 -90px !important;
    }
}

.filter-nav .control-group .car-style li.coupe input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.coupe input[type=checkbox] ~ label:before {
    background-position: 0 -160px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.coupe input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.coupe input[type=checkbox] ~ label:before {
        background-position: 0 -120px !important;
    }
}

.filter-nav .control-group .car-style li.cabrio input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.cabrio input[type=checkbox] ~ label:before {
    background-position: 0 -200px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.cabrio input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.cabrio input[type=checkbox] ~ label:before {
        background-position: 0 -150px !important;
    }
}

.filter-nav .control-group .car-style li.monovolume input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.monovolume input[type=checkbox] ~ label:before {
    background-position: 0 -240px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.monovolume input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.monovolume input[type=checkbox] ~ label:before {
        background-position: 0 -180px !important;
    }
}

.filter-nav .control-group .car-style li.suv input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.suv input[type=checkbox] ~ label:before {
    background-position: 0 -280px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.suv input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.suv input[type=checkbox] ~ label:before {
        background-position: 0 -210px !important;
    }
}

.filter-nav .control-group .car-style li.pick-up input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.pick-up input[type=checkbox] ~ label:before {
    background-position: 0 -320px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.pick-up input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.pick-up input[type=checkbox] ~ label:before {
        background-position: 0 -240px !important;
    }
}

.filter-nav .control-group .car-style li.classico input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.classico input[type=checkbox] ~ label:before {
    background-position: 0 -360px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.classico input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.classico input[type=checkbox] ~ label:before {
        background-position: 0 -270px !important;
    }
}

.filter-nav .control-group .car-style li.ligeiro-mercadorias input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.ligeiro-mercadorias input[type=checkbox] ~ label:before {
    background-position: 0 -400px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.ligeiro-mercadorias input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.ligeiro-mercadorias input[type=checkbox] ~ label:before {
        background-position: 0 -300px !important;
    }
}

.filter-nav .control-group .car-style li.furgao input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.furgao input[type=checkbox] ~ label:before {
    background-position: 0 -440px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.furgao input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.furgao input[type=checkbox] ~ label:before {
        background-position: 0 -330px !important;
    }
}

.filter-nav .control-group .car-style li.minibus input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.minibus input[type=checkbox] ~ label:before {
    background-position: 0 -480px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.minibus input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.minibus input[type=checkbox] ~ label:before {
        background-position: 0 -360px !important;
    }
}

.filter-nav .control-group .car-style li.autocarro input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.autocarro input[type=checkbox] ~ label:before {
    background-position: 0 -520px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.autocarro input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.autocarro input[type=checkbox] ~ label:before {
        background-position: 0 -390px !important;
    }
}

.filter-nav .control-group .car-style li.pesado-mercadorias input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.pesado-mercadorias input[type=checkbox] ~ label:before {
    background-position: 0 -560px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.pesado-mercadorias input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.pesado-mercadorias input[type=checkbox] ~ label:before {
        background-position: 0 -420px !important;
    }
}

.filter-nav .control-group .car-style li.camiao-reboque input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.camiao-reboque input[type=checkbox] ~ label:before {
    background-position: 0 -600px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.camiao-reboque input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.camiao-reboque input[type=checkbox] ~ label:before {
        background-position: 0 -450px !important;
    }
}

.filter-nav .control-group .car-style li.reboque input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.reboque input[type=checkbox] ~ label:before {
    background-position: 0 -640px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.reboque input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.reboque input[type=checkbox] ~ label:before {
        background-position: 0 -480px !important;
    }
}

.filter-nav .control-group .car-style li.semi-reboque input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.semi-reboque input[type=checkbox] ~ label:before {
    background-position: 0 -680px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.semi-reboque input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.semi-reboque input[type=checkbox] ~ label:before {
        background-position: 0 -510px !important;
    }
}

.filter-nav .control-group .car-style li.maquina-agricola input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.maquina-agricola input[type=checkbox] ~ label:before {
    background-position: 0 -720px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.maquina-agricola input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.maquina-agricola input[type=checkbox] ~ label:before {
        background-position: 0 -540px !important;
    }
}

.filter-nav .control-group .car-style li.salvados input[type=checkbox] ~ label:before,
.stands-sorting .control-group .car-style li.salvados input[type=checkbox] ~ label:before {
    background-position: 0 -760px !important;
}

@media screen and (max-width: 450px) {
    .filter-nav .control-group .car-style li.salvados input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-style li.salvados input[type=checkbox] ~ label:before {
        background-position: 0 -570px !important;
    }
}

.filter-nav .control-group .car-style li.toggle-button,
.stands-sorting .control-group .car-style li.toggle-button {
    width: 100%;
    min-height: inherit;
}

    .filter-nav .control-group .car-style li.toggle-button .ink-button,
    .stands-sorting .control-group .car-style li.toggle-button .ink-button {
        width: 100%;
        padding: 5px 10px;
        font-size: .8em;
    }

        .filter-nav .control-group .car-style li.toggle-button .ink-button:before,
        .stands-sorting .control-group .car-style li.toggle-button .ink-button:before {
            content: "Ver Mais";
            margin-right: .5em;
        }

        .filter-nav .control-group .car-style li.toggle-button .ink-button.active:before,
        .stands-sorting .control-group .car-style li.toggle-button .ink-button.active:before {
            content: "Ver Menos";
        }

        .filter-nav .control-group .car-style li.toggle-button .ink-button .fa,
        .stands-sorting .control-group .car-style li.toggle-button .ink-button .fa {
            font-size: 1.3em;
            vertical-align: bottom;
        }

        .filter-nav .control-group .car-style li.toggle-button .ink-button.active .fa:before,
        .stands-sorting .control-group .car-style li.toggle-button .ink-button.active .fa:before {
            content: "\f106";
        }

.filter-nav .control-group .car-color li,
.stands-sorting .control-group .car-color li {
    margin-right: .5em;
}

    .filter-nav .control-group .car-color li input[type=checkbox] ~ label,
    .stands-sorting .control-group .car-color li input[type=checkbox] ~ label {
        font-size: 0;
    }

    .filter-nav .control-group .car-color li input[type=checkbox]:checked ~ label:before,
    .stands-sorting .control-group .car-color li input[type=checkbox]:checked ~ label:before {
        font-size: 14px !important;
        content: "\f00c" !important;
    }

    .filter-nav .control-group .car-color li.white-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.white-box input[type=checkbox] ~ label:before {
        background: #fff !important;
        border: 2px solid #c2c1bd !important;
    }

    .filter-nav .control-group .car-color li.white-box input[type=checkbox]:checked ~ label:before,
    .stands-sorting .control-group .car-color li.white-box input[type=checkbox]:checked ~ label:before {
        color: #42413d;
    }

    .filter-nav .control-group .car-color li.silver-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.silver-box input[type=checkbox] ~ label:before {
        background: #e0e0e0 !important;
        border: 2px solid #e0e0e0 !important;
    }

    .filter-nav .control-group .car-color li.silver-box input[type=checkbox]:checked ~ label:before,
    .stands-sorting .control-group .car-color li.silver-box input[type=checkbox]:checked ~ label:before {
        color: #42413d !important;
    }

    .filter-nav .control-group .car-color li.grey-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.grey-box input[type=checkbox] ~ label:before {
        background: #8e8e8e !important;
        border: 2px solid #8e8e8e !important;
    }

    .filter-nav .control-group .car-color li.black-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.black-box input[type=checkbox] ~ label:before {
        background: #000 !important;
        border: 2px solid #000 !important;
    }

    .filter-nav .control-group .car-color li.red-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.red-box input[type=checkbox] ~ label:before {
        background: #ff0000 !important;
        border: 2px solid #ff0000 !important;
    }

    .filter-nav .control-group .car-color li.orange-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.orange-box input[type=checkbox] ~ label:before {
        background: #ff8400 !important;
        border: 2px solid #ff8400 !important;
    }

    .filter-nav .control-group .car-color li.yellow-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.yellow-box input[type=checkbox] ~ label:before {
        background: #EBEB00 !important;
        border: 2px solid #EBEB00 !important;
    }

    .filter-nav .control-group .car-color li.beige-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.beige-box input[type=checkbox] ~ label:before {
        background: #dbcfb5 !important;
        border: 2px solid #dbcfb5 !important;
    }

    .filter-nav .control-group .car-color li.tan-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.tan-box input[type=checkbox] ~ label:before {
        background: #e5c100 !important;
        border: 2px solid #e5c100 !important;
    }

    .filter-nav .control-group .car-color li.green-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.green-box input[type=checkbox] ~ label:before {
        background: #37a009 !important;
        border: 2px solid #37a009 !important;
    }

    .filter-nav .control-group .car-color li.blue-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.blue-box input[type=checkbox] ~ label:before {
        background: #0168bf !important;
        border: 2px solid #0168bf !important;
    }

    .filter-nav .control-group .car-color li.brown-box input[type=checkbox] ~ label:before,
    .stands-sorting .control-group .car-color li.brown-box input[type=checkbox] ~ label:before {
        background: #74441e !important;
        border: 2px solid #74441e !important;
    }

    .filter-nav .control-group .car-color li.other-box input[type=checkbox] ~ label,
    .stands-sorting .control-group .car-color li.other-box input[type=checkbox] ~ label {
        font-size: .9em !important;
    }

        .filter-nav .control-group .car-color li.other-box input[type=checkbox] ~ label:before,
        .stands-sorting .control-group .car-color li.other-box input[type=checkbox] ~ label:before {
            background: #f3f2ed !important;
            border: 1px solid #c2c1bd !important;
            padding-top: 1px;
            width: 18px;
            height: 17px;
        }

    .filter-nav .control-group .car-color li.other-box input[type=checkbox]:checked ~ label:before,
    .stands-sorting .control-group .car-color li.other-box input[type=checkbox]:checked ~ label:before {
        content: "\f00c" !important;
        background: #0f9585 !important;
        border: 1px solid #0f9585 !important;
        color: #ffffff !important;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.filter-nav .control-group .car-seats,
.stands-sorting .control-group .car-seats {
    padding: .5em 0 .5em .5em !important;
}

    .filter-nav .control-group .car-seats li,
    .stands-sorting .control-group .car-seats li {
        margin-right: 1.5em !important;
        padding-bottom: 0 !important;
    }

        .filter-nav .control-group .car-seats li input[type=checkbox],
        .stands-sorting .control-group .car-seats li input[type=checkbox] {
            margin: 0;
            visibility: hidden;
        }

            .filter-nav .control-group .car-seats li input[type=checkbox] ~ label,
            .stands-sorting .control-group .car-seats li input[type=checkbox] ~ label {
                width: 26px !important;
                height: 26px !important;
                line-height: 26px !important;
                text-align: center;
                font-weight: 500;
                position: absolute;
                top: 0;
                left: 0;
                color: #ffffff !important;
            }

                .filter-nav .control-group .car-seats li input[type=checkbox] ~ label:before,
                .stands-sorting .control-group .car-seats li input[type=checkbox] ~ label:before {
                    z-index: -1;
                    width: 26px !important;
                    height: 26px !important;
                    border-radius: 26px !important;
                    background-clip: padding-box !important;
                    top: 0 !important;
                    left: 0;
                    background: #89877f !important;
                    border: none !important;
                    -webkit-transition: all 0.25s ease-in-out;
                    -moz-transition: all 0.25s ease-in-out;
                    -ms-transition: all 0.25s ease-in-out;
                    -o-transition: all 0.25s ease-in-out;
                }

            .filter-nav .control-group .car-seats li input[type=checkbox]:hover ~ label:before,
            .stands-sorting .control-group .car-seats li input[type=checkbox]:hover ~ label:before {
                background-color: #42413d !important;
            }

            .filter-nav .control-group .car-seats li input[type=checkbox]:checked ~ label:before,
            .stands-sorting .control-group .car-seats li input[type=checkbox]:checked ~ label:before {
                content: "" !important;
                background-color: #0f9585 !important;
                border: none;
            }

.filter-nav .control-group .input-group ul.column-group,
.stands-sorting .control-group .input-group ul.column-group {
    margin-top: 0;
    margin-bottom: 1.5em;
}

    .filter-nav .control-group .input-group ul.column-group li,
    .stands-sorting .control-group .input-group ul.column-group li {
        margin: 0;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: -webkit-box;
        display: flex;
        -moz-align-items: baseline;
        -ms-align-items: baseline;
        -webkit-box-align: baseline;
        -ms-flex-align: baseline;
        align-items: baseline;
    }

        .filter-nav .control-group .input-group ul.column-group li input,
        .stands-sorting .control-group .input-group ul.column-group li input {
            width: 100%;
            padding: 6px;
        }

        .filter-nav .control-group .input-group ul.column-group li span,
        .stands-sorting .control-group .input-group ul.column-group li span {
            -ms-flex-shrink: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0;
            padding-left: .25em;
        }

        .filter-nav .control-group .input-group ul.column-group li select,
        .stands-sorting .control-group .input-group ul.column-group li select {
            padding: 0 6px;
            height: 2.5em;
        }

        .filter-nav .control-group .input-group ul.column-group li .ink-button,
        .stands-sorting .control-group .input-group ul.column-group li .ink-button {
            width: 100%;
            padding: 8px 0;
            text-align: center;
            font-size: .8em;
            font-weight: 600;
            border: 1px solid #0f9585;
        }

.filter-nav .toggle-more,
.stands-sorting .toggle-more {
    width: 100%;
    font-weight: 400;
}

    .filter-nav .toggle-more:before,
    .stands-sorting .toggle-more:before {
        content: "Mais Filtros";
        margin-right: .5em;
    }

    .filter-nav .toggle-more.active:before,
    .stands-sorting .toggle-more.active:before {
        content: "menos Filtros";
    }

    .filter-nav .toggle-more .fa,
    .stands-sorting .toggle-more .fa {
        font-size: 1.4em;
        vertical-align: bottom;
    }

    .filter-nav .toggle-more.active .fa:before,
    .stands-sorting .toggle-more.active .fa:before {
        content: "\f106";
    }

.filter-nav .filter-more.show-all,
.stands-sorting .filter-more.show-all {
    display: block;
}

.filter-nav .my-search .ink-button,
.stands-sorting .my-search .ink-button {
    background: #0f9585;
    color: #ffffff;
    width: 100%;
    text-align: left;
    border: none;
    line-height: 1.2em;
    margin-bottom: 1.5em;
    white-space: normal;
}

    .filter-nav .my-search .ink-button .fa,
    .stands-sorting .my-search .ink-button .fa {
        float: right;
        font-size: 1.2em;
    }

    .filter-nav .my-search .ink-button:focus,
    .filter-nav .my-search .ink-button:hover,
    .stands-sorting .my-search .ink-button:focus,
    .stands-sorting .my-search .ink-button:hover {
        border: none;
        background: #0c7568;
    }

.filter-nav .my-search h4,
.stands-sorting .my-search h4 {
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 300;
    color: #6f6d66;
}

.filter-nav .my-search .filter-tags li,
.stands-sorting .my-search .filter-tags li {
    border: 1px solid #c2c1bd;
    padding: 5px 10px;
    color: #42413d;
    font-weight: 500;
    font-size: .85em;
    border-radius: 3px;
    background-clip: padding-box;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    padding-right: 60px;
}

    .filter-nav .my-search .filter-tags li:focus,
    .filter-nav .my-search .filter-tags li:hover,
    .stands-sorting .my-search .filter-tags li:focus,
    .stands-sorting .my-search .filter-tags li:hover {
        border: 1px solid #0f9585;
    }

    .filter-nav .my-search .filter-tags li button,
    .stands-sorting .my-search .filter-tags li button {
        border: none;
        font-size: .9em;
        padding: 0;
        border-radius: 10px;
        background-clip: padding-box;
        position: absolute;
    }

        .filter-nav .my-search .filter-tags li button.remove,
        .stands-sorting .my-search .filter-tags li button.remove {
            top: 5px;
            right: 5px;
            height: 20px;
            width: 20px;
            color: #ffffff;
            background: #0f9585;
        }

            .filter-nav .my-search .filter-tags li button.remove:focus,
            .filter-nav .my-search .filter-tags li button.remove:hover,
            .stands-sorting .my-search .filter-tags li button.remove:focus,
            .stands-sorting .my-search .filter-tags li button.remove:hover {
                background: #0c7568;
                outline: none;
            }

        .filter-nav .my-search .filter-tags li button.edit,
        .stands-sorting .my-search .filter-tags li button.edit {
            top: 7px;
            right: 35px;
            background: none;
            font-size: 1.4em;
            color: #0f9585;
        }

            .filter-nav .my-search .filter-tags li button.edit:focus,
            .filter-nav .my-search .filter-tags li button.edit:hover,
            .stands-sorting .my-search .filter-tags li button.edit:focus,
            .stands-sorting .my-search .filter-tags li button.edit:hover {
                color: #0c7568;
                outline: none;
            }

        .filter-nav .my-search .filter-tags li button .fa,
        .stands-sorting .my-search .filter-tags li button .fa {
            display: block;
        }

.ink-modal .filter-nav .control-group .car-seats,
.ink-modal .stands-sorting .control-group .car-seats {
    padding: .5em 0 .7em .5em !important;
}

.ink-modal .modal-body .ink-form .filter-nav .ink-dropdown.active .ink-button,
.ink-modal .modal-body .ink-form .stands-sorting .ink-dropdown.active .ink-button {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ink-modal .modal-body .ink-form .filter-nav .ink-dropdown .ink-button,
.ink-modal .modal-body .ink-form .stands-sorting .ink-dropdown .ink-button {
    border-radius: 3px;
    background-clip: padding-box;
}

.ink-modal .modal-body .ink-form .filter-nav .ink-dropdown .dropdown-menu,
.ink-modal .modal-body .ink-form .stands-sorting .ink-dropdown .dropdown-menu {
    margin: 0;
}

@media screen and (max-width: 800px) {
    .ink-modal .modal-body .ink-form .filter-nav .ink-dropdown .dropdown-menu li,
    .ink-modal .modal-body .ink-form .stands-sorting .ink-dropdown .dropdown-menu li {
        width: 100%;
    }
}

.filter-bar h3 {
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-block;
}

    .filter-bar h3 strong {
        font-weight: 500;
    }

    .filter-bar h3 ~ .ink-button .fa {
        font-size: .9em;
    }

.filter-bar .ink-button {
    text-transform: none;
    padding: 4px 8px;
    font-size: .9em;
}

    .filter-bar .ink-button .fa {
        margin-left: .25em;
        font-size: 1.3em;
    }

.filter-bar .all-100 {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-box;
    display: flex;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.filter-bar .filter-tags {
    margin: 0;
    padding: 0;
    display: inline-block;
    height: 35px;
    overflow: hidden;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
}

    .filter-bar .filter-tags.active {
        height: auto;
        overflow: visible;
    }

    .filter-bar .filter-tags li {
        margin: 0 .5em .5em 0;
        float: left;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        background: #f3f2ed;
        border: 1px solid #c2c1bd;
        padding: 4px 8px;
        color: #42413d;
        font-weight: 400;
        font-size: .85em;
        border-radius: 3px;
        background-clip: padding-box;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
    }

        .filter-bar .filter-tags li:focus,
        .filter-bar .filter-tags li:hover {
            border: 1px solid #0f9585;
        }

        .filter-bar .filter-tags li button {
            border: none;
            color: #ffffff;
            background: #0f9585;
            font-size: .9em;
            height: 20px;
            width: 20px;
            margin-left: .25em;
            border-radius: 10px;
            background-clip: padding-box;
        }

            .filter-bar .filter-tags li button:focus,
            .filter-bar .filter-tags li button:hover {
                background: #0c7568;
                outline: none;
            }

            .filter-bar .filter-tags li button .fa {
                margin-left: -1px;
                display: block;
            }

.ink-modal .filter-bar .filter-tags {
    height: auto;
    overflow: visible;
}

.vehicle-listing {
    position: relative;
}

    .vehicle-listing .search-info,
    .vehicle-detail .search-info {
        min-height: 300px;
        padding-top: 2em;
    }

        .vehicle-listing .search-info h1,
        .vehicle-detail .search-info h1 {
            font-weight: 300;
        }

        .vehicle-listing .search-info h1,
        .vehicle-detail .search-info h1 {
            font-weight: 300;
        }

@media screen and (max-width: 960px) {
    .vehicle-listing .search-info,
    .vehicle-detail .search-info {
        padding-top: 1em;
    }

        .vehicle-listing .search-info h1,
        .vehicle-detail .search-info h1 {
            font-size: 1.8em;
        }
}

.vehicle-listing .search-info .rounded,
.vehicle-detail .search-info .rounded {
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background-clip: padding-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-box;
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f3f2ed;
    margin-bottom: 1em;
    position: relative;
}

    .vehicle-listing .search-info .rounded img,
    .vehicle-detail .search-info .rounded img {
        height: auto;
        max-height: 100%;
        margin: 0 auto;
        border-radius: 100px;
        background-clip: padding-box;
    }

@media screen and (max-width: 640px) {
    .vehicle-listing .search-info .rounded,
    .vehicle-detail .search-info .rounded {
        width: 150px;
        height: 150px;
    }
}

.vehicle-listing .loader {
    visibility: hidden;
    filter: alpha(opacity=0);
    opacity: 0;
    position: absolute;
    overflow: hidden;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.5);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#80ffffff, endColorstr=#80ffffff)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80ffffff, endColorstr=#80ffffff);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
}

    .vehicle-listing .loader .spinner {
        position: fixed;
        width: calc(100% - 340px);
        top: 50%;
        text-align: center;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

@media screen and (min-width: 960px) {
    .vehicle-listing .loader.is-visible {
        visibility: visible;
        filter: alpha(opacity=100);
        opacity: 1;
    }
}

.caixacaracteristicas li {
    margin-top: 0;
}

    .caixacaracteristicas li a {
        padding-left: 1em;
        position: relative;
    }

        .caixacaracteristicas li a:before {
            position: absolute;
            left: 0;
            font-family: FontAwesome;
            content: "\f054";
            color: #6f6d66;
            font-size: .75em;
            line-height: 1.8em;
        }

.advanced-search h3 {
    white-space: nowrap;
}

@media screen and (max-width: 640px) {
    .advanced-search h3 {
        margin-bottom: .5em;
        float: none;
        clear: both;
    }
}

.advanced-search .filter-nav,
.advanced-search .stands-sorting {
    overflow: hidden;
}

    .advanced-search .filter-nav .all-100:first-child,
    .advanced-search .stands-sorting .all-100:first-child {
        margin-bottom: 2em;
    }

    .advanced-search .filter-nav .my-search-button,
    .advanced-search .stands-sorting .my-search-button {
        background: #ffffff;
        color: #6f6d66;
        text-align: right;
        border: none;
        text-transform: uppercase;
        padding-left: 0;
    }

@media screen and (max-width: 640px) {
    .advanced-search .filter-nav .my-search-button,
    .advanced-search .stands-sorting .my-search-button {
        display: block;
        text-align: left;
        float: none;
        clear: both;
    }
}

.advanced-search .filter-nav .my-search-button:hover,
.advanced-search .stands-sorting .my-search-button:hover {
    color: #42413d;
}

.advanced-search .filter-nav .my-search-button:after,
.advanced-search .stands-sorting .my-search-button:after {
    line-height: 35px;
}

.advanced-search .filter-nav .my-search .filter-tags,
.advanced-search .stands-sorting .my-search .filter-tags {
    clear: both;
    margin: 0;
    padding: 0;
}

    .advanced-search .filter-nav .my-search .filter-tags li,
    .advanced-search .stands-sorting .my-search .filter-tags li {
        text-overflow: inherit;
        white-space: normal;
        overflow: initial;
    }

.advanced-search .filter-nav .control-group label .ink-button,
.advanced-search .stands-sorting .control-group label .ink-button {
    /*float: none;
    		margin-top: -.25em;*/
}

.advanced-search .filter-nav .control-group .car-style li,
.advanced-search .stands-sorting .control-group .car-style li {
    width: 20%;
}

@media screen and (max-width: 640px) {
    .advanced-search .filter-nav .control-group .car-style li,
    .advanced-search .stands-sorting .control-group .car-style li {
        width: 33%;
    }
}

.search-alert {
    bottom: 2em;
    left: 50%;
    position: fixed;
    z-index: 1000;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 40%;
    min-width: 300px;
    padding: 1em 2.5em;
    padding-bottom: .5em;
    background: #42413d;
    color: #ffffff;
    text-align: center;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 640px) and (max-width: 1260px) {
    .search-alert {
        width: 50%;
    }
}

.search-alert p {
    color: #ffffff;
    margin-bottom: .5em;
    font-weight: 300;
}

    .search-alert p:first-of-type {
        font-weight: 400;
    }

.search-alert a {
    color: #11ac9a;
    text-decoration: underline;
}

.search-alert .ink-button {
    font-size: 1.6em;
    background: none;
    border: 0;
    padding: 0 .25em;
    line-height: 1.2em;
    position: absolute;
    top: 3px;
    right: 3px;
    color: #e4e2d9;
    filter: alpha(opacity=60);
    opacity: 0.6;
}

    .search-alert .ink-button:hover {
        filter: alpha(opacity=100);
        opacity: 1;
    }

.badges-list {
    margin-top: 0;
    margin-bottom: 0;
    /*///*/
}

    .badges-list p {
        text-align: center;
        font-size: .9em;
        margin: .5em 0 0 0;
        line-height: 1.3em;
    }

    .badges-list .badge {
        display: block;
        width: 100px;
        height: 100px;
        margin: 0 auto;
        background: url("/Content/img/sprite-badges.png") no-repeat 1000px 1000px;
        background-size: 100% auto;
    }

@media screen and (max-width: 960px) and (min-width: 641px) {
    .badges-list .badge {
        width: 85px;
        height: 85px;
    }
}

@media screen and (max-width: 640px) {
    .badges-list .badge {
        width: 65px;
        height: 65px;
    }
}

.badges-list .badge.home-delivery {
    background-position: 0 0;
}

.badges-list .badge.warranty-brand {
    background-position: 0 3.5%;
}

.badges-list .badge.seven-days-return {
    background-position: 0 6.9%;
}

.badges-list .badge.warranty-3 {
    background-position: 0 10.3%;
}

.badges-list .badge.warranty-12 {
    background-position: 0 13.75%;
}

.badges-list .badge.garantia {
    background-position: 0 17.2%;
}

.badges-list .badge.euro {
    background-position: 0 20.65%;
}

.badges-list .badge[class*="30-dias"] {
    background-position: 0 24.05%;
}

.badges-list .badge.cadeado {
    background-position: 0 27.5%;
}

.badges-list .badge.pessoa {
    background-position: 0 31%;
}

.badges-list .badge.galeria {
    background-position: 0 34.45%;
}

.badges-list .badge.premium {
    background-position: 0 37.9%;
}

.badges-list .badge.insurance-3 {
    background-position: 0 41.35%;
}

.badges-list .badge.insurance-6 {
    background-position: 0 44.75%;
}

.badges-list .badge.insurance-12 {
    background-position: 0 48.2%;
}

.badges-list .badge.recondicionado {
    background-position: 0 51.7%;
}

.badges-list .badge.warranty-24 {
    background-position: 0 55.18%;
}

.badges-list .badge.warranty-6 {
    background-position: 0 58.63%;
}

.badges-list .badge.retoma {
    background-position: 0 62.05%;
}

.badges-list .badge.warranty-3anos {
    background-position: 0 65.5%;
}

.badges-list .badge.warranty-4anos {
    background-position: 0 68.95%;
}

.badges-list .badge.warranty-5anos {
    background-position: 0 72.4%;
}

.badges-list .badge.warranty-6anos {
    background-position: 0 75.85%;
}

.badges-list .badge.warranty-7anos {
    background-position: 0 79.3%;
}

.badges-list .badge.warranty-8anos {
    background-position: 0 82.75%;
}

.badges-list .badge.vale-galp {
    background-position: 0 86.25%;
}

.badges-list.suited p span {
    display: block;
    font-size: .9em;
    color: #6f6d66;
}

.badges-list.suited .badge {
    width: 60px;
    height: 67px;
    background: url("/Content/img/suited-badges.png") no-repeat 1000px 1000px;
    background-size: 100% auto;
}

@media screen and (max-width: 960px) and (min-width: 641px) {
    .badges-list.suited .badge {
        width: 50px;
        height: 57px;
    }
}

@media screen and (max-width: 640px) {
    .badges-list.suited .badge {
        width: 40px;
        height: 45px;
    }
}

.badges-list.suited .badge.vistas {
    background-position: 0 0;
}

.badges-list.suited .badge.todo-terreno {
    background-position: 0 14.25%;
}

.badges-list.suited .badge.familiar-4 {
    background-position: 0 28.5%;
}

.badges-list.suited .badge.familiar-5 {
    background-position: 0 43%;
}

.badges-list.suited .badge.familiar-bebe {
    background-position: 0 57%;
}

.badges-list.suited .badge.carro-18 {
    background-position: 0 71.5%;
}

.badges-list.suited .badge.durar {
    background-position: 0 86%;
}
/*//////////////////////////////*/
.extras-list {
    margin-top: -0.5em;
    margin-bottom: 0;
}

    .extras-list li {
        margin-top: 0;
    }

        .extras-list li .extra {
            position: relative;
            margin: 0;
            display: -moz-flex;
            display: -ms-flexbox;
            display: -ms-flex;
            display: -webkit-box;
            display: flex;
            -moz-align-items: center;
            -ms-align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            height: 70px;
            padding-left: 60px;
            line-height: 1em;
        }

            .extras-list li .extra p {
                font-size: .9em;
                margin-bottom: 0;
            }

            .extras-list li .extra .icon {
                position: absolute;
                top: 50%;
                left: 0;
                width: 60px;
                height: 60px;
                background: url("/Content/img/sprite-extras.png") no-repeat 1000px 1000px;
                background-size: 180px auto;
                /*
                border: 2px solid @icon-color;
                -webkit-border-radius: 100%;
                -webkit-background-clip: padding-box;
                -moz-border-radius: 100%;
                -moz-background-clip: padding;
                border-radius: 100%;
                background-clip: padding-box;
                */
                -webkit-transform: translate(0, -50%);
                transform: translate(0, -50%);
            }

                .extras-list li .extra .icon.ar-condicionado-automatico {
                    background-position: 0 -300px;
                }

                .extras-list li .extra .icon.bancos-aquecidos {
                    background-position: -120px -300px;
                }

                .extras-list li .extra .icon.estofos-em-pele {
                    background-position: -120px -240px;
                }

                .extras-list li .extra .icon.bluetooth {
                    background-position: -60px -240px;
                }

                .extras-list li .extra .icon.chave-inteligente {
                    background-position: 0 -240px;
                }

                .extras-list li .extra .icon.entrada-usb {
                    background-position: 0 -180px;
                }

                .extras-list li .extra .icon.farois-xenon,
                .extras-list li .extra .icon.farois-bi-led,
                .extras-list li .extra .icon.farois-bi-xenon {
                    background-position: -60px -180px;
                }

                .extras-list li .extra .icon.jantes-de-liga-leve {
                    background-position: -120px -180px;
                }

                .extras-list li .extra .icon.pack-desportivo {
                    background-position: -120px -120px;
                }

                .extras-list li .extra .icon.bagageira-automatica {
                    background-position: -60px -120px;
                }

                .extras-list li .extra .icon.sensor-de-chuva {
                    background-position: 0 -120px;
                }

                .extras-list li .extra .icon.sensor-de-luz {
                    background-position: 0 -60px;
                }

                .extras-list li .extra .icon.sistema-de-navegacao-gps {
                    background-position: -60px -60px;
                }

                .extras-list li .extra .icon.sistema-start-stop {
                    background-position: -120px -60px;
                }

                .extras-list li .extra .icon.teto-panoramico {
                    background-position: 0 0;
                }

                .extras-list li .extra .icon.tracao-integral {
                    background-position: -120px 0;
                }

                .extras-list li .extra .icon.volante-multifuncoes {
                    background-position: -60px 0;
                }

                .extras-list li .extra .icon.sensores-de-estacionamento {
                    background-position: -60px -300px;
                }

                .extras-list li .extra .icon.alarme {
                    background-position: 0 -360px;
                }

                .extras-list li .extra .icon.assistente-subidas,
                .extras-list li .extra .icon.degrau-extraivel,
                .extras-list li .extra .icon.dispositivo-reboque,
                .extras-list li .extra .icon.divisoria-compartimento,
                .extras-list li .extra .icon.portas-correr,
                .extras-list li .extra .icon.advertencia-acustica,
                .extras-list li .extra .icon.radio-navegacao,
                .extras-list li .extra .icon.regulacao-velocidade,
                .extras-list li .extra .icon.tacografo-digital,
                .extras-list li .extra .icon.tejadilho-alto {
                    background: url("/Content/img/sprite-extras-comerciais.png") no-repeat 1000px 1000px;
                    background-size: 120px auto;
                }

                .extras-list li .extra .icon.assistente-subidas {
                    background-position: 0 0;
                }

                .extras-list li .extra .icon.degrau-extraivel {
                    background-position: 0 -60px;
                }

                .extras-list li .extra .icon.dispositivo-reboque {
                    background-position: 0 -120px;
                }

                .extras-list li .extra .icon.divisoria-compartimento {
                    background-position: 0 -180px;
                }

                .extras-list li .extra .icon.portas-correr {
                    background-position: 0 -240px;
                }

                .extras-list li .extra .icon.advertencia-acustica {
                    background-position: -60px 0;
                }

                .extras-list li .extra .icon.radio-navegacao {
                    background-position: -60px -60px;
                }

                .extras-list li .extra .icon.regulacao-velocidade {
                    background-position: -60px -120px;
                }

                .extras-list li .extra .icon.tacografo-digital {
                    background-position: -60px -180px;
                }

                .extras-list li .extra .icon.tejadilho-alto {
                    background-position: -60px -240px;
                }
/*//////////////////////////////*/
@media screen and (min-width: 960px) {
    .listing-header .title-ctn {
        -webkit-transform: translate3d(-62px, 0, 0);
        transform: translate3d(-62px, 0, 0);
        -webkit-transition: 0.25s all ease-out;
        -moz-transition: 0.25s all ease-out;
        -ms-transition: 0.25s all ease-out;
        -o-transition: 0.25s all ease-out;
    }
}

@media screen and (max-width: 960px) {
    .listing-header .title-ctn h2 {
        margin-bottom: .25em;
    }
}

.listing-header .title-ctn .thumb {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: 0.25s all ease-out;
    -moz-transition: 0.25s all ease-out;
    -ms-transition: 0.25s all ease-out;
    -o-transition: 0.25s all ease-out;
    margin: 0 .5em .5em 0;
    width: 56px;
    height: 35px;
    position: relative;
    overflow: hidden;
    background: #f3f2ed;
    background-image: url("/Content/img/autosapo-placeholder.png");
    background-position: center center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

    .listing-header .title-ctn .thumb img {
        display: block !important;
        max-height: 35px;
        width: 100%;
        display: none;
    }

.listing-header .specs-ctn {
    color: #d6d3c5;
    line-height: 40px;
    font-size: 1.1em;
    font-weight: 300;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .listing-header .specs-ctn {
        text-align: left;
    }
}

@media screen and (max-width: 350px) {
    .listing-header .specs-ctn {
        line-height: 1.2em;
    }
}

.listing-header .price {
    color: #f3f2ed;
    font-size: 2em;
    line-height: 40px;
    font-weight: 300;
}

    .listing-header .price .text {
        font-size: .55em;
        white-space: nowrap;
        text-transform: uppercase;
        display: block;
        -webkit-transform: translateY(10%);
        transform: translateY(10%);
    }

.listing-header .ink-button.main-action {
    background: #0f9585;
    color: #ffffff;
    width: 100%;
    border: none;
    line-height: 1.2em;
}

    .listing-header .ink-button.main-action .fa {
        float: right;
        font-size: 1.2em;
    }

    .listing-header .ink-button.main-action:focus,
    .listing-header .ink-button.main-action:hover {
        border: none;
        background: #0c7568;
    }

    .listing-header .ink-button.main-action.state-reserved {
        background: #ff8f00;
    }

        .listing-header .ink-button.main-action.state-reserved:hover {
            background: #db7b00;
        }

    .listing-header .ink-button.main-action.state-sold {
        background: #e53935;
    }

        .listing-header .ink-button.main-action.state-sold:hover {
            background: #da201c;
        }

    .listing-header .ink-button.main-action.state-soon {
        background: #978f6b;
    }

        .listing-header .ink-button.main-action.state-soon:hover {
            background: #837c5c;
        }

.listing-header .mobile-buy {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: #ffffff;
    -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.25);
    z-index: 100;
}

.listing-header.ink-sticky-stuck {
    padding: 1em 0 .5em 0;
    height: 70px !important;
}

@media screen and (max-width: 960px) {
    .listing-header.ink-sticky-stuck {
        padding: .5em 0;
        height: 100px !important;
    }
}

@media screen and (min-width: 960px) {
    .listing-header.ink-sticky-stuck .title-ctn {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

        .listing-header.ink-sticky-stuck .title-ctn .thumb {
            filter: alpha(opacity=100);
            opacity: 1;
        }
}

.listing-header.ink-sticky-stuck .title-ctn h2 {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

@media screen and (max-width: 640px) {
    .listing-header {
        padding: .5em 0 0 0;
    }

        .listing-header .price {
            font-size: 1.8em;
        }

        .listing-header .specs-ctn {
            font-size: 1em;
        }

        .listing-header .filter-nav-mobile {
            margin-bottom: 1em;
        }
}

.vehicle-detail section > h3 {
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-block;
}

    .vehicle-detail section > h3 strong {
        font-weight: 500;
    }

    .vehicle-detail section > h3 img {
        display: inline-block;
        vertical-align: middle;
        /*margin-top: -3px;
        margin-left: .5em;
        max-height: 30px;*/
    }

    .vehicle-detail section > h3 span {
        color: #6f6d66;
        display: inline-block;
        font-weight: 500;
        margin-left: .5em;
        margin-top: .25em;
        border: solid 1px #d6d3c5;
        padding: .15em .3em;
    }

.vehicle-detail .social-networks-list.ink-navigation ul.menu.horizontal li {
    margin: 0 10px 0 0;
}

    .vehicle-detail .social-networks-list.ink-navigation ul.menu.horizontal li a {
        width: auto;
        height: 34px;
        line-height: 34px;
        padding: 0 .75em 0 .5em;
        text-decoration: none;
    }

        .vehicle-detail .social-networks-list.ink-navigation ul.menu.horizontal li a i.fa {
            font-size: 1em;
            min-width: 1em;
        }

        .vehicle-detail .social-networks-list.ink-navigation ul.menu.horizontal li a span {
            display: inline-block;
            font-size: .9em;
        }

@media screen and (max-width: 1150px) {
    .vehicle-detail .social-networks-list.ink-navigation ul.menu.horizontal li {
        margin: 0 5px 0 0;
    }

        .vehicle-detail .social-networks-list.ink-navigation ul.menu.horizontal li a {
            width: 34px;
            padding: 0;
        }

            .vehicle-detail .social-networks-list.ink-navigation ul.menu.horizontal li a span {
                display: none;
            }
}

.vehicle-detail .tools-bar.ink-navigation ul.menu.horizontal li {
    margin-left: 10px;
}

    .vehicle-detail .tools-bar.ink-navigation ul.menu.horizontal li .ink-button {
        text-transform: none;
        padding: 0 8px;
        font-size: .9em;
        height: 34px;
        line-height: 32px;
        border-radius: 3px;
        background-clip: padding-box;
        color: #6f6d66;
    }

        .vehicle-detail .tools-bar.ink-navigation ul.menu.horizontal li .ink-button i.fa {
            min-width: 1em;
        }

        .vehicle-detail .tools-bar.ink-navigation ul.menu.horizontal li .ink-button:focus,
        .vehicle-detail .tools-bar.ink-navigation ul.menu.horizontal li .ink-button:hover {
            color: #ffffff;
        }

@media screen and (max-width: 1150px) {
    .vehicle-detail .tools-bar.ink-navigation ul.menu.horizontal li {
        margin: 0 5px 0 0;
    }
}

@media screen and (max-width: 640px) {
    .vehicle-detail .tools-bar.ink-navigation ul.menu.horizontal li .ink-button {
        width: 34px;
    }

        .vehicle-detail .tools-bar.ink-navigation ul.menu.horizontal li .ink-button span {
            display: none;
        }
}

.vehicle-detail .gallery ul.photo-gallery {
    margin: 0;
}

    .vehicle-detail .gallery ul.photo-gallery li {
        margin: 0;
    }

        .vehicle-detail .gallery ul.photo-gallery li a.thumb {
            position: relative;
            display: block;
        }

            .vehicle-detail .gallery ul.photo-gallery li a.thumb picture {
                height: 0;
                padding-bottom: 50%;
                position: relative;
                overflow: hidden;
                background: #f3f2ed;
                background-image: url("/Content/img/autosapo-placeholder.png");
                background-position: center center;
                background-size: auto 250px;
                background-repeat: no-repeat;
            }

                .vehicle-detail .gallery ul.photo-gallery li a.thumb picture img {
                    position: absolute;
                    top: 50%;
                    left: 0;
                    width: 100%;
                    -webkit-transform: translate(0, -50%);
                    transform: translate(0, -50%);
                }

            .vehicle-detail .gallery ul.photo-gallery li a.thumb span {
                position: absolute;
                z-index: 1;
                left: 50%;
                top: 50%;
                -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
                background: #0f9585;
                color: #ffffff;
                display: block;
                padding: 0 1em;
                font-size: 1em;
                line-height: 2em;
                white-space: nowrap;
                text-transform: uppercase;
                font-weight: 300;
                filter: alpha(opacity=0);
                opacity: 0;
                -webkit-transition: all 0.25s ease-in-out;
                -moz-transition: all 0.25s ease-in-out;
                -ms-transition: all 0.25s ease-in-out;
                -o-transition: all 0.25s ease-in-out;
            }

                .vehicle-detail .gallery ul.photo-gallery li a.thumb span i.fa {
                    margin-right: .25em;
                }

@media screen and (max-width: 640px) {
    .vehicle-detail .gallery ul.photo-gallery li a.thumb span {
        display: none;
    }
}

.vehicle-detail .gallery ul.photo-gallery li a.thumb:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
}

.vehicle-detail .gallery ul.photo-gallery li a.thumb:hover:after {
    background-color: #0f9585;
    background-color: rgba(15, 149, 133, 0.4);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#660f9585, endColorstr=#660f9585)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#660f9585, endColorstr=#660f9585);
}

.vehicle-detail .gallery ul.photo-gallery li a.thumb:hover span {
    filter: alpha(opacity=100);
    opacity: 1;
}

.vehicle-detail.main .gallery ul.photo-gallery li a.thumb picture {
    background-size: auto 100%;
}

.vehicle-detail .basic-specs {
    margin-top: 0;
    margin-bottom: 0;
}

    .vehicle-detail .basic-specs li {
        margin: 0;
    }

        .vehicle-detail .basic-specs li .specs {
            font-size: 1.1em;
            line-height: 1.8em;
            padding: .25em .5em 0 .5em;
            overflow: hidden;
            border-bottom: 1px solid #c2c1bd;
            -webkit-transition: all 0.25s ease-in-out;
            -moz-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
        }

            .vehicle-detail .basic-specs li .specs span.value {
                float: right;
                font-weight: 300;
            }

            .vehicle-detail .basic-specs li .specs:hover {
                background: #f3f2ed;
            }

.vehicle-detail .equipment-container {
    margin: 0;
}

    .vehicle-detail .equipment-container h4 {
        border-bottom: 1px solid #c2c1bd;
        font-weight: 400;
        padding-bottom: .25em;
        text-transform: uppercase;
    }

    .vehicle-detail .equipment-container h5 {
        font-weight: 400;
        text-transform: uppercase;
        margin: 1em 0 1em 1.25em;
        color: #6f6d66;
    }

.vehicle-detail .equipment-list {
    margin-top: 0;
    margin-bottom: 0;
}

    .vehicle-detail .equipment-list li {
        margin: 0 0 1em 0;
        line-height: 1.3em;
    }

        .vehicle-detail .equipment-list li span {
            position: relative;
            padding-left: 1.3em;
            display: block;
        }

            .vehicle-detail .equipment-list li span:before {
                position: absolute;
                left: 0;
                font-family: FontAwesome;
                content: "\f00c";
                color: #aca689;
                font-size: 1em;
            }

.vehicle-detail .salesman {
    background: #6f6d66;
    text-align: center;
}

    .vehicle-detail .salesman .head {
        background: #42413d;
        padding-top: 1.5em;
        margin-bottom: 70px;
        width: 100%;
    }

        .vehicle-detail .salesman .head h3 {
            color: #ffffff;
            font-size: 1.3em;
            text-transform: uppercase;
            font-weight: 300;
            display: inline-block;
        }

            .vehicle-detail .salesman .head h3 strong {
                font-weight: 500;
            }

        .vehicle-detail .salesman .head picture {
            height: 120px;
            margin: 0 auto;
            margin-bottom: -60px;
            display: -moz-flex;
            display: -ms-flexbox;
            display: -ms-flex;
            display: -webkit-box;
            display: flex;
            -moz-align-items: center;
            -ms-align-items: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }

            .vehicle-detail .salesman .head picture img {
                height: auto;
                max-height: 100%;
                margin: 0 auto;
            }

            .vehicle-detail .salesman .head picture.squared {
                padding: .5em;
            }

            .vehicle-detail .salesman .head picture.rounded {
                width: 120px;
                border-radius: 60px;
                background-clip: padding-box;
            }

                .vehicle-detail .salesman .head picture.rounded img {
                    border-radius: 60px;
                    background-clip: padding-box;
                }

    .vehicle-detail .salesman h4 {
        margin: .5em 0 1.5em 0;
        font-weight: 300;
        font-size: 1.1em;
        padding: 0 1em;
        width: 100%;
    }

        .vehicle-detail .salesman h4 a {
            color: #ffffff;
        }

        .vehicle-detail .salesman h4 .location_customer {
            display: block;
            color: #d6d3c5;
            font-size: .9em;
            margin-top: .5em;
        }

    .vehicle-detail .salesman .actions-list {
        padding: 0 1.5em;
        width: 100%;
        margin: 0;
    }

        .vehicle-detail .salesman .actions-list li {
            margin: 0 0 2em 0;
        }

            .vehicle-detail .salesman .actions-list li .ink-button {
                background: #0f9585;
                color: #ffffff;
                width: 100%;
                max-width: 20em;
                border: none;
                line-height: 2.1em;
                padding: 0;
            }

                .vehicle-detail .salesman .actions-list li .ink-button .fa {
                    font-size: 1.2em;
                    display: block;
                    float: left;
                    width: 1.8em;
                    line-height: 1.8em;
                    border-radius: 3px 0 0 3px;
                    background-clip: padding-box;
                    background: #0c7568;
                    -webkit-transition: all 0.25s ease-in-out;
                    -moz-transition: all 0.25s ease-in-out;
                    -ms-transition: all 0.25s ease-in-out;
                    -o-transition: all 0.25s ease-in-out;
                }

                .vehicle-detail .salesman .actions-list li .ink-button:focus,
                .vehicle-detail .salesman .actions-list li .ink-button:hover {
                    border: none;
                    background: #0c7568;
                }

                    .vehicle-detail .salesman .actions-list li .ink-button:focus .fa,
                    .vehicle-detail .salesman .actions-list li .ink-button:hover .fa {
                        background: #42413d;
                    }

                .vehicle-detail .salesman .actions-list li .ink-button.light {
                    border: 1px solid #c2c1bd;
                    background: none;
                }

                    .vehicle-detail .salesman .actions-list li .ink-button.light:focus,
                    .vehicle-detail .salesman .actions-list li .ink-button.light:hover {
                        border: 1px solid #0c7568;
                        background: #0c7568;
                    }

                    .vehicle-detail .salesman .actions-list li .ink-button.light span {
                        display: none;
                    }

                    .vehicle-detail .salesman .actions-list li .ink-button.light:before {
                        content: "Informação do Vendedor";
                        display: block;
                    }

                    .vehicle-detail .salesman .actions-list li .ink-button.light.active:before {
                        content: "Fechar Informação";
                    }

    .vehicle-detail .salesman .contacts,
    .stands-details .stand-contacts {
        padding: 0 1.5em;
        width: 100%;
        text-align: left;
        margin-bottom: 1em;
        /*@media screen and (max-width:@breakpoint-large) {
                .icon-website,
                .icon-address{
                    width: 50%;
                    float: left;
                }
            }*/
    }

        .vehicle-detail .salesman .contacts.show-all,
        .stands-details .stand-contacts.show-all {
            display: block;
        }

        .vehicle-detail .salesman .contacts p,
        .stands-details .stand-contacts p {
            color: #e4e2d9;
            font-weight: 300;
        }

        .vehicle-detail .salesman .contacts a,
        .stands-details .stand-contacts a {
            color: #e4e2d9;
            text-decoration: none;
        }

            .vehicle-detail .salesman .contacts a:hover,
            .stands-details .stand-contacts a:hover {
                color: #ffffff;
            }

        .vehicle-detail .salesman .contacts [class*=icon-],
        .stands-details .stand-contacts [class*=icon-] {
            padding-left: 40px;
            position: relative;
            display: inline-block;
            margin-right: 2em;
        }

            .vehicle-detail .salesman .contacts [class*=icon-]:before,
            .stands-details .stand-contacts [class*=icon-]:before {
                position: absolute;
                left: 0;
                width: 35px;
                text-align: center;
                display: inline-block;
                font-family: FontAwesome;
                color: #ffffff;
            }

        .vehicle-detail .salesman .contacts [class*=phone]:before,
        .stands-details .stand-contacts [class*=phone]:before {
            content: "\f095";
        }

        .vehicle-detail .salesman .contacts [class*=watsapp]:before,
        .stands-details .stand-contacts [class*=watsapp]:before {
            content: "\f232";
        }

        .vehicle-detail .salesman .contacts [class*=mobile]:before,
        .stands-details .stand-contacts [class*=mobile]:before {
            content: "\f10b";
            font-size: 1.4em;
            line-height: 1em;
        }

        .vehicle-detail .salesman .contacts [class*=map]:before,
        .stands-details .stand-contacts [class*=map]:before {
            content: "\f041";
            width: 15px;
        }

        .vehicle-detail .salesman .contacts [class*=website]:before,
        .stands-details .stand-contacts [class*=website]:before {
            content: "\f08e";
            font-size: .9em;
            line-height: 2em;
        }

        .vehicle-detail .salesman .contacts [class*=address]:before,
        .stands-details .stand-contacts [class*=address]:before {
            content: "\f015";
        }

        .vehicle-detail .salesman .contacts .icon-map,
        .stands-details .stand-contacts .icon-map {
            display: block;
            margin-top: .5em;
            padding-left: 18px;
            font-size: .8em;
            text-transform: uppercase;
        }

        .vehicle-detail .salesman .contacts .phone-list,
        .stands-details .stand-contacts .phone-list {
            margin: 0 0 1em 0;
        }

            .vehicle-detail .salesman .contacts .phone-list:before,
            .stands-details .stand-contacts .phone-list:before {
                display: none;
            }

        .vehicle-detail .salesman .contacts .icon-website,
        .stands-details .stand-contacts .icon-website {
            overflow-wrap: break-word;
            word-wrap: break-word;
            -ms-word-break: break-all;
            word-break: break-word;
        }

.vehicle-detail .certification-table-list {
    margin-top: 0;
    margin-bottom: 0;
    border: 1px solid #c2c1bd;
}

    .vehicle-detail .certification-table-list li {
        margin: 0;
        border-bottom: 1px solid #c2c1bd;
    }

        .vehicle-detail .certification-table-list li > a {
            position: relative;
            display: block;
            padding: .75em;
            color: #42413d;
            text-decoration: none;
        }

            .vehicle-detail .certification-table-list li > a > i {
                position: absolute;
                top: 14px;
                right: 14px;
                font-size: 1.5em;
                line-height: 26px;
                -webkit-transition: 0.25s all ease-out;
                -moz-transition: 0.25s all ease-out;
                -ms-transition: 0.25s all ease-out;
                -o-transition: 0.25s all ease-out;
                zoom: 1;
                filter: alpha(opacity=40);
                -webkit-opacity: .4;
                -moz-opacity: .4;
                opacity: 0.4;
            }

            .vehicle-detail .certification-table-list li > a:hover {
                background-color: #e4e2d9;
                color: #42413d;
            }

                .vehicle-detail .certification-table-list li > a:hover .title {
                    color: #42413d;
                }

            .vehicle-detail .certification-table-list li > a.active {
                background-color: #e4e2d9;
                border-bottom: 1px solid #c2c1bd;
            }

                .vehicle-detail .certification-table-list li > a.active i.fa-angle-down {
                    -webkit-transform: translate3d(0, 2px, 0);
                    transform: translate3d(0, 2px, 0);
                    -webkit-transform: rotate(180deg);
                    transform: rotate(180deg);
                }

            .vehicle-detail .certification-table-list li > a h3 {
                margin-bottom: 0;
                font-weight: 300;
                font-size: 1.3em;
            }

            .vehicle-detail .certification-table-list li > a .counter {
                position: absolute;
                top: 50%;
                right: 54px;
                -webkit-transform: translate(0, -50%);
                transform: translate(0, -50%);
            }

        .vehicle-detail .certification-table-list li .damage {
            display: inline-block;
            width: 40px;
            min-height: 0;
            vertical-align: middle;
        }

        .vehicle-detail .certification-table-list li:last-child {
            border: 0;
        }

    .vehicle-detail .certification-table-list .certification-table {
        margin: 0;
        font-size: .875em;
    }

        .vehicle-detail .certification-table-list .certification-table .ink-button {
            padding: .25em .5em;
            margin-right: .5em;
        }

        .vehicle-detail .certification-table-list .certification-table i.fa {
            font-size: 14px;
            margin: 0;
        }

            .vehicle-detail .certification-table-list .certification-table i.fa.fa-info-circle {
                margin-left: 5px;
                zoom: 1;
                filter: alpha(opacity=50);
                opacity: 0.5;
            }

                .vehicle-detail .certification-table-list .certification-table i.fa.fa-info-circle:hover {
                    zoom: 1;
                    filter: alpha(opacity=100);
                    opacity: 1;
                }

            .vehicle-detail .certification-table-list .certification-table i.fa.fa-check {
                color: #aca689;
            }

            .vehicle-detail .certification-table-list .certification-table i.fa.fa-warning {
                color: #ff8f00;
            }

        .vehicle-detail .certification-table-list .certification-table td {
            line-height: 2em;
        }

        .vehicle-detail .certification-table-list .certification-table tr:hover {
            background-color: #f3f2ed;
        }

        .vehicle-detail .certification-table-list .certification-table tr:last-child {
            border: 0;
        }

.vehicle-detail .pub.hide-large {
    margin-top: 2em;
}

@media screen and (max-width: 640px) {
    .vehicle-detail .pub.hide-large {
        margin-left: -5px;
    }
}

.vehicle-detail .search-info .rounded {
    width: 200px;
    height: 200px;
    border-radius: 100px;
    background-clip: padding-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-box;
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f3f2ed;
    margin-bottom: 1em;
    position: relative;
}

    .vehicle-detail .search-info .rounded img {
        height: auto;
        max-height: 100%;
        margin: 0 auto;
        border-radius: 100px;
        background-clip: padding-box;
    }

@media screen and (max-width: 640px) {
    .vehicle-detail .search-info .rounded {
        width: 150px;
        height: 150px;
    }
}

.mega-gallery .ink-carousel .stage .slide picture {
    height: 0;
    padding-bottom: 50%;
    position: relative;
    overflow: hidden;
    background: #f3f2ed;
    background-image: url("/Content/img/autosapo-placeholder.png");
    background-position: center center;
    background-size: auto 250px;
    background-repeat: no-repeat;
}

@media screen and (max-width: 960px) {
    .mega-gallery .ink-carousel .stage .slide picture {
        padding-bottom: 66%;
    }
}

.mega-gallery .ink-carousel .stage .slide picture img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.mega-gallery .ink-carousel .stage .slide a.thumb {
    position: relative;
    display: block;
}

    .mega-gallery .ink-carousel .stage .slide a.thumb span {
        position: absolute;
        z-index: 1;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        background: #0f9585;
        color: #ffffff;
        display: block;
        padding: 0 1em;
        font-size: 1em;
        line-height: 2em;
        white-space: nowrap;
        text-transform: uppercase;
        font-weight: 300;
        filter: alpha(opacity=0);
        opacity: 0;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
    }

        .mega-gallery .ink-carousel .stage .slide a.thumb span i.fa {
            margin-right: .25em;
        }

    .mega-gallery .ink-carousel .stage .slide a.thumb:after {
        position: absolute;
        content: "";
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        -webkit-transition: all 1s ease-in-out;
        -moz-transition: all 1s ease-in-out;
        -ms-transition: all 1s ease-in-out;
        -o-transition: all 1s ease-in-out;
    }

    .mega-gallery .ink-carousel .stage .slide a.thumb:hover:after {
        background-color: #0f9585;
        background-color: rgba(15, 149, 133, 0.4);
        zoom: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#660f9585, endColorstr=#660f9585)";
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#660f9585, endColorstr=#660f9585);
    }

    .mega-gallery .ink-carousel .stage .slide a.thumb:hover span {
        filter: alpha(opacity=100);
        opacity: 1;
    }

.mega-gallery .ink-carousel .ink-navigation {
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: 0.25s all ease-out;
    -moz-transition: 0.25s all ease-out;
    -ms-transition: 0.25s all ease-out;
    -o-transition: 0.25s all ease-out;
}

    .mega-gallery .ink-carousel .ink-navigation ul.pagination.chevron li.next a {
        right: -1em;
    }

    .mega-gallery .ink-carousel .ink-navigation ul.pagination.chevron li.previous a {
        left: -1em;
    }

    .mega-gallery .ink-carousel .ink-navigation ul.pagination.chevron li.next a,
    .mega-gallery .ink-carousel .ink-navigation ul.pagination.chevron li.previous a {
        border: none;
        background: none;
        font-size: 3.5em;
        filter: alpha(opacity=70);
        opacity: 0.7;
        top: 50%;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        -webkit-tap-highlight-color: transparent;
    }

        .mega-gallery .ink-carousel .ink-navigation ul.pagination.chevron li.next a:hover,
        .mega-gallery .ink-carousel .ink-navigation ul.pagination.chevron li.previous a:hover {
            filter: alpha(opacity=100);
            opacity: 1;
        }

@media screen and (max-width: 640px) {
    .mega-gallery .ink-carousel .ink-navigation ul.pagination.chevron li.next a,
    .mega-gallery .ink-carousel .ink-navigation ul.pagination.chevron li.previous a {
        font-size: 2.5em;
    }
}

.mega-gallery .ink-carousel .ink-navigation ul.pagination.chevron li.disabled a:hover,
.mega-gallery .ink-carousel .ink-navigation ul.pagination.chevron li.disabled a {
    filter: alpha(opacity=40);
    opacity: 0.4;
}

.mega-gallery .ink-carousel:hover .ink-navigation {
    filter: alpha(opacity=100);
    opacity: 1;
}

    .mega-gallery .ink-carousel:hover .ink-navigation ul.pagination.chevron li.next a {
        right: 0;
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
    }

    .mega-gallery .ink-carousel:hover .ink-navigation ul.pagination.chevron li.previous a {
        left: 0;
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
    }

.mega-gallery .ink-carousel.hovered .ink-navigation {
    filter: alpha(opacity=100);
    opacity: 1;
}

    .mega-gallery .ink-carousel.hovered .ink-navigation ul.pagination.chevron li.next a {
        right: 0;
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
    }

    .mega-gallery .ink-carousel.hovered .ink-navigation ul.pagination.chevron li.previous a {
        left: 0;
        -webkit-transition: none;
        -moz-transition: none;
        -ms-transition: none;
        -o-transition: none;
    }

.mega-gallery .options li.favorite {
    position: absolute;
    top: 1em;
    right: 1em;
    z-index: 1;
    margin: 0;
}

.mega-gallery .options span {
    display: block;
    background-color: #42413d;
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff42413d, endColorstr=#ff42413d)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff42413d, endColorstr=#ff42413d);
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    cursor: hand;
}

    .mega-gallery .options span .fa {
        font-size: 1.5em;
        vertical-align: middle;
        margin-top: -3px;
    }

    .mega-gallery .options span:hover {
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
    }

        .mega-gallery .options span:hover .fa-star-o:before {
            content: "\f005";
            color: #ffffff;
        }

.mega-gallery .options li.photos {
    position: absolute;
    z-index: 2;
    top: 1em;
    left: 1em;
    background-color: #42413d;
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff42413d, endColorstr=#ff42413d)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ff42413d, endColorstr=#ff42413d);
    color: #ffffff;
    margin: 0;
}

    .mega-gallery .options li.photos span {
        padding: 0 .5em;
        width: auto;
    }

    .mega-gallery .options li.photos .fa {
        margin-right: .25em;
        margin-top: 0;
    }

.mega-gallery .options.active span .fa-star-o:before {
    content: "\f005";
    color: #ffe100;
}

@media screen and (max-width: 640px) {
    .mega-gallery .options {
        top: .5em;
        right: .5em;
    }

        .mega-gallery .options span {
            width: 30px;
            height: 30px;
            line-height: 30px;
        }
}

section.main.vehicle-detail .content .mega-gallery .ink-carousel .stage .slide picture {
    padding-bottom: 65%;
}

#contact-modal .ink-form .control-group .control > textarea {
    height: 7em;
    min-height: inherit;
}

#alarm-modal,
#leak-modal,
#mail-modal,
#contact-modal,
#deal-modal {
    max-width: 1100px;
}

    #alarm-modal .modal-header,
    #leak-modal .modal-header,
    #mail-modal .modal-header,
    #contact-modal .modal-header,
    #deal-modal .modal-header {
        padding: .9em 1em .8em 2em;
    }

    #alarm-modal .modal-body,
    #leak-modal .modal-body,
    #mail-modal .modal-body,
    #contact-modal .modal-body,
    #deal-modal .modal-body {
        padding: 2em;
    }

@media screen and (max-width: 640px) {
    #alarm-modal .modal-header,
    #leak-modal .modal-header,
    #mail-modal .modal-header,
    #contact-modal .modal-header,
    #deal-modal .modal-header {
        padding: .9em 1em .8em 1em;
    }

    #alarm-modal .modal-body,
    #leak-modal .modal-body,
    #mail-modal .modal-body,
    #contact-modal .modal-body,
    #deal-modal .modal-body {
        padding: 1em;
    }
}

@-moz-document url-prefix() {
    #alarm-modal,
    #leak-modal,
    #mail-modal,
    #contact-modal,
    #deal-modal {
        max-width: inherit;
    }
}

.instant-contact {
    top: 50%;
    left: 50%;
    position: fixed;
    z-index: 1000;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 350px;
    min-width: 320px;
    min-height: 300px;
    padding: 1em;
    padding-bottom: 0;
    background: #42413d;
    color: #ffffff;
    text-align: center;
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5);
}

    .instant-contact .close-button {
        display: block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        text-align: center;
        color: #c2c1bd;
        font-size: 1.5em;
        float: right;
        margin: -0.25em -0.25em 0.25em 0.25em;
    }

    .instant-contact h3 {
        color: #ffffff;
        font-size: 1.2em;
        font-weight: 300;
        text-transform: uppercase;
    }

    .instant-contact p {
        color: #ffffff;
        margin-bottom: .75em;
        font-weight: 300;
    }

    .instant-contact .ink-alert {
        margin-bottom: .75em;
        font-size: .85em;
        font-weight: 400;
        color: #ff433f;
    }

    .instant-contact .ink-form .control-group .control.prepend-symbol span input {
        border: none;
        height: 40px;
    }

        .instant-contact .ink-form .control-group .control.prepend-symbol span input:focus + i.fa {
            background: #e4e2d9;
            color: #42413d;
            height: 40px;
            width: 40px;
            border: none;
        }

    .instant-contact .ink-form .control-group .control.prepend-symbol i.fa {
        color: #42413d;
        height: 40px;
        width: 40px;
    }

        .instant-contact .ink-form .control-group .control.prepend-symbol i.fa.fa-mobile {
            font-size: 1.6em;
            line-height: 40px;
            height: 40px;
            width: 40px;
        }

    .instant-contact .ink-button {
        font-size: .8em;
    }

        .instant-contact .ink-button.light {
            border: 1px solid #c2c1bd;
            background: none;
            color: #ffffff;
        }

            .instant-contact .ink-button.light:focus,
            .instant-contact .ink-button.light:hover {
                border: 1px solid #0c7568;
                background: #0c7568;
            }

        .instant-contact .ink-button .fa {
            margin-right: .25em;
        }

    .instant-contact .checkbox-group li a {
        color: #12b19e;
    }

        .instant-contact .checkbox-group li a:hover {
            text-decoration: none;
            color: #15cdb7;
        }

    .instant-contact .checkbox-group li label {
        text-align: left;
        color: #ffffff !important;
        font-weight: 300;
        font-size: 12px;
        margin-top: .2em;
        margin-left: 2.25em;
    }

    .instant-contact .checkbox-group li input[type=checkbox] ~ label:before {
        border: none;
        width: 18px;
        height: 18px;
    }

    .instant-contact .checkbox-group li input[type=checkbox]:checked ~ label:before {
        border: none;
        line-height: 18px;
    }

.widget-retoma .wrapper {
    padding: 1em 2em;
    min-height: 400px;
    color: #ffffff;
    text-align: center;
    background: linear-gradient(-45deg, #0f9585 0%, #12b19e 100%);
}

@media screen and (max-width: 640px) {
    .widget-retoma .wrapper {
        min-height: auto;
        padding: 1em 2em 2em 2em;
    }
}

.widget-retoma .control-group {
    max-width: 300px;
    margin: 0 auto 2em auto;
}

.widget-retoma h4,
.widget-retoma p {
    color: #ffffff;
    text-align: center;
}

.widget-retoma h4 {
    font-size: 1.7em;
    line-height: 1.3em;
    text-transform: uppercase;
    font-weight: 300;
}

.widget-retoma p {
    font-size: 1.2em;
    font-weight: 300;
}

.widget-retoma .license-plate {
    background: #ffffff;
    border-radius: 3px;
    background-clip: padding-box;
    padding-left: 2.4em;
}

    .widget-retoma .license-plate:before {
        top: 0;
        left: 0;
    }

    .widget-retoma .license-plate input {
        text-align: center;
        border: 1px solid #ffffff;
        padding: 8px 0;
        height: 100%;
        color: #42413d;
        border-radius: 0 0 0 0 !important;
        background-clip: padding-box !important;
    }

        .widget-retoma .license-plate input:focus {
            -webkit-box-shadow: none !important;
            box-shadow: none !important;
            background: #efede8;
            border: 1px solid #e4e2d9;
        }

    .widget-retoma .license-plate span:last-child input {
        border-radius: 0 3px 3px 0 !important;
        background-clip: padding-box !important;
    }

    .widget-retoma .license-plate .fa {
        color: #6f6d66;
        line-height: 2.3em;
        margin: 0 .5em;
    }

.widget-retoma .ink-button {
    background: none;
    border: 1px solid #ffffff;
    padding: 8px 2em;
    color: #ffffff;
}

    .widget-retoma .ink-button:hover {
        background: #42413d;
        border: 1px solid #42413d;
        background: #0a675c;
        border: 1px solid #0a675c;
    }

.widget-car-check .wrapper {
    padding: 1em 2em;
    min-height: 400px;
    text-align: center;
    background: #f3f2ed;
    border: 1px solid #e4e2d9;
    overflow: hidden;
}

@media screen and (max-width: 640px) {
    .widget-car-check .wrapper {
        min-height: auto;
        padding: 1em 2em 2em 2em;
    }
}

.widget-car-check h4 {
    text-align: center;
    font-size: 1.7em;
    line-height: 1.3em;
    text-transform: uppercase;
    font-weight: 300;
}

.widget-car-check ul {
    display: inline-block;
    margin: 0 0 .5em 0;
    max-width: 90%;
}

    .widget-car-check ul li {
        text-align: left;
        padding: 0 0 .75em 2em;
        position: relative;
    }

        .widget-car-check ul li:before {
            position: absolute;
            left: 0;
            top: -5px;
            font-family: FontAwesome;
            content: "\f00c";
            color: #aca689;
            font-size: 1.4em;
        }

.widget-car-check a:not(.ink-button) {
    line-height: 2.5em;
    white-space: nowrap;
    margin: 0 1em;
}

.widget-car-check .ink-button {
    padding: 8px 2em;
}

.widget-car-check .disclaimer {
    display: block;
    line-height: 1.2em;
    margin-top: .75em;
}

.popup-notification {
    position: fixed;
    z-index: 10;
    bottom: 1em;
    right: 1em;
    width: 300px;
    background: #f3f2ed;
    border: 1px solid #e4e2d9;
    padding: 1em;
    font-weight: 300;
    font-size: .9em;
    line-height: 1.3em;
}

    .popup-notification a {
        float: left;
        padding-left: 1em;
        position: relative;
        color: #42413d;
    }

        .popup-notification a strong {
            display: block;
            margin-top: .25em;
            font-weight: 500;
            color: #0f9585;
        }

        .popup-notification a:hover {
            text-decoration: none;
        }

            .popup-notification a:hover strong {
                display: block;
                color: #0a675c;
            }

    .popup-notification .fa-bolt {
        position: absolute;
        left: -0.25em;
        top: 0;
        font-size: 1.5em;
        color: #0f9585;
        -webkit-animation: pulse 1s ease-out infinite;
        animation: pulse 1s ease-out infinite;
    }

@-webkit-keyframes pulse {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes pulse {
    0%, 100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

.popup-notification .close {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 500;
    border: none;
    background: transparent;
}

    .popup-notification .close:focus {
        outline: none;
    }

.ink-modal .description article {
    position: relative;
}

    .ink-modal .description article .details {
        border: none;
        padding: .5em 0 0 0;
    }

        .ink-modal .description article .details h3 {
            font-size: 1em;
        }

        .ink-modal .description article .details p {
            line-height: 1.5em;
        }

            .ink-modal .description article .details p.price {
                margin-top: .25em;
            }

@media screen and (max-width: 1260px) {
    .ink-modal .description article .details p {
        line-height: 1.2em;
        font-size: .85em;
    }

        .ink-modal .description article .details p.price .units {
            font-size: 2.2em;
        }
}

.ink-modal .disclaimer {
    display: block;
    line-height: 1.2em;
    margin-top: .75em;
}

.sell-car .ink-grid > p {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 0;
}

.sell-car h2 {
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-block;
}

    .sell-car h2 strong {
        font-weight: 500;
    }

.sell-car .buttons {
    margin: 0;
}

    .sell-car .buttons li {
        margin: 0 0 0 .5em;
        position: relative;
        float: left;
    }

.sell-car .stepper .step-item:first-child .step-ctn:before {
    display: none;
}

.sell-car .stepper .step-item:last-child .step-ctn:after {
    display: none;
}

.sell-car .stepper .step-item .step-ctn {
    position: relative;
}

    .sell-car .stepper .step-item .step-ctn:before {
        position: absolute;
        top: 50%;
        left: -50%;
        width: 100%;
        height: 2px;
        margin-top: -1px;
        background-color: #e4e2d9;
        content: "";
    }

    .sell-car .stepper .step-item .step-ctn .step {
        position: relative;
        width: 60px;
        height: 60px;
        margin: 0 auto;
        background-color: #e4e2d9;
        text-align: center;
        border-radius: 30px;
        background-clip: padding-box;
        z-index: 1;
    }

        .sell-car .stepper .step-item .step-ctn .step .number {
            font-size: 1.5em;
            font-weight: 300;
            line-height: 60px;
            color: #333333;
        }

        .sell-car .stepper .step-item .step-ctn .step .action {
            display: none;
        }

.sell-car .stepper .step-item.active .step-ctn:before {
    background-color: #42413d;
}

.sell-car .stepper .step-item.active .step-ctn .step {
    background-color: #42413d;
}

    .sell-car .stepper .step-item.active .step-ctn .step .number {
        color: #ffffff;
    }

.sell-car .basic-info h5 {
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: .5em;
}

.sell-car .basic-info h4 {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 1em;
}

    .sell-car .basic-info h4 strong {
        white-space: nowrap;
    }

.sell-car .basic-info p.tip {
    font-weight: 300;
    color: #6f6d66;
    font-size: 1em;
}

    .sell-car .basic-info p.tip strong {
        font-weight: 400;
    }

.sell-car .basic-info .thumb picture {
    display: block;
    min-height: 40px;
    background-color: #e4e2d9;
    position: relative;
}

    .sell-car .basic-info .thumb picture img {
        display: block;
        width: 100%;
    }

.sell-car .control-group p.tip {
    font-size: .8em;
}

.sell-car .control-group > label {
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    color: #6f6d66;
    margin-left: .25em;
}

.sell-car .control-group .control select {
    position: relative;
    padding-right: 30px !important;
    -webkit-appearance: none;
    text-indent: .01px;
    text-overflow: '';
    outline: 0;
    line-height: 1.25em;
}

    .sell-car .control-group .control select:disabled {
        background: #f3f2ed;
        color: #c5c5c5;
    }

.sell-car .control-group .control.select:before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 38px;
    height: 38px;
    margin-top: -18px;
    line-height: 38px;
    font-size: 1.2em;
    text-align: center;
    z-index: -1;
    font-family: 'FontAwesome';
    content: "\f107";
    text-shadow: none;
    color: #333;
    z-index: 1;
    cursor: pointer;
    pointer-events: none;
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: .5;
    -moz-opacity: .5;
    opacity: .5;
}

.sell-car .control-group .control input[type=checkbox] {
    margin-right: .5em;
    position: relative;
    width: auto;
}

    .sell-car .control-group .control input[type=checkbox] ~ label {
        display: inline;
        cursor: pointer;
        cursor: hand;
        padding: 0;
        vertical-align: baseline;
    }

        .sell-car .control-group .control input[type=checkbox] ~ label:before {
            position: absolute;
            left: 0;
            top: 2px;
            content: "";
            background: #f3f2ed;
            border: 1px solid #c2c1bd;
            height: 16px;
            width: 16px;
            line-height: 16px;
            border-radius: 3px;
            background-clip: padding-box;
            display: inline-block;
            cursor: pointer;
            cursor: hand;
        }

    .sell-car .control-group .control input[type=checkbox]:checked ~ label:before {
        font-family: FontAwesome;
        content: "\f00c";
        background: #0f9585;
        border: 1px solid #0f9585;
        color: #ffffff;
        font-size: .85em;
        text-align: center;
    }

.sell-car .control-group .control.upload input {
    width: 0.1px;
    height: 0.1px;
    filter: alpha(opacity=0);
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.sell-car .control-group .control.upload label {
    border: 1px solid #0f9585;
    background: #f3f2ed;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: block;
    overflow: hidden;
    border-radius: 3px;
    background-clip: padding-box;
}

    .sell-car .control-group .control.upload label span {
        padding: .25em 0.5em;
        display: inline-block;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        vertical-align: top;
    }

@media screen and (max-width: 640px) {
    .sell-car .control-group .control.upload label span {
        display: block;
        text-align: center;
    }
}

.sell-car .control-group .control.upload label strong {
    height: 100%;
    padding: 0.25em 1em;
    color: #ffffff;
    background: #0f9585;
    display: inline-block;
    font-weight: 300;
    text-transform: uppercase;
}

    .sell-car .control-group .control.upload label strong .fa {
        margin-right: .75em;
    }

@media screen and (max-width: 640px) {
    .sell-car .control-group .control.upload label strong {
        display: block;
        text-align: center;
    }
}

.sell-car .control-group.loading {
    position: relative;
}

    .sell-car .control-group.loading:before {
        position: absolute;
        top: 3px;
        right: 8px;
        font-family: "Fontawesome";
        content: "\f1ce";
        z-index: 2;
        -webkit-animation: spin 1s linear infinite;
        animation: spin 1s linear infinite;
        color: #999999;
    }

    .sell-car .control-group.loading input[type="search"]::-webkit-search-cancel-button,
    .sell-car .control-group.loading .control.select:before {
        display: none;
    }

    .sell-car .control-group.loading .control.select select {
        -moz-appearance: none;
    }

    .sell-car .control-group.loading.has-label:before {
        top: 36px;
    }

.sell-car .control-group.amount .control {
    position: relative;
    padding-right: 25px;
}

    .sell-car .control-group.amount .control .unit {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 20px;
        margin: 0;
        font-size: 14px;
        line-height: 40px;
        color: #6f6d66;
    }

.threesixty-ctn {
    position: relative;
    height: 0;
    padding: 50% 0 0 0;
    overflow: hidden;
}

    .threesixty-ctn .badge {
        position: absolute;
        top: 1em;
        left: 1em;
        width: 50px;
        height: 50px;
        z-index: 2;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: 0.3s opacity ease-out;
        transition: 0.3s opacity ease-out;
        pointer-events: none;
    }

    .threesixty-ctn .control {
        position: absolute;
        top: 50%;
        min-width: 50px;
        height: 50px;
        background-color: rgba(0, 0, 0, 0.25);
        text-align: center;
        line-height: 50px;
        color: #FFF;
        border-radius: 25px;
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        z-index: 2;
    }

        .threesixty-ctn .control:hover {
            background-color: rgba(0, 0, 0, 0.5);
        }

        .threesixty-ctn .control.left {
            left: -1em;
        }

        .threesixty-ctn .control.right {
            right: -1em;
        }

    .threesixty-ctn .loader {
        display: none;
    }

    .threesixty-ctn .ink-tabs .tabs-nav {
        position: absolute;
        top: -1em;
        left: 50%;
        width: 100%;
        margin: 0;
        text-align: center;
        z-index: 1;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

        .threesixty-ctn .ink-tabs .tabs-nav li {
            display: inline-block;
            margin: 0 5px;
        }

            .threesixty-ctn .ink-tabs .tabs-nav li a {
                min-width: 50px;
                height: 34px;
                line-height: 34px;
                padding: 0;
                background-color: rgba(0, 0, 0, 0.25);
                text-align: center;
                border: none;
                border-radius: 3px;
                color: #FFF;
            }

                .threesixty-ctn .ink-tabs .tabs-nav li a i {
                    font-size: 14px;
                }

                .threesixty-ctn .ink-tabs .tabs-nav li a span {
                    font-size: 0.9em;
                    font-weight: 300;
                    text-transform: uppercase;
                    margin: 0 15px;
                }

            .threesixty-ctn .ink-tabs .tabs-nav li:hover a {
                background-color: rgba(0, 0, 0, 0.5);
            }

            .threesixty-ctn .ink-tabs .tabs-nav li.active a {
                background-color: rgba(51, 51, 51, 0.95);
            }

            .threesixty-ctn .ink-tabs .tabs-nav li:last-child {
                margin: 0;
            }

            .threesixty-ctn .ink-tabs .tabs-nav li:nth-child(4) {
                margin-left: 2em;
            }

        .threesixty-ctn .ink-tabs .tabs-nav a.zoom {
            min-width: 34px;
        }

            .threesixty-ctn .ink-tabs .tabs-nav a.zoom .fa {
                font-size: 1em;
            }

            .threesixty-ctn .ink-tabs .tabs-nav a.zoom:active {
                background-color: rgba(51, 51, 51, 0.95);
            }

@media screen and (max-width: 640px) {
    .threesixty-ctn .ink-tabs.mobile-tabs,
    .touch .threesixty-ctn .ink-tabs.mobile-tabs {
        bottom: 1em;
        top: auto !important;
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }

        .threesixty-ctn .ink-tabs.mobile-tabs .tabs-nav,
        .touch .threesixty-ctn .ink-tabs.mobile-tabs .tabs-nav {
            top: auto !important;
            position: relative;
            left: 0;
            -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
        }

            .threesixty-ctn .ink-tabs.mobile-tabs .tabs-nav li {
                margin: 0 5px;
            }
}

.threesixty-ctn .panorama {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.threesixty-ctn .threesixty-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

    .threesixty-ctn .threesixty-gallery li {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /*background:@fake-bg-color;*/
        margin: 0;
    }

        .threesixty-ctn .threesixty-gallery li img {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            top: 45%;
            -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
        }

    .threesixty-ctn .threesixty-gallery:hover {
        /*cursor:ew-resize;cursor:-webkit-ew-resize;*/
        cursor: grab;
        cursor: -webkit-grab;
    }

.no-touch .threesixty-ctn .control,
.no-touch .threesixty-ctn .ink-tabs .tabs-nav {
    zoom: 1;
    filter: alpha(opacity=0);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transition: 0.3s all ease-out;
    transition: 0.3s all ease-out;
}

.threesixty-ctn:hover .control,
.touch .threesixty-ctn .control,
.threesixty-ctn:hover .ink-tabs .tabs-nav,
.touch .threesixty-ctn .ink-tabs .tabs-nav {
    zoom: 1;
    filter: alpha(opacity=100);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transition: none;
    transition: none;
}

.threesixty-ctn:hover .ink-tabs .tabs-nav,
.touch .threesixty-ctn .ink-tabs .tabs-nav {
    top: 1em;
}

.threesixty-ctn:hover .control.left,
.touch .threesixty-ctn .control.left {
    left: 1em;
}

.threesixty-ctn:hover .control.right,
.touch .threesixty-ctn .control.right {
    right: 1em;
}

.touch .threesixty-ctn .control {
    display: none;
}

.threesixty-ctn .control i.fa {
    font-size: 2.2em;
    line-height: 50px;
}

.threesixty-ctn .control.left i.fa {
    margin-left: -2px;
}

.threesixty-ctn .control.right i.fa {
    margin-right: -2px;
}

.touch .threesixty-ctn .ink-tabs .tabs-nav {
    top: auto;
    bottom: 10px;
    text-align: left;
}

.threesixty-ctn.tab-interior .control {
    display: none;
}

.threesixty-ctn.loading .loader {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 3;
}

    .threesixty-ctn.loading .loader progress {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

        .threesixty-ctn.loading .loader progress[value] {
            width: 50%;
            height: 8px;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

            .threesixty-ctn.loading .loader progress[value]::-webkit-progress-bar {
                background-color: rgba(0, 0, 0, 0.25);
                border-radius: 10px;
            }

            .threesixty-ctn.loading .loader progress[value]::-webkit-progress-value {
                position: relative;
                background-color: #5b8f22;
                border-radius: 10px;
                background-size: 35px 20px;
                background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIzMyUiIHN0b3AtY29sb3I9InJnYigyNTUsIDI1NSwgMjU1KSIgc3RvcC1vcGFjaXR5PSIwLjMiLz48c3RvcCBvZmZzZXQ9IjY2JSIgc3RvcC1jb2xvcj0icmdiKDI1NSwgMjU1LCAyNTUpIiBzdG9wLW9wYWNpdHk9IjAuMyIvPjwvbGluZWFyR3JhZGllbnQ+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNsZXNzaGF0LWdlbmVyYXRlZCkiIC8+PC9zdmc+);
                background-image: linear-gradient(-45deg, transparent 33%, rgba(255, 255, 255, 0.3) 33%, rgba(255, 255, 255, 0.3) 66%, transparent 66%);
            }

        .threesixty-ctn.loading .loader progress:not([value]) {
            -webkit-animation: animate-stripes 5s linear infinite;
            animation: animate-stripes 5s linear infinite;
            background-size: 35px 20px;
            background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMSAxIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIj48bGluZWFyR3JhZGllbnQgaWQ9Imxlc3NoYXQtZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+PHN0b3Agb2Zmc2V0PSIzMyUiIHN0b3AtY29sb3I9InJnYigyNTUsIDI1NSwgMjU1KSIgc3RvcC1vcGFjaXR5PSIwLjI1Ii8+PHN0b3Agb2Zmc2V0PSI2NiUiIHN0b3AtY29sb3I9InJnYigyNTUsIDI1NSwgMjU1KSIgc3RvcC1vcGFjaXR5PSIwLjI1Ii8+PC9saW5lYXJHcmFkaWVudD48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2xlc3NoYXQtZ2VuZXJhdGVkKSIgLz48L3N2Zz4=);
            background-image: linear-gradient(-45deg, transparent 33%, rgba(255, 255, 255, 0.25) 33%, rgba(255, 255, 255, 0.25) 66%, transparent 66%);
        }

@media screen and (max-width: 640px) {
    .threesixty-ctn .badge {
        width: 30px;
        height: 30px;
        bottom: 1em;
        top: initial;
    }
}

@media screen and (max-width: 960px) {
    .threesixty-ctn {
        padding-top: 68%;
    }
}

.about h3 {
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 300;
}

    .about h3 strong {
        font-weight: 500;
    }

.about h4 {
    font-weight: 500;
    color: #6f6d66;
    margin-bottom: .25em;
}

.about .ink-form .control-group .select select {
    width: 100%;
}

.about ul.icon-list {
    margin: 2em 0;
    padding-left: 5em;
    position: relative;
    vertical-align: middle;
}

    .about ul.icon-list:before {
        font-family: FontAwesome;
        content: "";
        position: absolute;
        left: 0;
        width: 1.5em;
        text-align: center;
        display: inline;
        top: 50%;
        font-size: 3em;
        -webkit-transform: translate(0px, -50%);
        transform: translate(0px, -50%);
        color: #d6d3c5;
    }

    .about ul.icon-list.alert:before {
        content: "\f06a";
    }

    .about ul.icon-list.photos:before {
        content: "\f030";
    }

    .about ul.icon-list.car:before {
        content: "\f1b9";
    }

    .about ul.icon-list.price:before {
        content: "\f153";
    }

    .about ul.icon-list.advert:before {
        content: "\f0a1";
    }

    .about ul.icon-list li strong {
        font-weight: 500;
        color: #6f6d66;
        margin-bottom: .25em;
        text-transform: uppercase;
        font-size: 1.2em;
    }

@media screen and (max-width: 640px) {
    .about ul.icon-list {
        padding-left: 3em;
    }

        .about ul.icon-list:before {
            -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
            top: -0.25em;
            font-size: 2em;
            width: 1em;
        }
}

.login-cover {
    background: #42413d url() no-repeat center 20%;
    background-size: cover;
    position: relative;
}

    .login-cover .promo {
        height: 100%;
        position: relative;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: -webkit-box;
        display: flex;
        -moz-justify-content: flex-end;
        -ms-justify-content: flex-end;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -moz-align-items: flex-end;
        -ms-align-items: flex-end;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

        .login-cover .promo h2 {
            margin: 0;
            /*strong:before {
                content: "\a ";
                white-space: pre;
            }*/
        }

            .login-cover .promo h2 span,
            .login-cover .promo h2 strong {
                padding: 0 .25em;
                background-color: #42413d;
                background-color: rgba(66, 65, 61, 0.8);
                zoom: 1;
                -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d)";
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d);
                color: #ffffff;
                font-size: .95em;
                font-weight: 200;
                line-height: 1.4em;
                padding-left: .5em;
            }

            .login-cover .promo h2 strong {
                text-transform: uppercase;
            }

        .login-cover .promo .star {
            width: 80px;
            height: 80px;
            text-align: center;
            display: inline-block;
            background-color: #aca689;
            background-color: rgba(172, 166, 137, 0.8);
            zoom: 1;
            -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ccaca689, endColorstr=#ccaca689)";
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ccaca689, endColorstr=#ccaca689);
            line-height: 80px;
            position: relative;
            -webkit-box-sizing: content-box;
            box-sizing: content-box;
            text-overflow: clip;
        }

            .login-cover .promo .star span {
                position: relative;
                z-index: 1;
                text-transform: uppercase;
                font-weight: 600;
                font-size: 1.2em;
                color: #ffffff;
            }

            .login-cover .promo .star:after,
            .login-cover .promo .star:before {
                -webkit-box-sizing: content-box;
                box-sizing: content-box;
                width: 80px;
                height: 80px;
                position: absolute;
                content: "";
                top: 0;
                left: 0;
                border: none;
                text-overflow: clip;
                background-color: #aca689;
                background-color: rgba(172, 166, 137, 0.8);
                zoom: 1;
                -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ccaca689, endColorstr=#ccaca689)";
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ccaca689, endColorstr=#ccaca689);
            }

            .login-cover .promo .star:before {
                -webkit-transform: rotateZ(30deg);
                transform: rotateZ(30deg);
            }

            .login-cover .promo .star:after {
                -webkit-transform: rotateZ(60deg);
                transform: rotateZ(60deg);
            }

    .login-cover .login h3 {
        font-size: 1.1em;
        line-height: 1.2em;
        font-weight: 300;
        color: #ffffff;
    }

    .login-cover .login ul {
        margin: 0;
    }

        .login-cover .login ul li {
            position: relative;
            padding: 2em;
            margin: 0;
            background-color: #42413d;
            background-color: rgba(66, 65, 61, 0.8);
            zoom: 1;
            -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d)";
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d);
            border-radius: 3px;
            background-clip: padding-box;
        }

            .login-cover .login ul li:first-child {
                border-radius: 3px 3px 0 0;
                background-clip: padding-box;
                margin-bottom: 1em;
            }

            .login-cover .login ul li:last-child {
                border-radius: 0 0 3px 3px;
                background-clip: padding-box;
            }

            .login-cover .login ul li .ink-button.main-action {
                text-align: left;
            }

                .login-cover .login ul li .ink-button.main-action i.fa {
                    float: right;
                    font-size: 1.2em;
                    line-height: 1.2em;
                }

            .login-cover .login ul li .link {
                display: block;
                margin-top: 1em;
                color: #12b19e;
            }

                .login-cover .login ul li .link:hover {
                    display: block;
                    margin-top: 1em;
                    color: #15cdb7;
                }

    .login-cover.profissionais {
        background: #42413d url() no-repeat center top;
        background-size: cover;
    }

        .login-cover.profissionais .promo {
            display: -moz-flex;
            display: -ms-flexbox;
            display: -ms-flex;
            display: -webkit-box;
            display: flex;
            -moz-justify-content: center;
            -ms-justify-content: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -moz-align-items: flex-end;
            -ms-align-items: flex-end;
            -webkit-box-align: end;
            -ms-flex-align: end;
            align-items: flex-end;
        }

            .login-cover.profissionais .promo .ink-button.light {
                background-color: #42413d;
                background-color: rgba(66, 65, 61, 0.8);
                zoom: 1;
                -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d)";
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d);
                color: #ffffff;
                border: 1px solid #ffffff;
                font-size: .7em;
                white-space: inherit;
            }

                .login-cover.profissionais .promo .ink-button.light i.fa {
                    margin-right: .5em;
                }

                .login-cover.profissionais .promo .ink-button.light:hover {
                    background: #0f9585;
                }

        .login-cover.profissionais .login .ink-button.light {
            background-color: #42413d;
            background-color: rgba(66, 65, 61, 0.8);
            zoom: 1;
            -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d)";
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d);
            color: #ffffff;
            border: 1px solid #ffffff;
            font-size: 1em;
            white-space: inherit;
            width: 100%;
            margin-top: 2em;
        }

            .login-cover.profissionais .login .ink-button.light i.fa {
                margin-right: .5em;
            }

            .login-cover.profissionais .login .ink-button.light:hover {
                background: #0f9585;
            }

@media screen and (max-width: 960px) {
    .login-cover .login ul li {
        padding: 1em;
    }

    .login-cover .promo h2 span,
    .login-cover .promo h2 strong {
        font-size: .8em;
        line-height: 1em;
    }

    .login-cover .promo .star,
    .login-cover .promo .star:after,
    .login-cover .promo .star:before {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

        .login-cover .promo .star span {
            font-size: 1em;
        }
}

@media screen and (max-width: 640px) {
    .login-cover .promo {
        height: 8em;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -moz-align-items: center;
        -ms-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .login-cover .promo h2 span,
        .login-cover .promo h2 strong {
            font-size: .7em;
            line-height: 0.9em;
        }

        .login-cover .promo .star,
        .login-cover .promo .star:after,
        .login-cover .promo .star:before {
            width: 50px;
            height: 50px;
            line-height: 50px;
            font-size: .9em;
        }

    .login-cover.profissionais {
        background: #42413d url() no-repeat 25% top;
        background-size: cover;
    }
}

.login-ad h3 {
    font-size: 1.5em;
    margin-bottom: .25em;
    text-align: center;
}

.login-ad p {
    text-align: center;
}

.login-ad i.fa {
    text-align: center;
    color: #aca689;
    font-size: 5em;
    display: block;
    margin-bottom: .25em;
}

@media screen and (max-width: 960px) {
    .login-ad i.fa {
        font-size: 4em;
    }
}

.double-login .login {
    background-color: #42413d;
    background-color: rgba(66, 65, 61, 0.8);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#cc42413d, endColorstr=#cc42413d);
    /*new*/
    float: right;
    width: 450px;
}

@media screen and (max-width: 960px) {
    .double-login .login {
        max-width: 400px;
        margin: 0 auto;
        float: none;
    }
}

@media screen and (max-width: 640px) {
    .double-login .login {
        width: inherit;
    }
}

.double-login .login h1 {
    color: #d6d3c5;
    text-transform: uppercase;
    font-weight: 200;
    margin: 0;
}

.double-login .login ul {
    max-width: 400px;
    margin: 0 auto;
    padding: 1em 0;
}

    .double-login .login ul li {
        margin: 0;
        padding: 1em 2em;
        background: none;
    }

        .double-login .login ul li:first-child,
        .double-login .login ul li:last-child {
            margin: 0;
        }

        .double-login .login ul li .ink-button {
            text-align: left;
        }

            .double-login .login ul li .ink-button i.fa {
                float: right;
                font-size: 1.2em;
                line-height: 1.2em;
            }

            .double-login .login ul li .ink-button.light {
                color: #d6d3c5;
                border-color: #d6d3c5;
            }

                .double-login .login ul li .ink-button.light:hover {
                    color: #ffffff;
                    border-color: #0f9585;
                    background: #0f9585;
                }

.double-login .promo {
    height: auto;
    padding: 2em 0;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.5);
    zoom: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#80ffffff, endColorstr=#80ffffff)";
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#80ffffff, endColorstr=#80ffffff);
    /*new*/
    float: right;
    width: 450px;
}

    .double-login .promo .star span {
        color: #42413d;
    }

    .double-login .promo h2 span {
        padding: 0 .25em 0 1em;
        font-size: .8em;
    }

    .double-login .promo h2 small {
        display: block;
        float: left;
        padding: .5em 1em .5em 1.5em;
        background-color: #ffffff;
        background-color: rgba(255, 255, 255, 0.8);
        zoom: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#ccffffff, endColorstr=#ccffffff)";
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#ccffffff, endColorstr=#ccffffff);
        color: #42413d;
        font-weight: 300;
        font-size: .6em;
    }

@media screen and (max-width: 960px) {
    .double-login .promo {
        max-width: 400px;
        margin: 0 auto;
        margin-bottom: 2em;
        float: none;
    }
}

@media screen and (max-width: 640px) {
    .double-login .promo {
        width: inherit;
    }

        .double-login .promo h2 span {
            font-size: .7em;
        }

        .double-login .promo h2 small {
            font-size: .5em;
        }
}

.stand-stamps {
    background: #6f6d66;
    padding: 1em 0 .75em;
    padding-bottom: .5em;
    color: #ffffff;
    text-align: center;
}

    .stand-stamps nav.ink-navigation ul.pagination.dotted li a {
        background: #d6d3c5;
        border: none;
    }

    .stand-stamps ul.stage li {
        position: relative;
    }

        .stand-stamps ul.stage li a {
            color: #12b19e;
            text-decoration: none;
            display: block;
            font-size: .9em;
            font-weight: 300;
            padding: .5em 0;
            -webkit-backface-visibility: hidden;
        }

            .stand-stamps ul.stage li a span {
                -webkit-transition: all 0.25s ease-in-out;
                -moz-transition: all 0.25s ease-in-out;
                -ms-transition: all 0.25s ease-in-out;
                -o-transition: all 0.25s ease-in-out;
                position: absolute;
                display: inline-block;
                z-index: 1;
                border-radius: 3px;
                background-clip: padding-box;
                filter: alpha(opacity=0);
                opacity: 0;
                top: 0;
                left: 50%;
                -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
                font-size: .85em;
                background: #0f9585;
                padding: .25em .5em;
                white-space: nowrap;
                color: #ffffff;
            }

                .stand-stamps ul.stage li a span:before {
                    content: "";
                    position: absolute;
                    bottom: -8px;
                    left: 50%;
                    -webkit-transform: translate(-50%, 0);
                    transform: translate(-50%, 0);
                    width: 0;
                    height: 0;
                    border-style: solid;
                    border-width: 8px 8px 0 8px;
                    border-color: #0f9585 transparent transparent transparent;
                }

            .stand-stamps ul.stage li a:hover {
                color: #15cdb7;
            }

                .stand-stamps ul.stage li a:hover span {
                    filter: alpha(opacity=100);
                    opacity: 1;
                    top: -20px;
                }

                .stand-stamps ul.stage li a:hover img {
                    filter: alpha(opacity=60);
                    opacity: 0.6;
                }

                    .stand-stamps ul.stage li a:hover img.fade {
                        -webkit-filter: contrast(100%);
                        -moz-filter: contrast(100%);
                        -ms-filter: contrast(100%);
                        -o-filter: contrast(100%);
                    }

    .stand-stamps h3 {
        font-size: 1.4em;
        color: #e4e2d9;
        font-weight: 200;
        text-align: center;
        margin: 0 80px;
    }

@media screen and (max-width: 640px) {
    .stand-stamps h3 {
        margin: 0;
        font-size: 1.2em;
    }
}

.stand-stamps h3 span {
    text-transform: uppercase;
    white-space: nowrap;
}

    .stand-stamps h3 span:first-child {
        text-transform: none;
        color: #ffffff;
    }

.stand-stamps h3 strong {
    font-weight: 300;
}

.stand-stamps h3 a {
    color: #e4e2d9;
    text-decoration: none;
}

    .stand-stamps h3 a:hover {
        color: #ffffff;
    }

.stand-stamps h3 .all-stands {
    position: absolute;
    text-transform: none;
    top: 0;
    right: 0;
    color: #12b19e;
    text-decoration: none;
    display: inline-block;
    font-size: .6em;
    font-weight: 400;
}

@media screen and (max-width: 640px) {
    .stand-stamps h3 .all-stands {
        position: relative;
        bottom: inherit;
        top: -3px;
        margin-left: .5em;
    }
}

.stand-stamps h3 .all-stands:hover {
    color: #15cdb7;
}

.stand-stamps .fa-bolt,
.vehicle-list li article a .thumb .options li.bolt-stamp .fa-bolt,
.ink-modal .description article .thumb .options li.bolt-stamp .fa-bolt,
.stands-list li article a .thumb .options li.bolt-stamp .fa-bolt {
    position: relative;
    width: 22px;
    height: 22px;
    line-height: 22px;
    margin-bottom: -2px;
    margin-left: .25em;
}

    .stand-stamps .fa-bolt:before,
    .stand-stamps .fa-bolt:after,
    .vehicle-list li article a .thumb .options li.bolt-stamp .fa-bolt:before,
    .vehicle-list li article a .thumb .options li.bolt-stamp .fa-bolt:after,
    .ink-modal .description article .thumb .options li.bolt-stamp .fa-bolt:before,
    .ink-modal .description article .thumb .options li.bolt-stamp .fa-bolt:after,
    .stands-list li article a .thumb .options li.bolt-stamp .fa-bolt:before,
    .stands-list li article a .thumb .options li.bolt-stamp .fa-bolt:after {
        position: absolute;
        left: 0;
        top: 0;
    }

    .stand-stamps .fa-bolt:before,
    .vehicle-list li article a .thumb .options li.bolt-stamp .fa-bolt:before,
    .ink-modal .description article .thumb .options li.bolt-stamp .fa-bolt:before,
    .stands-list li article a .thumb .options li.bolt-stamp .fa-bolt:before {
        z-index: 1;
        width: 22px;
        text-align: center;
    }

    .stand-stamps .fa-bolt:after,
    .vehicle-list li article a .thumb .options li.bolt-stamp .fa-bolt:after,
    .ink-modal .description article .thumb .options li.bolt-stamp .fa-bolt:after,
    .stands-list li article a .thumb .options li.bolt-stamp .fa-bolt:after {
        content: "";
        width: 22px;
        height: 22px;
        border-radius: 22px;
        background-clip: padding-box;
        background: #42413d;
        z-index: 0;
    }

.stand-stamps picture {
    position: relative;
    height: 0;
    padding-bottom: 60px;
    max-width: 90%;
    margin: 0 auto;
}

    .stand-stamps picture img {
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-filter: none;
        filter: none;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        filter: alpha(opacity=100);
        opacity: 1;
        -webkit-backface-visibility: hidden;
        max-height: 50px;
    }

        .stand-stamps picture img.fade {
            -webkit-filter: contrast(50%);
            -moz-filter: contrast(50%);
            -ms-filter: contrast(50%);
            -o-filter: contrast(50%);
        }

@media screen and (max-width: 960px) {
    .stand-stamps picture {
        max-width: 80%;
    }

        .stand-stamps picture img {
            max-height: 40px;
        }
}

@media screen and (max-width: 640px) {
    .stand-stamps picture {
        max-width: 70%;
    }

        .stand-stamps picture img {
            max-height: 30px;
        }
}

.stands-sorting h2 {
    font-size: 2em;
    text-align: center;
    font-weight: 200;
}

    .stands-sorting h2 span {
        font-weight: 300;
    }

        .stands-sorting h2 span strong {
            font-weight: 500;
        }

.stands-sorting ul.bullets {
    margin: 0 auto 2em auto;
}

    .stands-sorting ul.bullets li {
        font-size: .85em;
        text-align: center;
    }

        .stands-sorting ul.bullets li img {
            width: 50px;
        }

        .stands-sorting ul.bullets li span {
            display: block;
            line-height: 1.2em;
            margin-top: .5em;
        }

.stands-sorting .control-group .ink-dropdown > .ink-button:focus,
.stands-sorting .control-group .ink-dropdown > .ink-button:hover {
    background: #f3f2ed;
}

.stands-sorting .control-group .ink-dropdown .dropdown-menu li ul {
    margin: 0.5em 0 0 1.6em;
}

.stands-sorting .control-group .ink-dropdown .dropdown-menu li li input[type=checkbox] {
    position: absolute;
}

.stands-sorting .control-group .ink-dropdown .dropdown-menu li li label {
    padding-left: 1.6em !important;
    word-break: break-word;
    display: block;
    line-height: 1.3em;
}

.stands-list .control-group .control.append-button span > input {
    border-radius: 3px 0 0 3px;
    background-clip: padding-box;
}

.stands-list .control-group .control.append-button .ink-button {
    border-radius: 0 3px 3px 0;
    background-clip: padding-box;
}

.stands-list li article {
    height: 100%;
}

    .stands-list li article a {
        height: 100%;
        display: -moz-flex;
        display: -ms-flexbox;
        display: -ms-flex;
        display: -webkit-box;
        display: flex;
        -ms-flex-flow: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-flow: column;
    }

        .stands-list li article a .details {
            display: -moz-flex;
            display: -ms-flexbox;
            display: -ms-flex;
            display: -webkit-box;
            display: flex;
            -webkit-box-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
        }

.stands-list > li article a .thumb picture {
    padding-bottom: 40%;
}

.stands-list > li article a .logo {
    position: absolute;
    top: 0;
    left: 50%;
    background: #42413d;
    max-height: 60px;
    max-width: 90%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

    .stands-list > li article a .logo picture img {
        max-height: 60px;
    }

    .stands-list > li article a .logo h2 {
        margin: 0;
        line-height: 60px;
        padding: 0 .75em;
        color: #fff;
        font-weight: 500;
        font-size: 1.6em;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

@media screen and (max-width: 960px) {
    .stands-list > li article a .logo {
        max-height: 50px;
    }

        .stands-list > li article a .logo h2 {
            line-height: 50px;
            font-size: 1.4em;
        }
}

.stands-list > li article a .details {
    position: relative;
    text-align: center;
    padding-top: calc(30px + 1em);
}

    .stands-list > li article a .details h3 {
        font-size: 1.8em;
        text-align: center;
        text-overflow: inherit;
        white-space: normal;
        border: none;
        padding: 0;
        margin-bottom: .15em;
    }

@media screen and (max-width: 960px) {
    .stands-list > li article a .details h3 {
        font-size: 1.6em;
    }
}

.stands-list > li article a .details p {
    text-align: center;
    font-size: 1.1em;
    color: #6f6d66;
}

.stands-list > li article a .details .column-group {
    width: 100%;
}

.stands-list > li article a .details ul {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -ms-flex;
    display: -webkit-box;
    display: flex;
    -moz-justify-content: space-evenly;
    -ms-justify-content: space-evenly;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    padding-bottom: .4em;
    border-bottom: 1px solid #e4e2d9;
    margin-bottom: .75em;
}

    .stands-list > li article a .details ul li {
        text-transform: uppercase;
        font-size: .85em;
        color: #6f6d66;
        padding: 0 .5em;
    }

        .stands-list > li article a .details ul li span {
            font-weight: 600;
            color: #42413d;
        }

.stands-list > li article a .details .ink-button {
    margin: 0 auto;
    display: inline-block;
    font-size: .85em;
}

.stands-details h3 {
    font-size: 1.6em;
    text-transform: uppercase;
    font-weight: 300;
}

    .stands-details h3 strong {
        font-weight: 500;
    }

.stands-details .stand-header {
    text-align: center;
}

    .stands-details .stand-header picture {
        background: #42413d;
        display: inline-block;
        margin-bottom: 2em;
    }

@media all and (-ms-high-contrast: none) {
    .stands-details .stand-header picture img {
        width: 100%;
        height: auto;
    }
}

.stands-details .stand-header h3 {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: .15em;
}

.stands-details .stand-header p {
    font-size: 1.1em;
    color: #6f6d66;
}

.stands-details .stand-header ul {
    margin: 0 auto;
    margin-bottom: 2em;
    max-width: 300px;
}

    .stands-details .stand-header ul li {
        padding: .5em;
        border: 1px solid #e4e2d9;
        font-size: .9em;
        font-weight: 300;
        margin: 0 0 -1px 0;
        background: #ffffff;
        position: relative;
        z-index: 1;
    }

    .stands-details .stand-header ul:after,
    .stands-details .stand-header ul:before {
        font-family: FontAwesome;
        font-size: 25px;
        line-height: 25px;
        color: #e4e2d9;
        height: 25px;
        display: block;
    }

    .stands-details .stand-header ul:before {
        content: "\f0a3";
        margin-bottom: -15px;
    }

    .stands-details .stand-header ul:after {
        content: "\f0a3";
        margin-top: -15px;
    }

.stands-details .stand-header .ink-button {
    background: #0f9585;
    color: #ffffff;
    width: 100%;
    max-width: 300px;
    border: none;
    line-height: 2.1em;
    padding: 0;
}

    .stands-details .stand-header .ink-button .fa {
        font-size: 1.2em;
        display: block;
        float: left;
        width: 2em;
        line-height: 1.8em;
        border-radius: 3px 0 0 3px;
        background-clip: padding-box;
        background: #0c7568;
        -webkit-transition: all 0.25s ease-in-out;
        -moz-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
    }

    .stands-details .stand-header .ink-button:focus .fa,
    .stands-details .stand-header .ink-button:hover .fa {
        background: #42413d;
    }

.stands-details .stand-contacts {
    padding: 0;
}

@media screen and (min-width: 960px) {
    .stands-details .stand-contacts {
        margin: 0;
    }

        .stands-details .stand-contacts [class*=all-] {
            padding: 0;
        }
}

.stands-details .stand-contacts h3 {
    text-align: center;
    display: block;
}

.stands-details .stand-contacts a {
    color: #42413d;
}

    .stands-details .stand-contacts a:hover {
        color: #6f6d66;
    }

.stands-details .stand-contacts p {
    padding-left: 40px;
    margin-bottom: .5em;
    color: #42413d;
}

.stands-details .stand-contacts [class*=icon-] {
    margin-right: 0;
    display: block;
}

    .stands-details .stand-contacts [class*=icon-]:before {
        color: #6f6d66;
    }

.stands-details .stand-contacts .icon-address {
    margin-bottom: 0;
}

    .stands-details .stand-contacts .icon-address .icon-map {
        color: #0f9585;
    }

.stands-details .stand-contacts .icon-facebook,
.stands-details .stand-contacts .icon-website {
    word-break: break-all;
    line-height: 1.2em;
}

    .stands-details .stand-contacts .icon-facebook:before,
    .stands-details .stand-contacts .icon-website:before {
        line-height: 1.4em;
    }

.stands-details .stand-contacts .icon-website {
    margin-bottom: .5em;
}

    .stands-details .stand-contacts .icon-website:before {
        content: "\f0ac";
    }

.stands-details .stand-contacts .icon-facebook:before {
    content: "\f230";
    font-size: .9em;
}

.stands-details .stand-contacts ul {
    margin: 0;
}

    .stands-details .stand-contacts ul li {
        margin-bottom: 1em;
    }

.stands-details .stand-contacts .icon-clock {
    font-weight: 500;
}

    .stands-details .stand-contacts .icon-clock:before {
        content: "\f017";
    }

    .stands-details .stand-contacts .icon-clock + p {
        padding-left: 40px;
    }

.stands-details .mega-gallery .ink-carousel .stage .slide picture {
    padding-bottom: 55%;
}

.stands-details .mega-gallery .ink-carousel .stage .slide .video-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 55%;
}

    .stands-details .mega-gallery .ink-carousel .stage .slide .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.stands-details .stand-specs ul,
.stands-details .stand-specs li {
    margin-top: 0;
}

.stands-details .stand-text {
    margin-right: 2em;
}

.stands-details .stand-catalogue {
    overflow: hidden;
}

    .stands-details .stand-catalogue li {
        text-align: center;
        text-transform: uppercase;
        font-weight: 300;
        margin-bottom: .5em;
        margin-right: 2em;
        float: left;
    }

        .stands-details .stand-catalogue li:last-child {
            margin-right: 0;
        }

        .stands-details .stand-catalogue li a {
            color: #0f9585;
            text-decoration: none;
        }

            .stands-details .stand-catalogue li a:hover span:first-child:before {
                background-color: #0f9585;
            }

        .stands-details .stand-catalogue li span {
            text-transform: uppercase;
            padding: 0 .5em;
        }

            .stands-details .stand-catalogue li span strong {
                font-weight: 600;
            }

            .stands-details .stand-catalogue li span:first-child {
                display: block;
                width: 90px;
                height: 40px;
                margin: 0 auto;
                margin-bottom: .25em;
                position: relative;
                padding: 0;
            }

                .stands-details .stand-catalogue li span:first-child:before {
                    content: "";
                    height: 40px;
                    width: 90px;
                    position: absolute;
                    top: 0;
                    display: block;
                    background-image: url("/Content/img/carrocarioas.png");
                    background-position: 0 0;
                    background-size: 90px 900px;
                    background-color: #89877f;
                }

                .stands-details .stand-catalogue li span:first-child.carros:before {
                    background-position: 0 -95px;
                }

                .stands-details .stand-catalogue li span:first-child.comerciais:before {
                    background-position: 0 -455px;
                }

                .stands-details .stand-catalogue li span:first-child.barcos:before,
                .stands-details .stand-catalogue li span:first-child.motos:before {
                    background-size: 60px 741px;
                    background-image: url("/Content/img/icons-motos-barcos.png");
                }

                .stands-details .stand-catalogue li span:first-child.motos:before {
                    top: 0;
                    left: 15px;
                    width: 60px;
                    background-position: 0 -84px;
                }

                .stands-details .stand-catalogue li span:first-child.barcos:before {
                    background-size: 90px 1111px;
                    background-position: 0 -764px;
                }

.stands-details .stand-services li {
    text-transform: uppercase;
    font-weight: 300;
}

    .stands-details .stand-services li .fa {
        position: absolute;
        font-size: 1.4em;
        color: #aca689;
    }

    .stands-details .stand-services li span {
        margin-left: 2.25em;
        display: block;
        font-size: .9em;
    }

.stands-details .stand-brands img {
    max-height: 45px;
}

@media screen and (max-width: 960px) {
    .stands-details .has-sidebar aside {
        display: block;
        width: 100%;
        padding-right: 0;
        border-right: 0;
    }

    .stands-details .stand-header picture {
        max-width: 400px;
    }

    .stands-details .stand-header h3 {
        display: block;
    }
}

.vehicle-detail .salesman .head .recommended span {
    background-color: #978f6b;
    display: inline-block;
    margin: -0.5em auto 1em auto;
    padding: .25em .5em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
}

#standsList .section-menu .navigator {
    margin: -2em 0 0 0;
}

.credit-simulator {
    overflow: hidden;
}

    .credit-simulator h3 {
        text-transform: none !important;
        display: block !important;
    }

    .credit-simulator .has-loader.loading {
        position: relative;
        min-height: 60px;
    }

        .credit-simulator .has-loader.loading .blank-slate {
            display: none;
        }

        .credit-simulator .has-loader.loading .vehicle-list li,
        .credit-simulator .has-loader.loading .stands-list li {
            zoom: 1;
            filter: alpha(opacity=25);
            -webkit-opacity: .25;
            -moz-opacity: .25;
            opacity: .25;
            pointer-events: none;
        }

        .credit-simulator .has-loader.loading.ink-modal {
            pointer-events: none;
        }

            .credit-simulator .has-loader.loading.ink-modal .modal-header,
            .credit-simulator .has-loader.loading.ink-modal .modal-body,
            .credit-simulator .has-loader.loading.ink-modal .modal-footer {
                zoom: 1;
                filter: alpha(opacity=25);
                -webkit-opacity: .25;
                -moz-opacity: .25;
                opacity: 0.25;
            }

            .credit-simulator .has-loader.loading.ink-modal .loader {
                top: 50%;
                -webkit-transform: translate3d(-50%, -50%, 0);
                transform: translate3d(-50%, -50%, 0);
            }

        .credit-simulator .has-loader.loading .loader {
            position: absolute;
            top: 0;
            left: 50%;
            width: 60px;
            height: 60px;
            -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
        }

            .credit-simulator .has-loader.loading .loader:before,
            .credit-simulator .has-loader.loading .loader:after {
                position: absolute;
                border: 3px solid #333;
                border-bottom-color: transparent;
                border-top-color: transparent;
                -webkit-border-radius: 100%;
                -webkit-background-clip: padding-box;
                -moz-border-radius: 100%;
                -moz-background-clip: padding;
                border-radius: 100%;
                background-clip: padding-box;
                -webkit-animation-fill-mode: both;
                animation-fill-mode: both;
                content: "";
                z-index: 10;
            }

            .credit-simulator .has-loader.loading .loader:before {
                top: 0;
                left: 0;
                width: 60px;
                height: 60px;
                -webkit-animation: loader-rotate-large 1s 0s ease-in-out infinite;
                animation: loader-rotate-large 1s 0s ease-in-out infinite;
            }

            .credit-simulator .has-loader.loading .loader:after {
                top: 15px;
                left: 15px;
                width: 30px;
                height: 30px;
                border-color: #333 transparent #333 transparent;
                -webkit-animation: loader-rotate-small 0.5s 0s ease-in-out infinite;
                animation: loader-rotate-small 0.5s 0s ease-in-out infinite;
            }

@-webkit-keyframes loader-rotate-small {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-rotate-small {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-rotate-large {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-rotate-large {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.credit-simulator .slider-ctn {
    padding: 30px 0 10px 0;
}

.credit-simulator .slider {
    position: relative;
    height: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .credit-simulator .slider * {
        position: absolute;
        top: 0;
    }

    .credit-simulator .slider .track {
        left: 9px;
        right: 9px;
        height: 4px;
        background: #cccccc;
    }

        .credit-simulator .slider .track:before,
        .credit-simulator .slider .track:after {
            position: absolute;
            top: 0;
            width: 9px;
            height: 100%;
            background: #CCC;
            content: "";
        }

        .credit-simulator .slider .track:before {
            left: -9px;
        }

        .credit-simulator .slider .track:after {
            right: -9px;
        }

        .credit-simulator .slider .track .range {
            height: 4px;
            background-color: #5b8f22;
        }

        .credit-simulator .slider .track .marker {
            top: 50%;
            width: 18px;
            height: 18px;
            background: #5b8f22;
            background: #FFF;
            border: 1px solid #5b8f22;
            border-radius: 9px;
            -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
            z-index: 1;
        }

            .credit-simulator .slider .track .marker:after {
                position: absolute;
                top: 50%;
                left: 50%;
                -webkit-transform: translate3d(-50%, -50%, 0);
                transform: translate3d(-50%, -50%, 0);
                content: "";
                width: 0;
                height: 0;
                border-radius: 100%;
            }

            .credit-simulator .slider .track .marker.dragging,
            .credit-simulator .slider .track .marker:hover {
                cursor: pointer;
            }

                .credit-simulator .slider .track .marker.dragging:after,
                .credit-simulator .slider .track .marker:hover:after {
                    background-color: #5b8f22;
                    width: 12px;
                    height: 12px;
                    border-radius: 6px;
                }

    .credit-simulator .slider .label {
        top: -30px;
        font-size: 0.75em;
    }

        .credit-simulator .slider .label.from {
            left: -9px;
        }

        .credit-simulator .slider .label.to {
            right: -9px;
        }

.credit-simulator .price {
    position: relative;
}

    .credit-simulator .price.has-label {
        padding-top: 14px;
    }

    .credit-simulator .price .label {
        position: absolute;
        top: 2px;
        left: 0;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .credit-simulator .price .units {
        margin-right: -0.1em;
        font-size: 30px;
        font-weight: 300;
        line-height: 1em;
    }

    .credit-simulator .price .decimals {
        font-weight: 400;
    }

.credit-simulator .small {
    font-size: .75em;
}

.credit-simulator {
    margin-left: auto;
    margin-right: auto;
    background-color: #4b60af;
    color: #FFF;
    background-image: 8121991;
    background-image: linear-gradient(315deg, #344379 0, #4b60af 100%);
}

    .credit-simulator.loading > *:not(.loader) {
        zoom: 1;
        filter: alpha(opacity=25);
        -webkit-opacity: .25;
        -moz-opacity: .25;
        opacity: .25;
        pointer-events: none;
    }

    .credit-simulator.loading .loader {
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

        .credit-simulator.loading .loader:before,
        .credit-simulator.loading .loader:after {
            border-color: #FFF;
            border-bottom-color: transparent;
            border-top-color: transparent;
        }

    .credit-simulator h1,
    .credit-simulator h2,
    .credit-simulator h3,
    .credit-simulator h4,
    .credit-simulator h5,
    .credit-simulator h6 {
        color: #ffffff;
    }

    .credit-simulator .slider:before {
        position: absolute;
        top: 0;
        left: 9px;
        right: 9px;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.1);
        content: "";
    }

    .credit-simulator .slider .track {
        background-color: rgba(255, 255, 255, 0.3);
    }

        .credit-simulator .slider .track:before,
        .credit-simulator .slider .track:after {
            width: 0;
        }

        .credit-simulator .slider .track .label {
            top: -35px;
            right: 0;
            font-size: 1em;
        }

            .credit-simulator .slider .track .label.from {
                display: none;
            }

            .credit-simulator .slider .track .label.fromstatic {
                left: 0;
                right: auto;
            }

        .credit-simulator .slider .track .range {
            background-color: #ffffff;
        }

        .credit-simulator .slider .track .marker {
            border-color: #4b60af;
        }

            .credit-simulator .slider .track .marker.from {
                display: none;
            }

            .credit-simulator .slider .track .marker.dragging:after,
            .credit-simulator .slider .track .marker:hover:after {
                background-color: #4b60af;
            }

.touch .credit-simulator .slider .track .marker {
    width: 30px;
    height: 30px;
    -webkit-border-radius: 15px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 15px;
    -moz-background-clip: padding;
    border-radius: 15px;
    background-clip: padding-box;
}

.credit-simulator .slider .label.to {
    font-size: 20px;
}

.credit-simulator .slider.credit-months-slider .label.to:after {
    content: " meses";
}

.credit-simulator .price.monthly-payment {
    font-size: 20px;
    font-weight: 700;
}

    .credit-simulator .price.monthly-payment .label {
        left: auto;
        right: 0;
    }

.credit-simulator .price .label {
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.credit-simulator .control-group.insurance-checkbox .control label {
    padding-left: 20px;
    font-size: .75em;
    text-transform: none;
    color: #fff;
}

.credit-simulator .ink-button:not(.main-action) {
    border-color: rgba(255, 255, 255, 0.5);
    background: none;
    font-size: 12px;
    color: #ffffff;
}

    .credit-simulator .ink-button:not(.main-action):hover,
    .credit-simulator .ink-button:not(.main-action):active,
    .credit-simulator .ink-button:not(.main-action):focus,
    .credit-simulator .ink-button:not(.main-action).active {
        background: rgba(255, 255, 255, 0.1);
        border-color: #ffffff;
    }

.credit-simulator .tax {
    font-size: 14px;
}

    .credit-simulator .tax .credit-taeg {
        font-weight: bold;
    }

#footer {
    background: #42413d;
    padding: 2em 0;
}

    #footer h3 {
        font-size: 2.8em;
        text-transform: uppercase;
        font-weight: 300;
        color: #d6d3c5;
        margin-bottom: .5em;
    }

@media screen and (max-width: 640px) {
    #footer h3 {
        font-size: 2em;
    }
}

#footer h3 a {
    color: #d6d3c5;
    text-decoration: none;
}

    #footer h3 a:hover {
        color: #ebeae3;
    }

#footer h3 strong {
    font-weight: 800;
}

#footer #bsu-footer,
#footer #bsu-v2-footer {
    padding: 1em 0 0 0;
    border-top: 1px solid #6f6d66;
    color: #89877f;
}

    #footer #bsu-footer a,
    #footer #bsu-v2-footer a {
        color: #d6d3c5;
        text-transform: uppercase;
        font-size: .9em;
        text-decoration: none;
    }

        #footer #bsu-footer a:hover,
        #footer #bsu-v2-footer a:hover {
            color: #FFF;
        }

#footer #bsu-footer-links,
#footer #bsu-v2-footer-links {
    min-height: 30px;
    padding: 0.5em 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid #6f6d66;
}

    #footer #bsu-footer-links li,
    #footer #bsu-v2-footer-links li {
        float: left;
        margin-right: 30px;
    }

        #footer #bsu-footer-links li a,
        #footer #bsu-v2-footer-links li a {
            display: block;
            color: #89877f;
            text-transform: uppercase;
            font-size: .8em;
            text-decoration: none;
        }

            #footer #bsu-footer-links li a:hover,
            #footer #bsu-v2-footer-links li a:hover {
                color: #FFF;
            }

    #footer #bsu-footer-links:after,
    #footer #bsu-v2-footer-links:after {
        content: "";
        display: table;
        clear: both;
    }

#footer .footer-menu {
    min-height: 30px;
    padding: 1.4em 0;
    margin: 0;
    list-style: none;
    border-top: 1px solid #6f6d66;
}

    #footer .footer-menu li {
        float: none;
        margin-bottom: .5em;
    }

        #footer .footer-menu li h3 {
            text-transform: uppercase;
            font-size: 1.2em;
            margin-bottom: .5em;
        }

            #footer .footer-menu li h3 a {
                color: #d6d3c5;
            }

        #footer .footer-menu li a {
            display: block;
            color: #a2a099;
            font-size: 1.1em;
            padding: 0;
            text-decoration: none;
            line-height: 1.3em;
        }

            #footer .footer-menu li a:hover {
                color: #FFF;
            }

            #footer .footer-menu li a .fa {
                font-size: .85em;
            }

        #footer .footer-menu li ul.unstyled {
            margin-bottom: 1.5em;
        }

@media screen and (max-width: 960px) {
    #footer .footer-menu li h3 {
        font-size: 1.2em;
    }

    #footer .footer-menu li a {
        font-size: 1em;
    }
}

.social-networks-list.ink-navigation ul.menu.horizontal li {
    margin: 0 0 10px 10px;
}

    .social-networks-list.ink-navigation ul.menu.horizontal li a {
        width: 46px;
        height: 46px;
        background-color: #42413d;
        line-height: 55px;
        text-align: center;
        color: #ffffff;
        padding: 0;
        border-radius: 3px;
        background-clip: padding-box;
    }

        .social-networks-list.ink-navigation ul.menu.horizontal li a i {
            font-size: 1.5em;
        }

        .social-networks-list.ink-navigation ul.menu.horizontal li a span {
            display: none;
        }

@media screen and (max-width: 640px) {
    .social-networks-list.ink-navigation ul.menu.horizontal li a {
        width: 36px;
        height: 36px;
        line-height: 45px;
    }
}

.social-networks-list.ink-navigation ul.menu.horizontal li.facebook a {
    background-color: #6d84b4;
}

    .social-networks-list.ink-navigation ul.menu.horizontal li.facebook a:hover {
        background-color: #5c76ab;
    }

.social-networks-list.ink-navigation ul.menu.horizontal li.twitter a {
    background-color: #64abe5;
}

    .social-networks-list.ink-navigation ul.menu.horizontal li.twitter a:hover {
        background-color: #4e9fe1;
    }

.social-networks-list.ink-navigation ul.menu.horizontal li small {
    line-height: 46px;
    color: #d6d3c5;
}

@media screen and (max-width: 640px) {
    .social-networks-list.ink-navigation ul.menu.horizontal li small {
        line-height: 36px;
        margin-left: -10px;
    }
}

.apps-menu {
    text-align: right;
}

@media screen and (max-width: 960px) {
    .apps-menu {
        text-align: left;
    }
}

.apps-menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

    .apps-menu ul li {
        display: inline-block;
        margin: 0 .5em;
    }

@media screen and (max-width: 960px) {
    .apps-menu ul li {
        margin: 0 1em 0 0;
    }
}

.apps-menu ul li a {
    display: block;
}

@media screen and (max-width: 640px) {
    .apps-menu ul li a img {
        max-height: 36px;
        margin-bottom: 1em;
    }
}

.lt-ie9 .better-placehoder {
    position: absolute !important;
}

.lt-ie9 .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu > li.search {
    padding-right: 120px;
}

    .lt-ie9 .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu > li.search .ink-form .control-group .append-button.control {
        display: table;
    }

        .lt-ie9 .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu > li.search .ink-form .control-group .append-button.control span {
            width: 33%;
            vertical-align: top;
            display: table-cell;
        }

.lt-ie9 .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu > li.menu-trigger {
    width: 100px;
    position: absolute;
    right: 0;
}

@media screen and (max-width: 640px) {
    .lt-ie9 .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu > li.menu-trigger {
        width: 40px;
    }
}

.lt-ie9 .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu li.search-trigger {
    position: absolute;
    right: 120px;
}

@media screen and (max-width: 640px) {
    .lt-ie9 .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu li.search-trigger {
        right: 50px;
    }
}

.lt-ie9 .cover .cover-ad {
    width: 100%;
}

.lt-ie9 .cover .cover-search {
    background-color: transparent;
    width: 100%;
}

    .lt-ie9 .cover .cover-search .control-group .append-button.control {
        display: table;
    }

        .lt-ie9 .cover .cover-search .control-group .append-button.control > span {
            width: 33%;
            padding-left: 1px;
            vertical-align: top;
            display: table-cell;
        }

            .lt-ie9 .cover .cover-search .control-group .append-button.control > span select,
            .lt-ie9 .cover .cover-search .control-group .append-button.control > span input {
                border-radius: 0;
                background-clip: padding-box;
            }

            .lt-ie9 .cover .cover-search .control-group .append-button.control > span:first-of-type > input {
                border-radius: 3px 0 0 3px;
                background-clip: padding-box;
            }

            .lt-ie9 .cover .cover-search .control-group .append-button.control > span.select .ink-dropdown .dropdown-menu li input[type=checkbox] {
                margin-left: 3px;
            }

@media screen and (max-width: 640px) {
    .lt-ie9 .cover .cover-search .control-group .append-button.control {
        display: block;
    }

        .lt-ie9 .cover .cover-search .control-group .append-button.control .ink-button {
            border-radius: 3px;
            background-clip: padding-box;
        }
}

.lt-ie9 .columns-2.sell-car-home {
    padding-bottom: 0;
}

    .lt-ie9 .columns-2.sell-car-home .ink-button {
        position: relative;
        -webkit-transform: none;
        transform: none;
    }

.lt-ie9 #footer .footer-menu li {
    float: left;
}

    .lt-ie9 #footer .footer-menu li ul li {
        float: none;
    }

.lt-ie9 .newsletter .control-group .append-button.control .ink-button {
    vertical-align: top;
}

.lt-ie9 .listing-header .listing-options li .control-group .control span.select:before {
    display: none;
}

.lt-ie9 .listing-header .listing-options li .control-group .control span > select {
    padding-right: 10px !important;
}

.lt-ie9 .listing-header .filter-nav-mobile ul li .ink-button {
    display: block;
}

@media screen and (min-width: 960px) {
    .lt-ie9 .list-items.vehicle-list > li,
    .lt-ie9 .list-items.stands-list > li {
        width: 100%;
        /*
            article:not(.highlighted){
                border: 1px solid #e4e2d9;
                overflow: hidden;
                position: relative;
                
                &.premium a,
                a:hover {
                    background: #f3f2ed;
                    display: block;
                    overflow: hidden;
                }
                
                .details{
                    border: none;
                    position: inherit;
                }
                
            }*/
    }
}

.lt-ie9 .highlights .vehicle-list > li .pub.half-page,
.lt-ie9 .highlights .stands-list > li .pub.half-page {
    position: relative;
    height: 790px;
    /*
        @media screen and (min-width:@breakpoint-extralarge) {
             height: 700px;
        }
         @media screen and (min-width:@breakpoint-large) {
             height: 780px;
        }
        @media screen and (min-width:@breakpoint-medium) {
             height: 620px;
        }*/
}

    .lt-ie9 .highlights .vehicle-list > li .pub.half-page .mrec:after,
    .lt-ie9 .highlights .stands-list > li .pub.half-page .mrec:after {
        position: relative;
    }

.lt-ie9 .navigator {
    padding-top: .5em;
}

.lt-ie9 .filter-nav .control-group .ink-dropdown .dropdown-menu li input[type=checkbox],
.lt-ie9 .filter-nav .control-group .checkbox-group li input[type=checkbox],
.lt-ie9 .stands-sorting .control-group .ink-dropdown .dropdown-menu li input[type=checkbox],
.lt-ie9 .stands-sorting .control-group .checkbox-group li input[type=checkbox] {
    margin-right: .25em;
    margin-left: 3px;
    position: relative;
}

    .lt-ie9 .filter-nav .control-group .ink-dropdown .dropdown-menu li input[type=checkbox] ~ label,
    .lt-ie9 .filter-nav .control-group .checkbox-group li input[type=checkbox] ~ label,
    .lt-ie9 .stands-sorting .control-group .ink-dropdown .dropdown-menu li input[type=checkbox] ~ label,
    .lt-ie9 .stands-sorting .control-group .checkbox-group li input[type=checkbox] ~ label {
        vertical-align: middle;
        padding-left: 0;
    }

.lt-ie9 .filter-nav .control-group .car-style li,
.lt-ie9 .stands-sorting .control-group .car-style li {
    min-height: 5em;
}

    .lt-ie9 .filter-nav .control-group .car-style li.toggle-button,
    .lt-ie9 .stands-sorting .control-group .car-style li.toggle-button {
        min-height: auto;
    }

    .lt-ie9 .filter-nav .control-group .car-style li input[type=checkbox] ~ label,
    .lt-ie9 .stands-sorting .control-group .car-style li input[type=checkbox] ~ label {
        margin-top: 0.75em;
        padding-left: 0;
        vertical-align: bottom;
        display: inherit;
    }

.lt-ie9 .filter-nav .my-search h4,
.lt-ie9 .stands-sorting .my-search h4 {
    margin-top: 2em;
}

.lt-ie9 .filter-nav .control-group .input-group ul.column-group li input,
.lt-ie9 .stands-sorting .control-group .input-group ul.column-group li input {
    width: 85%;
}

.lt-ie9 .about .ink-form .control-group .select:before,
.lt-ie9 .sell-car .loading.control-group:before,
.lt-ie9 .sell-car .control-group .select.control:before {
    display: none;
}

.lt-ie9 .about .ink-form .control-group .select select,
.lt-ie9 .sell-car .control-group .control select {
    padding-right: 10px !important;
}

.lt-ie9 .sell-car .control-group .control input[type=checkbox] ~ label {
    margin-left: 0;
    padding-left: 1.6em;
}

.lt-ie9 .extras-list li .extra {
    display: table;
}

    .lt-ie9 .extras-list li .extra p {
        display: table-cell;
        vertical-align: middle;
    }

.lt-ie9 .ink-modal .modal-body .ink-form .radio-group li label,
.lt-ie9 .ink-modal .modal-body .ink-form .checkbox-group li label,
.lt-ie9 .instant-contact .checkbox-group li label {
    padding-left: 0;
    display: inline-block;
}

.lt-ie9 .ink-form .control-group .prepend-symbol.control i.fa {
    left: 0 !important;
    top: 0 !important;
}

@media all and (min-width: 0\0) and (min-resolution: 0.001dpcm) {
    .lt-ie9 .ink-form .control-group .select select {
        padding-right: 2px !important;
    }

    .lt-ie9 .ink-form .control-group .select:before {
        display: none;
    }
}

@media all and (-ms-high-contrast: none) {
    .cover-search .control-group .control.append-button span.select {
        min-width: 180px;
    }
    /*body {
        &:extend(.lt-ie9 all);
    }*/
    .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu > li.search {
        padding-right: 120px;
    }

        .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu > li.search .ink-form .control-group .append-button.control {
            display: table;
        }

            .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu > li.search .ink-form .control-group .append-button.control span {
                width: 33%;
                vertical-align: top;
                display: table-cell;
            }

    .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu > li.menu-trigger {
        width: 100px;
        position: absolute;
        right: 0;
    }

    .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu li.search-trigger {
        position: absolute;
        right: 120px;
    }

    .cover .cover-ad {
        width: 100%;
    }

    .cover .cover-search {
        background-color: transparent;
        width: 100%;
    }

        .cover .cover-search .control-group .append-button.control {
            display: table;
        }

            .cover .cover-search .control-group .append-button.control > span {
                width: 33%;
                padding-left: 1px;
                vertical-align: top;
                display: table-cell;
            }

                .cover .cover-search .control-group .append-button.control > span select,
                .cover .cover-search .control-group .append-button.control > span input {
                    border-radius: 0;
                    background-clip: padding-box;
                }

                .cover .cover-search .control-group .append-button.control > span:first-of-type > input {
                    border-radius: 3px 0 0 3px;
                    background-clip: padding-box;
                }

                .cover .cover-search .control-group .append-button.control > span.select .ink-dropdown .dropdown-menu li input[type=checkbox] {
                    margin-left: 3px;
                }

    .columns-2.sell-car-home {
        padding-bottom: 0;
    }

        .columns-2.sell-car-home .ink-button {
            position: relative;
            -webkit-transform: none;
            transform: none;
        }

    #footer .footer-menu li {
        float: left;
    }

        #footer .footer-menu li ul li {
            float: none;
        }

    .newsletter .control-group .append-button.control .ink-button {
        vertical-align: top;
    }

    .listing-header .listing-options li .control-group .control span.select:before {
        display: none;
    }

    .listing-header .listing-options li .control-group .control span > select {
        padding-right: 10px !important;
    }

    .listing-header .filter-nav-mobile ul li .ink-button {
        display: block;
    }

    .highlights .vehicle-list > li .pub.half-page,
    .highlights .stands-list > li .pub.half-page {
        position: relative;
        height: 790px;
        /*
        @media screen and (min-width:@breakpoint-extralarge) {
             height: 700px;
        }
         @media screen and (min-width:@breakpoint-large) {
             height: 780px;
        }
        @media screen and (min-width:@breakpoint-medium) {
             height: 620px;
        }*/
    }

        .highlights .vehicle-list > li .pub.half-page .mrec:after,
        .highlights .stands-list > li .pub.half-page .mrec:after {
            position: relative;
        }

    .navigator {
        padding-top: .5em;
    }

    .filter-nav .control-group .ink-dropdown .dropdown-menu li input[type=checkbox],
    .filter-nav .control-group .checkbox-group li input[type=checkbox],
    .stands-sorting .control-group .ink-dropdown .dropdown-menu li input[type=checkbox],
    .stands-sorting .control-group .checkbox-group li input[type=checkbox] {
        margin-right: .25em;
        margin-left: 3px;
        position: relative;
    }

        .filter-nav .control-group .ink-dropdown .dropdown-menu li input[type=checkbox] ~ label,
        .filter-nav .control-group .checkbox-group li input[type=checkbox] ~ label,
        .stands-sorting .control-group .ink-dropdown .dropdown-menu li input[type=checkbox] ~ label,
        .stands-sorting .control-group .checkbox-group li input[type=checkbox] ~ label {
            vertical-align: middle;
            padding-left: 0;
        }

    .filter-nav .control-group .car-style li,
    .stands-sorting .control-group .car-style li {
        min-height: 5em;
    }

        .filter-nav .control-group .car-style li.toggle-button,
        .stands-sorting .control-group .car-style li.toggle-button {
            min-height: auto;
        }

        .filter-nav .control-group .car-style li input[type=checkbox] ~ label,
        .stands-sorting .control-group .car-style li input[type=checkbox] ~ label {
            margin-top: 0.75em;
            padding-left: 0;
            vertical-align: bottom;
            display: inherit;
        }

    .filter-nav .my-search h4,
    .stands-sorting .my-search h4 {
        margin-top: 2em;
    }

    .filter-nav .control-group .input-group ul.column-group li input,
    .stands-sorting .control-group .input-group ul.column-group li input {
        width: 85%;
    }

    .about .ink-form .control-group .select:before,
    .sell-car .loading.control-group:before,
    .sell-car .control-group .select.control:before {
        display: none;
    }

    .about .ink-form .control-group .select select,
    .sell-car .control-group .control select {
        padding-right: 10px !important;
    }

    .sell-car .control-group .control input[type=checkbox] ~ label {
        margin-left: 0;
        padding-left: 1.6em;
    }

    .extras-list li .extra {
        display: table;
    }

        .extras-list li .extra p {
            display: table-cell;
            vertical-align: middle;
        }

    .ink-modal .modal-body .ink-form .radio-group li label,
    .ink-modal .modal-body .ink-form .checkbox-group li label,
    .instant-contact .checkbox-group li label {
        padding-left: 0;
        display: inline-block;
    }

    .ink-form .control-group .prepend-symbol.control i.fa {
        left: 0 !important;
        top: 0 !important;
    }
}

@media all and (-ms-high-contrast: none) and screen and (max-width: 640px) {
    .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu > li.menu-trigger {
        width: 40px;
    }
}

@media all and (-ms-high-contrast: none) and screen and (max-width: 640px) {
    .ink-sticky-stuck.ink-sticky#header .content-menu.ink-navigation > ul.horizontal.menu li.search-trigger {
        right: 50px;
    }
}

@media all and (-ms-high-contrast: none) and screen and (max-width: 640px) {
    .cover .cover-search .control-group .append-button.control {
        display: block;
    }

        .cover .cover-search .control-group .append-button.control .ink-button {
            border-radius: 3px;
            background-clip: padding-box;
        }
}

@media all and (-ms-high-contrast: none) and screen and (min-width: 960px) {
    .list-items.vehicle-list > li,
    .list-items.stands-list > li {
        width: 100%;
        /*
            article:not(.highlighted){
                border: 1px solid #e4e2d9;
                overflow: hidden;
                position: relative;
                
                &.premium a,
                a:hover {
                    background: #f3f2ed;
                    display: block;
                    overflow: hidden;
                }
                
                .details{
                    border: none;
                    position: inherit;
                }
                
            }*/
    }
}

@media all and (-ms-high-contrast: none) and all and (min-width: 0\0) and (min-resolution: 0.001dpcm) {
    .ink-form .control-group .select select {
        padding-right: 2px !important;
    }

    .ink-form .control-group .select:before {
        display: none;
    }
}
