/*	-------------------------------------------------------
	:: GENERAL RULES 
	-------------------------------------------------------*/
	#app > ul {
		color: #000;
		transition: all 0.3s ease-in-out;
	}
	#app h3 {
		font-size: 20px;
		font-weight: 400;
		line-height: 1.3;
	}
	#app span {
		font-size: 14px;
		line-height: 1.58;
	}
	#app span.highlight {
		color: #9b0000;
		font-weight: bold;
	}
	#app span > small {
		font-weight: bold;
	}

	.search-href-parent {
		display: flex;
	}

	.search-href-parent, .search-href {
		visibility: visible;
		opacity: 1;	
	}

	.search-open .search-href-parent, .search-open .search-href {
		visibility: hidden;
		opacity: 0;	
	}

	.searchBar {
		background-color: #ffffff;
		position: absolute;
		margin: 0;
		left: 0;
		right: 0;
		z-index: 1025;
		/* transition: width 0.4s linear; */
	}

	body.search-open {
		overflow-x: hidden !important;
	}

	.search-open.mobile .searchBar {
		height: 60px;
		overflow-x: hidden;
	}
	
	.search-open.results .searchBar {
		box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
		height: auto;
	}

	.searchBar .autocomplete-form {
		position: relative;
	}

	.search-open.mobile .searchBar .autocomplete-form {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.searchBar form > input {
		border: none;
		width: 0;
		height: 100%;
		padding: 0 20px;
		outline: none;
		border-bottom: 1px solid #eee;
		/* transition: 0.5s ease-in; */
	}
	
	.search-open .searchBar form > input {
		height: 60px;
		width: 100%;
		transition: width 0.4s ease-in;	
	}
	
	.search-open.mobile .searchBar form > input {
		box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
		height: 60px;
	}

	.searchBar .search-close{
		width:50px;
		height:0;
		position:absolute;
		font-size: large;
		z-index:999;
		color:rgb(103,107,124);
		right:-5px;
		right:15px;
		top:-15px;
		top:21px;
		opacity:0;
		text-decoration:none;
		-webkit-transition: all 1s;
		transition: all 1s;
		-webkit-transition-delay: 0s;
		transition-delay: 0s;
		outline:none;	
	}
	
	.search-open .searchBar .search-close{
		-webkit-transition-delay: 0.5s;
		transition-delay: 0.5s;
		opacity:1;
	}	

	.search-open.mobile .searchBar  .search-close {
		right: -15px;
	}

	.search-open .cd-main-content {
		transition: height 0.4s ease-in;	
	}

/*	-------------------------------------------------------
:: Style 1
-------------------------------------------------------*/
	#app.style-1 > ul {
		background-color: #ffffff;
	}
/*	-------------------------------------------------------
:: Style 2
-------------------------------------------------------*/


/*	-------------------------------------------------------
:: Style 3
-------------------------------------------------------*/	
.search-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	display: block;
	background: rgba(56,0,60,.95);
	visibility: hidden;
	opacity: 0;
	transition: all .4s ease;
	top: 0;
	left: 0;		
}

.search-open .search-overlay {
	visibility: visible;
	opacity: 1;
}


/*	-------------------------------------------------------
:: Others
-------------------------------------------------------*/	
.disable-scrollbars::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* Chrome/Safari/Webkit */
}

.disable-scrollbars {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}
[v-cloak] {display:none;}