/**
 *     t-select @ main
 */
.t-select-content {
	position: relative;
}
.t-select-input{
    width:100%;
    position: relative;
    padding:5px;
}
.t-select-search{
    width:100%;
    border-radius: 4%;    
}
.searchIcon{
    position:absolute;
    top:12px!important;
    right:15px!important;
    color: #A0ADB5;
}
.tSelectNoSelect{
    text-align:center;
}
.t-select-table {
	z-Index: 9999;
	position: absolute;
	display: none;
	border: 1px solid #CCCCCC;
	padding: 0;
	background-color: white;
	min-height: 100px;
}

.t-select-view {
	overflow: auto;
	overflow-x: hidden;
	width: 100%;
	min-height: 50px;
}

.t-select-cell {
	padding: 10px 5px;
}

.t-select-footer {
	position: absolute;
	bottom: 0px;
	padding: 10px 0px;
	width: 100%;
	height: auto;
	text-align: center;
}

.t-select-table .btn {
	text-align: center;
}

.t-select-table .btn-4 {
	width: 80px;
}

.t-select-table .btn-6 {
	width: 110px;
}

.t-select-submit {
	
}

.t-select-clear {
	margin-right: 0px;
}

.t-select-allcheck {
    
}

input.t-select {
	width: 100%;
	padding: 0 10px;
	border: 1px solid #e1e1e1;
	border-top-right-radius: 0px;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	height: 30px;
	line-height:30px;
}

input.t-select::-webkit-input-placeholder {
	font-size: 14px;
	color: black;
}

input.t-select:-moz-placeholder {
	font-size: 14px;
	color: black;
}

input.t-select::-moz-placeholder {
	font-size: 14px;
	color: black;
}

input.t-select:-ms-input-placeholder {
	font-size: 14px;
	color: black;
}

input.t-select:hover, input.t-select.active {
	border-color: #7DB4EA;
	cursor: pointer;
	color: #3b94b6;
	background-color: #f9f9f9;
}

input.t-select:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

input.t-select:hover::-webkit-input-placeholder {
	color: #3b94b6;
}

input.t-select:hover:-moz-placeholder {
	color: #3b94b6;
}

input.t-select:hover::-moz-placeholder {
	color: #3b94b6;
}

input.t-select:hover:-ms-input-placeholder {
	color: #3b94b6;
}

input.t-select.active::-webkit-input-placeholder {
	color: #3b94b6;
}

input.t-select.active:-moz-placeholder {
	color: #3b94b6;
}

input.t-select.active::-moz-placeholder {
	color: #3b94b6;
}

input.t-select.active:-ms-input-placeholder {
	color: #3b94b6;
}

.t-select-table i {
	font-size: 18px;
	cursor: pointer;
	position: absolute;
	top: 8px;
}

.t-select-table .grade {
	position: relative;
	padding-left: 15px;
}

.t-select-table .grade.inline {
	display: inline-block;
}

.t-select-table .grade.grade-one {
	padding-left: 20px;
}

.t-select-table .grade.grade-two {
	padding-left: 20px;
}

.t-select-table .grade.grade-three {
	padding-left: 20px;
}
/**
 *     t-select-table @ checkbox
 */
.t-select-table .checkbox, .t-select-table .checkbox-inline {
	padding-top: 7px;
	padding-left: 10px;
	margin-bottom: 0;
	margin-left: 10px;
}

.t-select-table input[type=checkbox] {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	margin: 0 !important;
	cursor: pointer;
	vertical-align: bottom;
	background: #fff;
	border: 1px solid #e1e1e1;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative !important;
	top: -3px;
	left: -7px;
}

.t-select-table .checkbox label, .t-select-table .checkbox-inline label, .t-select-table .radio label, .t-select-table .radio-inline label {
	font-weight: 400 !important;
	display: block;
	padding-left: 0;
	margin-bottom: 0;
	cursor: pointer;
}

.t-select-table .grade.notparent .checkbox>label>span, .t-select-table .grade.notparent .checkbox-inline>label>span {
	margin-left: -7px;
}

.t-select-table .checkbox+.checkbox, .t-select-table .radio+.radio {
	margin-top: 0px;
}

.t-select-table input[type=checkbox]:active {
	border-color: #c6c6c6;
	background: #ebebeb;
}

.t-select-table input[type=checkbox]:hover {
	border-color: #c6c6c6;
	-webkit-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
}

.t-select-table input[type=checkbox]:checked {
	background: #fff;
}

.t-select-table input[type=checkbox]:checked::after {
	content: url("images/check.png"); /*\2714*/
	display: block;
	position: absolute;
	top: -1px;
	left: -1px
}

.t-select-table input[type=checkbox]:focus {
	outline: none;
	border-color: #4d90fe;
}
/**
 *     t-select-table @ radio
 */
.t-select-table .radio, .t-select-table .radio-inline {
	padding-top: 7px;
	padding-left: 30px;
}

/* .t-select-table input[type=radio] {
	position: absolute;
	top: 8px;
	bottom: 0;
	left: 10px;
	margin: auto;
	display: block;
	width: 13px;
	height: 13px;
	cursor: pointer;
	-webkit-appearance: none;
	background-color: white;
	box-shadow: 0 0 1px #777;
	border-radius: 10px;
	outline: none;
} */
/* t-select-new */
.t-select-table input[type=radio] {
    position: relative;
    top: 2px;
    bottom: 0;
    left: -7px;
    margin: 0 !important;
    width: 13px;
    height: 13px;
    cursor: pointer;
    -webkit-appearance: none;
    background-color: white;
    box-shadow: 0 0 1px #777;
    border-radius: 10px;
    outline: none;

}

.t-select-table input[type=radio]:checked {
	background-color: rgb(104, 104, 104);
	border: 2px solid white;
}

.t-select-table input[type=radio]:focus {
	
}

.t-select-table input[type=radio]:not (:checked ):hover {
	-webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
	box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.t-select-content div:focus,.t-select-content i:focus,.t-select-content a:focus,.t-select-content span:focus,.t-select-content label:focus{outline:0!important};
.searchBlock{
    display:block!important;
}
.searchNone{
    display:none!important;
}
.getHeight{
    visibility: hidden;
}