/** Search - autocomplete */
#searchItem {
    position: absolute;
    margin-left: 20px;
    width: 250px;
    font-size: 0.8em;
}

#largeSearchItem {
    position: absolute;
    margin-left: 20px;
    width: 100%;
    font-size: 0.8em;
}

/** navi */
.navi_layer_img {
    width: 431px;
    height: 287px;
}

/* * contactus page*/
label.is-invalid.is-invalid-error {
    color: rgb(182, 0, 0);
    padding-bottom: 3px;
    font-size: 0.8em;
}

.detail_content_images {
    position: relative;
    float: left;
}

.mybtn-red {
    color: azure;
    background-color: #C8102E;
    border-color: #C8102E;
}

/** blog ***/
.blogpage-article ul {
    list-style: disc;
}

/** angularJS dropdown auto-complete **/
.dropdown-container {
	position: relative;
	/* Ensure relative positioning for the input field */
	/* width: 250px; */
	z-index: 10;
}

.dropdown-list {
	position: absolute;
	top: 100%;
	/* Positions dropdown right below input */
	left: 0;
	width: 100%;
	border: 1px solid #ffffff;
	max-height: 500px;
	overflow-y: auto;
	background: white;
	z-index: 9999;
	/* Ensures dropdown is above other elements */
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	/* Optional shadow */
    font-size:14px;

        
}

.dropdown-listitem {
	padding: 5px 5px;
    border-bottom: 0px solid #e2e2e2;
    cursor: pointer;
}

.dropdown-listitem:hover {
	background-color: #56abff;
    color:#ffffff;
}