﻿/*  reset
-------------------------------------------------------*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	}

h1, h2, h3, h4, h5, h6,
input, select, button, textarea,
small {
	font-size: 100%;
	}

li {
	list-style: none;
	}

img, svg, video, iframe {
	max-width: 100%;
	}

img, fieldset, iframe {
	border-width: 0;
	}

img {
	height: auto;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
	}

input, select, textarea, button {
	color: inherit;
	font-weight: inherit;
	font-family: inherit;
	letter-spacing: inherit;
	outline-width: 0;
	box-shadow: none;
	}

textarea {
	-webkit-appearance: none;
	overflow: auto;
	border-radius: 0;
	}

button {
	cursor: pointer;
	overflow: visible;
	}


/*  common
-------------------------------------------------------*/

body {
	font-weight: 200;
	font-size: 13px;
	font-family: Nunito, sans-serif;
	background-color: #fff;
}

body > .container {
	padding-top: 40px;
	padding-bottom: 40px;
}

a {
	text-decoration: none;
}

.title {
	font-size: 40px;
}

.m-b-md {
	margin-bottom: 30px;
}

.search {
	position: relative;
	margin: 0 auto 20px;
}

.search > form {
	display: flex;
}

.searchTerm {
	width: 100%;
	border: 3px solid #00B4CC;
	border-right: none;
	padding: 0 10px;
	border-radius: 5px 0 0 5px;
	outline: none;
	color: #9DBFAF;
}

.searchTerm:focus {
	color: #00B4CC;
}

.searchButton {
	padding: 0 15px;
	height: 36px;
	border: 1px solid #00B4CC;
	background: #00B4CC;
	text-align: center;
	color: #fff;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	font-size: 16px;
	text-transform: uppercase;
}



/*  homepage
-------------------------------------------------------*/

.links {
	column-count: 4;
}

.links li > a {
	color: #636b6f;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .1rem;
	text-decoration: none;
	text-transform: uppercase;
}

.links a > img {
	margin-right: 10px;
	max-width: 50px;
	max-height: 24px;
}



/*  models
-------------------------------------------------------*

.models > table,
.model  > table {
	width: 100%;
	font-size: 13px;
}

.models tr:hover td,
.model  tr:hover td {
	background-color: rgba(0, 0, 0, 0.075);
}

.models tr + tr td,
.model  tr + tr td {
	border-top: 1px solid #e9ecef;
}

.models th,
.model  th {
	padding: 12px;
	text-align: left;
}

.models td,
.model  td {
	padding: 12px;
}

.models td > a,
.model  td > a {
	color: #007bff;
}

.models td > a:hover,
.model  td > a:hover {
	color: #0056b3;
	text-decoration: underline;
}



/*  modification
-------------------------------------------------------*/

.atts {
	column-count: 3;
}

.atts dt,
.atts dd {
	display: inline;
}

.atts dt::after {
	content: ":";
	font-weight: 200;
}

.totree > ul {
	column-count: 4;
}

.totree li {
	-webkit-column-break-inside: avoid;
	          page-break-inside: avoid;
	               break-inside: avoid;
	margin-bottom: 15px;
	width: 133px;
}

.totree li > .btn {
	display: block;
	overflow: hidden;
	color: #000;
	line-height: 9px;
	font-size: 10px;
	letter-spacing: -0.3px;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.totree .btn > img {
	display: block;
	margin-bottom: 1px;
}

.parts-dir h3 {
	margin-bottom: 0;
	padding-bottom: 0.5rem;
}

.parts-dir div > ul {
	padding-left: 20px;
}

.parts-dir div > ul::after {
	content: "";
	display: block;
	height: 0.5rem;
}

.parts a > b {
	font-weight: 700;
}

.card-body > .card {
	border-width: 0;
}
.card-body > .card table {
	font-size: 14px;
	border-width: 0;
}
.card-body > .card tr:nth-child(odd) {
	background-color: #e8fafe;
}
.card-body > .card tr:hover {
	background-color: rgba(0,0,0,.075) !important;
}
.card-body > .card th {
	padding-left: 42px;
	vertical-align: middle;
	height: 63px;
	color: #fff;
	background-color: #012933;
	border-width: 0;
	text-transform: uppercase;
}
.card-body > .card :nth-last-child(2) + th {
	padding-right: 42px;
}
.card-body > .card td {
	padding-left: 42px;
	vertical-align: middle;
	height: 53px;
	border-width: 0;
}
.card-body > .card :nth-last-child(2) + td {
	padding-right: 42px;
}




/*  responsive ( 991px)
-------------------------------------------------------*/

@media (max-width:  991px) {

.totree > ul {
    column-count: 3;
	}

}




/*  responsive ( 767px)
-------------------------------------------------------*/

@media (max-width:  767px) {

.totree > ul {
    column-count: 2;
	}

}




/*  responsive ( 575px)
-------------------------------------------------------*/

@media (max-width:  575px) {

.totree > ul {
    column-count: 3;
	}

}


/*  responsive ( 479px)
-------------------------------------------------------*/

@media (max-width:  479px) {

.links {
	column-count: 3;
	}

}


/*  responsive ( 430px)
-------------------------------------------------------*/

@media (max-width:  430px) {

.totree > ul {
    column-count: 2;
	}

}






