* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.select {
	position: relative;
	max-width: 200px;
	outline: none;
}

.select .value {
	background: #fff;
	margin-top: 0;
	text-align: left;
	text-shadow: none;
	z-index: 1;
	outline: none;
	overflow: hidden;
	border: none;
	padding: 0.5rem 1rem;
	color: #4A4A4A;
	font-size: 12px;
	width: 11rem;
	border: 1px solid transparent;
	-webkit-appearance: none;
	letter-spacing: 0.08px;
	box-shadow: 0 2px 5px 0 rgba(113, 113, 113, 0.39);
	-moz-box-shadow: 0 2px 5px 0 rgba(113, 113, 113, 0.39);
	-webkit-box-shadow: 0 2px 5px 0 rgba(113, 113, 113, 0.39);
	border-radius: 5px;
	display: block;
	position: relative;
	cursor: pointer;
	overflow-x: hidden;
	white-space: nowrap;
}

.select .value:after {
	background-image: url(../../images/fastTag/dropdown.png);
	content: "";
	position: absolute;
	right: 1em;
	width: 10px;
	height: 10px;
	background-repeat: no-repeat;
	top: 1.2em;
	transition: 0.4s all ease-in-out;
	background-size: 9px 5px;
}

.select .list {
	position: absolute;
	top: 0;
	width: 100%;
	height: 0;
	background: #fff;
	opacity: 0;
	outline: none;
	box-shadow: 0 2px 5px 0 rgba(113, 113, 113, 0.39) !important;
	-moz-box-shadow: 0 2px 5px 0 rgba(113, 113, 113, 0.39);
	-webkit-box-shadow: 0 2px 5px 0 rgba(113, 113, 113, 0.39);
	border-radius: 5px;
	overflow: hidden;
	-webkit-transition: opacity 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
	transition: opacity 0.25s cubic-bezier(0.39, 0.575, 0.565, 1);
	z-index: 9;
}

.select .list.open {
	height: auto;
	opacity: 1.0;
}

.select .list.open:after {
	background-image: url(../../images/fastTag/dropdown.png);
	content: "";
	position: absolute;
	right: 1em;
	width: 10px;
	height: 10px;
	background-repeat: no-repeat;
	top: 0.7em;
	transition: 0.4s all ease-in-out;
	background-size: 9px 5px;
	transform: rotate(-180deg);
}

.select .list .filter {
	display: none;
	padding: 8px 10px
}

.select .list .filter input {
	width: 100%;
	font-family: helvetica, arial, sans-serif;
	font-size: 12px;
	color: #1f202a;
	border: none;
	border-bottom: 1px solid #eaeaea;
	outline: none;
	margin: 0;
	padding: 0 0 5px
}

.select .list ul {
	display: block;
	margin: 0;
	padding: 0
}

.select .list ul li {
	display: block;
	list-style: none;
	font-family: helvetica, arial, sans-serif;
	font-size: 12px;
	color: #1f202a;
	padding: 8px 0.2rem;
	cursor: pointer;
	border-bottom: 1px solid #E5E5E5;
}

.select .list ul li:hover, .select .list ul li.hovered {
	color: #444444;
	background: #f1f1f1
}

.select.large .filter {
	display: block;
	border-bottom: 1px solid #D2D2D2;
	padding: 0.5rem 1rem;
	padding-right: 2rem;
	padding-bottom: 0;
	padding-top: 0;
}

.select.large .list ul {
	max-height: 130px;
	overflow-y: scroll;
	padding: 0 0.5rem;
}

.select .list .filter input {
	width: 100%;
	border: none;
	border-bottom: none;
	outline: none;
	margin: 0;
	padding: 0;
	box-shadow: none !important;
}

&
:focus {
	outline: none;
	border: none;
}

.select .list .filter input:focus {
	border: none !important;
	border-bottom: none;
	outline: none;
}

 @media (max-width: 767px) {
            .detail-col .select {
                max-width: 100%;
            }
        }
        
        @media (max-width: 767px) {
            .detail-col .select .value {
                width: 85%;
            }
        }
        
        @media (min-width: 768px) and (max-width: 1025px) {
            .fastag .select .value {
                width: 8rem;
            }
        }
        
        @media (min-width: 768px) and (max-width: 1025px) {
            .fastag .select .list .filter input {
                height: 21px;
            }
        }