/******************************************************
FONTS | TEXT | TEST
******************************************************/

body {
    background-color: #f1ebe5;
}

/******************************************************
LAYOUT | Topbar
******************************************************/

.row {
    max-width: 75em;
}

.row .row {
    margin-left: -0.25em;
    margin-right: -0.25em;
}

/*BODY*/

.fullWidth {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: initial;
}

/*HEADER*/

.topbar {
    margin-bottom: -35px;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 5px 0;
    z-index: 11;
    /*height: 35px;*/
    width: 100%;
}

.topbar-filters {
    padding-left: 15px;
    padding-right: 15px;
}

.topbar label {
    color: #f3f3f3;
    float: left;
    /*text-transform: uppercase;*/
    margin-right: 5px;
}

.topbar select {
    background-color: #fff;
    width: 90px;
    height: 30px;
    padding: 0 5px;
    display: inline-block;
    background:#f1f1f1 url(../Images/select_bg.jpg) no-repeat right top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	font-size:12px;
}

.topbar option {
    background-color: #fff;
	font-size:12px;
}

.topbar ul,
.topbar select {
    margin-bottom: 0;
}

.showtyresfrom,
.pressureunit,
.speedunit {
    margin: 0 -20px 0 17px;
    height: 30px;
}

.speedunit .selectRemove,
.pressureunit .selectRemove,
.showtyresfrom .selectRemove {
    width: 101px;
    overflow: hidden;
}

.header {
    height: 175px;
    z-index: 1;
    position: relative;
}

.header .logo {
    background-repeat: no-repeat;
}

.logo-wrap {
    display: flex;
    position: relative;
    top: 70px;
    height: 43px;
    align-items: center;
}

.logo {
    width: 200px;
}

.logo-text {
    font-family: "Oswald", arial, "lucida console", sans-serif;
    font-size: 24px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}

.searchby {
    color: #fff;
    text-align: right;
    text-transform: uppercase;
    top: 12px;
    font-size: 16px;
    padding-right: 18px;
}

.row.tabnav {
    margin-top: -40px;
    z-index: 10;
    position: relative;
}

.tabnav ul {
    list-style: none;
    margin-left: -16px;
}

.tabnav li,
.tabnav li.k-item {
    margin-right: 10px;
    float: left;
}

.tabnav li a,
.tabnav a.k-link:link,
.tabnav li a:visited {
    width: 170px;
    display: block;
    height: 40px;
    text-align: center;
    font: normal 16px/40px "Oswald", arial;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: background-color 0.2s;
    /* For Safari 3.1 to 6.0 */
    transition: background-color 0.2s;
}

.filter-options {
    /*float: left;*/
    display: inline-block;
    margin: 0 2% 0 0;
    overflow: auto;
}

.filter-options label {
    float: left;
    display: block;
    padding-top: 4px;
}

.filter-options .selectRemove {
    float: left;
}

.main-content {
    padding-top: 10px;
}

/******************************************************
LAYOUT | Breadcrumbs
******************************************************/

.breadcrumbs>*:before {
    content: "";
    margin: 0px;
}

.breadcrumbs {
    margin: 20px 0 15px 8px;
    padding: 0;
    display: inline-block;
    box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border-radius: 5px;
}

.breadcrumbs li {
    text-decoration: none;
    outline: none;
    display: block;
    float: left;
    font-size: 14px;
    line-height: 26px;
    color: white;
    padding: 0 10px 0 30px;
    background: #666;
    background: linear-gradient(#666, #333);
    position: relative;
    background: white;
    color: black;
    transition: all 0.5s;
}

.breadcrumbs li:hover {
    text-decoration: underline;
}

.breadcrumbs li:first-child {
    padding-left: 10px;
    font-size: 14px;
    border-radius: 5px 0 0 5px;
    color: #fff;
}

.breadcrumbs a {
    display: inline-block;
    white-space: nowrap;
}

.breadcrumbs li:first-child a {
    color: #fff;
}

.breadcrumbs li:first-child:hover {
    text-decoration: none;
}

.breadcrumbs li:last-child {
    border-radius: 0 5px 5px 0;
    /*this was to prevent glitches on hover*/
    padding-right: 20px;
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumbs li:after {
    content: "";
    position: absolute;
    top: 0;
    right: -13px;
    /*half of square's length*/
    /*same dimension as the line-height of .breadcrumb a */
    width: 26px;
    height: 26px;
    /*as you see the rotated square takes a larger height. which makes it tough to position it properly. So we are going to scale it down so that the diagonals become equal to the line-height of the link. We scale it to 70.7% because if square's:
    length = 1; diagonal = (1^2 + 1^2)^0.5 = 1.414 (pythagoras theorem)
    if diagonal required = 1; length = 1/1.414 = 0.707*/
    transform: scale(0.707) rotate(45deg);
    /*we need to prevent the arrows from getting buried under the next link*/
    z-index: 1;
    /*background same as links but the gradient will be rotated to compensate with the transform applied*/
    background: #666;
    background: linear-gradient(135deg, #666, #333);
    /*stylish arrow design using box shadow*/
    box-shadow: 2px -2px 0 2px rgba(223, 224, 227, 0.4), 3px -3px 0 2px rgba(255, 255, 255, 0.1);
    /*
        5px - for rounded arrows and
        50px - to prevent hover glitches on the border created using shadows*/
    border-radius: 0 5px 0 50px;
    background: white;
    color: black;
    transition: all 0.5s;
}

/*we dont need an arrow after the last link*/
.breadcrumbs li:last-child:after {
    content: none;
}

/******************************************************
LAYOUT | User controls
******************************************************/

.usercontrols {
    float: right;
	padding-top: 4px;
}

.usercontrols ul {
    list-style: none;
    float: right;
}

.usercontrols span.currentuser {
    background: url(../Images/usericon.png) right center no-repeat;
    padding-right: 25px;
    color: #f3f3f3;
    font-size: 15px;
}

.usercontrols ul li {
    color: #fff;
    float: left;
    margin: 0 5px 0 5px;
}

.usercontrols a {
    color: #f3f3f3;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 13px;
}

.usercontrols li:first-child:before {
    content: "";
}

.usercontrols li:before {
    content: "  | \00a0\00a0 ";
}

/******************************************************
SIDEBAR
******************************************************/

.modelselector {
    margin: 0;
}

ul.modelselector {}

ul.modelselector li {
    list-style: none;
    width: 100%;
}

.modelselector li a {
    width: 100%;
    padding: 5px 10px;
    display: block;
    color: #fff;
    font-size: 15px;
    -webkit-transition: background-color 0.2s;
    /* For Safari 3.1 to 6.0 */
    transition: background-color 0.2s;
}

.modelselector>li>a {
    text-transform: uppercase;
}

.modelselector>li>a:before {
    position: relative;
    content: "\f105";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    padding-right: 5px;
}

ul.modelselector ul {
    margin-left: 0px;
    display: none;
}

ul.modelselector ul a {
    border-bottom: 1px solid #dfe0e3;
    font-size: 15px;
    padding: 4px 0 4px 38px;
    width: 250px;
}

ul.modelselector ul li.current a,
ul.modelselector ul li.k-state-selected a {
    background-color: #dfe0e3;
    font-weight: bold;
    color: #000;
}

ul.modelselector .before-rounded a {
    -webkit-border-radius: 0 0 10px 0;
    -moz-border-radius: 0 0 10px 0;
    border-radius: 0 0 10px 0;
}

ul.modelselector .after-rounded a {
    -webkit-border-radius: 0 10px 0 0;
    -moz-border-radius: 0 10px 0 0;
    border-radius: 0 10px 0 0;
}

ul.modelselector li.k-state-selected {
    line-height: 20px;
	background:#fff;
}

ul.modelselector select {
    margin: 0;
}

/******************************************************
TABLE |
******************************************************/

table.tyresize {
    width: 100%;
    margin-bottom: 0;
}

table.tyresize td img {
    width: 16px;
    height: 16px;
}

table td {
    vertical-align: top;
}

table.tyresize th {
    background-color: #000;
    color: #fff;
    background-image: none;
    height: 40px;
    text-transform: uppercase;
    text-align: left;
    font-size: 16px;
}

table {
    border-collapse: collapse;
    border: none;
}

table tr td {
    font-size: 12px;
    color: #575964;
}

table p {
    font-size: 12px;
}

table th {
    text-transform: uppercase;
}

th.k-header,
table thead tr th {
    font-size: 12px;
    background-color: #fff;
}

th.k-header a,
table thead tr th a {
    padding: 0.5rem 0.625rem 0.625rem;
    font-size: 12px;
    font-weight: bold;
    color: #222;
    text-align: left;
}

table h2 {
    text-transform: uppercase;
    font-size: 12px;
}

table img {
    width: 100%;
}

table td.border-right {
    border-right: 1px solid #dfe0e3;
}

table td.border-left {
    border-left: 1px solid #dfe0e3;
}

table table {
    border: none;
}

table table tr {
    background-color: transparent !important;
}

table table td:first-child {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #000;
}

/******************************************************
BUTTONS |
******************************************************/
.action li {
    margin-right: 5px;
}

.button-inset {
    background: #fff;
    background: linear-gradient(#c5c7cb, #fff);
    padding: 6px;
    display: inline-block;
    border: 1px solid #dedfe2;
    border-radius: 3px;
    text-decoration: none;
}

.button-inset span {
    border: 1px solid #9ea1ab;
    display: block;
    font: normal 12px/22px "Oswald", arial;
    text-transform: uppercase;
    color: #575964;
    text-decoration: none;
    padding: 5px 3rem;
    border-radius: 3px;
    background: #fff;
    background: linear-gradient(#fff, #d7d8db);
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.button-inset span:hover {
    background: #d7d8db;
    background: linear-gradient(#d7d8db, #fff);
}

.button-grey {
    background: none;
    padding: 0px;
    display: inline-block;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
}

.button-grey span {
    border: 1px solid #9ea1ab;
    display: block;
    font: normal 12px/22px "Oswald", arial;
    text-transform: uppercase;
    color: #575964;
    text-decoration: none;
    padding: 5px 3rem;
    border-radius: 3px;
    background: #fff;
    background: linear-gradient(#fff, #d7d8db);
}

.button-grey span:hover {
    background: #d7d8db;
    background: linear-gradient(#d7d8db, #fff);
}

a.remove-selection {
    color: #222;
    text-decoration: none;
    line-height: inherit;
    font: normal 16px "Oswald", Arial, sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    background: #fff;
    border-radius: 3px;
    padding: 5px 5px;
    text-align: center;
}

a.remove-selection:hover {
    background: #3654a0;
    color: #fff;
}

a.remove-selection .fa-remove {
    margin-top: 3px;
    margin-left: 7px;
    float: left;
}

.button-white,
.signin input[type="submit"] {
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    box-shadow: #e3e3e3 0 1px 1px;
    -moz-box-shadow: 0px 1px 1px rgba(000, 000, 000, 0.1), inset 0px 1px 1px rgba(255, 255, 255, 0.7);
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1), inset 0px 1px 1px rgba(255, 255, 255, 0.7);
    text-shadow: 1px 1px 0px #f8f8f8;
    color: #717171;
    border: 1px solid #d3d3d3;
    background: #ededed;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#f9f9f9) to(#ededed));
    background: -webkit-linear-gradient(#f9f9f9, #ededed);
    background: -moz-linear-gradient(#f9f9f9, #ededed);
    background: -ms-linear-gradient(#f9f9f9, #ededed);
    background: -o-linear-gradient(#f9f9f9, #ededed);
    background: linear-gradient(#f9f9f9, #ededed);
    -pie-background: linear-gradient(#f9f9f9, #ededed);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    padding: 7px 12px;
    cursor: pointer;
    line-height: 16px;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
}

.button-white:hover {
    color: #717171;
    border: 1px solid #d3d3d3;
    background: #ededed;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#ededed) to(#f9f9f9));
    background: -webkit-linear-gradient(#ededed, #f9f9f9);
    background: -moz-linear-gradient(#ededed, #f9f9f9);
    background: -ms-linear-gradient(#ededed, #f9f9f9);
    background: -o-linear-gradient(#ededed, #f9f9f9);
    background: linear-gradient(#ededed, #f9f9f9);
    -pie-background: linear-gradient(#ededed, #f9f9f9);
}

/******************************************************
FXs
******************************************************/

.shadow {
    background-color: rgb(255, 255, 255);
    /* Firefox v3.5+ */
    -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
    /* Safari v3.0+ and by Chrome v0.2+ */
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
    /* Firefox v4.0+ , Safari v5.1+ , Chrome v10.0+, IE v10+ and by Opera v10.5+ */
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
    -ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=0,OffY=1,Color=#26000000,Positive=true)";
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=1, Color=#26000000, Positive=true);
}

/*****
Toegevoegd door Maarten
Lieve Randy wil je ook kijken hoe de selectie styling gedaan kan worden? Heb dit nu in de controls vastgelegd.
*****/

table.tyresize tr:nth-of-type(even) {
    background-color: #fff;
}

table.tyresize tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

table tr:nth-of-type(odd).Combi,
table tr:nth-of-type(even).Combi {
    background-color: #ffebcd;
}

.WinterOnly {
    float: right;
    background: url(../Images/icon-winter.png) no-repeat left center;
    width: 24px;
    height: 24px;
    background-size: 75%;
}

.SummerOnly {
    float: left;
    background: url(../Images/icon-summer.png) no-repeat;
    width: 24px;
    height: 24px;
    background-size: 75%;
}

.SummerAndWinter {
    float: left;
    background: url(../Images/icon-summer.png) no-repeat;
    width: 24px;
    height: 24px;
    background-size: 75%;
}

.fittingtype {
    display: inline-block;
    width: 30px;
}

.WinterOnlyGrid {
    float: left;
    background: url(../Images/icon_winter.png) no-repeat;
    margin-top: -8px;
}

.SummerOnlyGrid {
    float: left;
    background: url(../Images/icon_summer.png) no-repeat;
    margin-top: -8px;
}

.SummerAndWinterGrid {
    float: left;
    background: url(../Images/icon-summer-winter.png) no-repeat;
    margin-top: -8px;
}

.k-menu .k-item>.k-link {
    padding: inherit;
}

.k-menu .k-item {
    border: 0px none;
}

.k-block,
.k-widget {
    background-color: transparent;
    background-image: none;
    border: 0px solid;
}

.selectHalf {
    width: 49%;
}

ul.modelselector ul {
    display: block;
    max-height: 240px;
    overflow-x: hidden;
    overflow-y: hidden;
}

ul.modelselector ul:hover {
    overflow-y: auto;
}

ul.modelselector ul.yearbuilt {
    display: block;
    max-height: 240px;
}

table tbody tr.k-state-selected {
    background-color: #7e7e80;
}

table tbody tr.k-state-selected td {
    color: #fff;
}

/*#tyresizes_rear_details table td {
    white-space: nowrap;
}*/

.k-window {
    top: 15px;
    position: fixed;
    left: 35%;
    z-index: 1002;
}

/*.overlay {
    position: absolute;
    top: 0;
    display: none;
    left: 0;
    z-index: 1001;   
    background-color: #000;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
}*/
#TyreFittingFrontSizes,
#TyreFittingRearSizes {
    /*cursor: pointer;
    max-height: 180px;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-bottom: 20px;*/
}

/* #TyreFittingRearSizes{
    cursor: pointer;
    margin-bottom: 20px;
} */

#TyreFittingFrontSizes tr:hover,
#TyreFittingRearSizes tr:hover {}

#TyreFittingFrontSizes .k-state-selected,
#TyreFittingRearSizes .k-state-selected {
    background-color: #a4a7b0;
}

#TyreFittingFrontSizes .k-state-selected td span,
#TyreFittingRearSizes .k-state-selected td span {
    color: #fff;
}

.createbutton {
    float: right;
}

table.tyresize td {
    padding-right: 0;
}

table tr td span.Combi {
    background: url(../Images/icon_combi.png) no-repeat center center;
    background-size: 75%;
    height: 25px;
    display: inline-block;
    width: 20px;
}

.Empty {
    height: 25px;
    display: inline-block;
    width: 20px;
}

table tr:nth-of-type(even).Combi tr:hover {
    background-color: #c5c5c5;
}

table tr:nth-of-type(odd).Combi {
    background-color: #f7f7f7;
}

.tyreinfo {
    margin-bottom: 20px;
}

.tyreinfo .k-state-selected {
    background: 0;
    border: 0;
}

.tyretable {
    cursor: pointer;
    max-height: 173px;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-bottom: 20px;
}

.tyretable.reartyretable {
    max-height: 214px;
}

table#TyreFittingFrontSizes tr,
table#TyreFittingRearSizes tr {
    width: 100%;
    display: block;
}

table#TyreFittingFrontSizes td,
table#TyreFittingRearSizes td {
    display: table-cell;
    font-size: 11px;
    /*
    width: 205px;
*/
}

table.k-selectable tr {
    cursor: pointer;
}

table.k-selectable tr:hover {
    background-color: #d3d5da;
    color: #fff;
}

ul.select_hori {
    margin: 10px 0 10px 0;
}

ul.select_hori li a {
    padding-right: 15px;
}

.details {
    margin-bottom: 10px;
}

.assemblytypes {
    background: #fff;
    padding: 15px;
    color: #575964;
    font-size: 13px;
}

.assemblytypes input[type="checkbox"] {
    margin-right: 10px;
}

.car-built span.small {
    font-size: 14px;
    text-transform: lowercase;
    margin-left: 10px;
}

a.Lock.Closed {
    background: url(/Images/lock_locked.png) no-repeat;
    text-indent: -9999px;
    width: 12px;
    display: block;
    float: right;
    height: 15px;
}

a.Lock.Opened {
    background: url(/Images/lock_open.png) no-repeat;
    text-indent: -9999px;
    width: 15px;
    display: block;
    float: right;
    height: 15px;
}

a.QuestionMark {
    background: url(/Images/icon_question.png) no-repeat;
    text-indent: -9999px;
    width: 15px;
    display: block;
    float: right;
    margin-right: 5px;
    height: 15px;
}

/**************************************************
Legend - Legenda
***************************************************/

.legend {
    width: 600px;
    display: none;
    background-color: #fff;
    z-index: 1003;
    position: absolute;
    left: 0;
    padding: 30px;
    right: 0;
    height: 600px;
    overflow: auto;
    margin: auto;
    top: 0;
    bottom: 0;
}

.legend span.title {
    margin-bottom: 20px;
    display: block;
}

.legend .closeLegend {
    background: url(/Images/close_btn.png);
    width: 16px;
    height: 16px;
    display: block;
    text-indent: -9999px;
    float: right;
}

.legend .row {
    display: table-row;
}

.legend .row:nth-child(odd) {
    background-color: #f7f7f7;
}

.legend .icon-img {
    display: table-cell;
    text-align: center;
}

.legend .icon-img img {
    max-width: none;
}

.legend .item {
    padding: 15px;
    display: table-cell;
    width: 30%;
}

.legend .item span.small {
    font-size: 14px;
}

.legend .explanation {
    font-size: 14px;
    line-height: 19px;
    padding: 0 0 7px 0;
    display: table-cell;
}

/**************************************************
KENDO UI OVERWRITES STYLING
***************************************************/

/*.k-state-selected{
    background: 0 !important;
    border: 0 !important;
}*/

.k-header {}

.k-grid td {
    border-width: 0;
}

.k-grid-header .k-header {
    border-width: 0 0 0 0;
}

.k-grid-header {
    background-color: #fff;
    border-color: #fff;
}

.k-menu.k-header {
    border: 0;
}

.k-pager-wrap {
    background-color: #fff;
}

.k-pager-info {
    font-size: 12px;
}

.k-grid-pager .k-i-seek-w {
    border: 0;
}

.k-pager-numbers .k-link,
.k-treeview .k-in {
    border: 0;
    font-size: 11px;
    line-height: 35px;
}

.k-pager-wrap .k-link,
.k-pager-wrap .k-link:hover {
    border-color: #fff;
}

.k-grid-header-wrap {
    border: 0;
}

.k-state-selected {
    color: #3c0707;
    font-weight: bold;
    line-height: 36px;
    font-size: 12px;
    background-color: #fff;
    background: none;
    border-color: #fff;
}

.k-menu .k-item,
.k-widget.k-menu-horizontal>.k-item {
    border-width: 0;
}

a.k-link:hover {
    text-decoration: underline;
}

.k-grid-content {
    overflow: auto;
    max-height: 160px;
}

#kendoWindow {
    overflow-x: hidden !important;
}

#kendoWindow table {
    width: 100%;
}

.k-pager-wrap .k-link:hover {
    background: none;
}

/**************************************************
FREIGABE
***************************************************/

.freigabe-block * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.freigabe-block .medium-6 {
    width: 46%;
}

.freigabe-block .k-window-titlebar {
    display: none;
}

.freigabe-block {
    padding-bottom: 20px;
}

.freigabelastcolumn {}

.freigabe-block label {
    display: inline-block;
    width: 30%;
    font-size: 12px;
}

.freigabe-block input[type="date"],
.freigabe-block input[type="text"],
.freigabe-block select {
    display: inline-block;
    width: 65%;
    height: auto;
    margin-bottom: 5px;
}

.freigabe-block input[readonly="readonly"] {
    color: rgba(0, 0, 0, 0.6);
    background-color: #eaeaea;
}

.datefirstadmissionlabel {
    margin-right: 3px;
}

.freigabe-block input[type="text"].halfsize {
    width: 32%;
}

.freigabe-block input[type="text"].quartsize {
    width: 50%;
}

.freigabe-block .button {
    margin-right: 28px;
}

.freigabe-block h3 {
    text-transform: uppercase;
    display: block;
    font-size: 16px;
    padding: 15px 15px 15px 10px;
    margin-bottom: 20px;
}

.freigabe-block input[type="date"].halfsize {
    width: 50%;
}

.datefirstadmissionlabel {
    float: left;
}

.freigabe-msg {
    font-size: 0.875rem;
}

.freigabe-msg ul {
    font-size: 0.875rem;
}

.inputinfo {
    font-size: 12px;
    margin-left: 10px;
}

.fieldinfo {
    display: block;
    margin: 10px 0;
    font-size: 16px;
}

.validation-summary-errors {
    color: #c00;
}

/**************************************************
SIGN IN
***************************************************/

.signin input.k-textbox {
    clear: both;
}

.signin input[type="submit"] {}

.signin .k-dropdown {
    width: 100%;
}

.footer {
    font-size: 12px;
    margin: 0 auto;
    text-align: right;
    color: #6d6d6d;
    padding-bottom: 20px;
    margin-top: 10px;
}

.footer a {
    font-size: 12px;
    color: #6d6d6d;
    text-decoration: underline;
}

/**************************************************
EU ICONS
***************************************************/

[data-field="Rolling"] a.k-link,
[data-field="WetGrip"] a.k-link,
[data-field="MxSpeed"] a.k-link,
[data-field="OriginalSpeed"] a.k-link,
[data-field="NoiseValue"] a.k-link {
    background: url(../Images/icon_rolling.png) no-repeat 0 center;
    display: block;
    height: 40px;
    width: 55px;
    background-size: 65%;
    text-indent: -9999px;
}

[data-field="WetGrip"] a.k-link {
    background-image: url(../Images/icon_wetgrip.png);
    background-position: center center;
    background-size: 58%;
}

[data-field="Rolling"] a.k-link {
    background-position: center center;
}

[data-field="OriginalSpeed"] a.k-link {
    background-position: center center;
}

[data-field="MxSpeed"] a.k-link {
    background-position: center center;
}

[data-field="NoiseValue"] a.k-link {
    background-image: url(../Images/icon_noise.png);
    background-size: 60%;
    background-position: 0.5em center;
}

[data-field="MxSpeed"] a.k-link,
[data-field="OriginalSpeed"] a.k-link {
    background-image: url(../Images/icon_maxspeed.png);
    background-size: 49%;
}

.centerspan {
    display: table;
    margin: 0 auto;
}

.noise-icon {
    display: inline-block;
    width: 23px;
    height: 20px;
    background: center center no-repeat;
    margin: 0 2px 0 2px;
    vertical-align: middle;
}

.icon-noise1 {
    background-image: url(../Images/noise1.png);
}

.icon-noise2 {
    background-image: url(../Images/noise2.png);
}

.icon-noise3 {
    background-image: url(../Images/noise3.png);
}

/**************************************************
TYRE SIZE
***************************************************/
.tyre-size {
    display: inline-block;
    min-width: 80px;
}

/**************************************************
MEDIA QUERIES - TABLETs

***************************************************/

@media screen and (max-width: 767px) {
    body {
        padding-top: 100px;
    }
}

@media screen and (max-width: 1024px) {
    .topbar {
        margin-bottom: -65px;
    }

    .topbar label {
        margin-bottom: 5px;
    }

    .topbar label,
    .usercontrols li:first-child {}

    .usercontrols li:nth-child(2):before {
        content: "";
    }

    .breadcrumbs li:first-child {
        display: none;
    }

    .breadcrumbs li:nth-child(2) {
        padding-left: 15px;
    }

    .filter-options label {
        font-size: 11px;
        line-height: 24px;
    }

    .usercontrols ul li,
    .usercontrols ul li a,
    .usercontrols ul li span,
    .usercontrols span.currentuser {
        font-size: 11px;
        line-height: 24px;
    }

    .usercontrols span.currentuser {
        background-size: 12px;
    }

    #showmodelcode {
        width: 50px;
    }

    #pressureunit,
    #speedunit {
        width: 55px;
    }

    .tabnav li a,
    .tabnav a.k-link:link,
    .tabnav li a:visited {
        width: 100px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .topbar {
        margin-bottom: -65px;
    }

    .topbar label {
        margin-bottom: 5px;
    }

    .topbar label,
    .usercontrols li:first-child {}

    .usercontrols li:nth-child(2):before {
        content: "";
    }

    .breadcrumbs li:first-child {
        display: none;
    }

    .breadcrumbs li:nth-child(2) {
        padding-left: 15px;
    }
}

:required {
    /*  background-color: #FAFFBD !important; */
}

.goToCarButton:hover {
    cursor: pointer;
}

#content {
    padding-bottom: 20px;
    float: left;
    width: 100%;
}

.invoer label {
    margin-bottom: 5px;
    float: left;
}

.invoer.reasonforuse label,
.invoer.userroles label {
    float: none;
}

.invoer.searchinvoer {
    width: 50%;
}

.invoer.searchinvoer,
.invoer.searchinvoer .k-textbox,
.invoer.searchinvoer .button-white {
    float: left;
    margin-right: 5px;
}

.invoer.searchinvoer .button-white {
    height: 2.3125rem;
}

.invoer.searchinvoer .k-textbox {
    margin-right: 20px;
}

.invoer.searchinvoer .k-textbox {
    width: 50%;
}

.invoer.searchinvoer label {
    margin-bottom: 5px;
    display: block;
    float: none;
}

.searchfield {
    margin-bottom: 10px;
}

.validation-summary-valid ul {
    margin: 0;
}

.userroles .k-widget.k-dropdown,
.reasonforuse .k-widget.k-dropdown {
    margin: 0 0 1rem 0;
    width: 100%;
}

.invoer .k-dropdown {
    height: 2.3125rem;
}

.rememberme input[type="checkbox"] {
    margin-left: 5px;
    vertical-align: middle;
}

.icon-winter {
    background: url(../Images/icon-winter.png) no-repeat left center;
    display: block;
    text-indent: -9999px;
    width: 24px;
    height: 24px;
}

.icon-summer {
    background: url(../Images/icon-summer.png) no-repeat left center;
    display: block;
    text-indent: -9999px;
    width: 24px;
    height: 24px;
}

.icon-allseasons {
    background: url(../Images/icon-allseasons.png) no-repeat left center;
    display: block;
    text-indent: -9999px;
    width: 24px;
    height: 24px;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea {
    clear: both;
    height: 2.3125rem !important;
}

.tyreinfo .k-selectable tr td:nth-of-type(7) {
    padding-left: 0;
}

.freigabe-block .k-autocomplete.k-state-default,
.freigabe-block .k-picker-wrap.k-state-default,
.freigabe-block .k-numeric-wrap.k-state-default,
.freigabe-block .k-dropdown-wrap.k-state-default {
    height: 39px;
}

.freigabe-block .k-datepicker {
    width: 50%;
}