#overlaySearch {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    top: 0;
    right: 0;
    background-color: rgba(245,245,245,0.9); /* Grey background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
    overflow: scroll;
    /*padding: 20px;*/
    width: 300px;
}

/*
#overlaySearch .container{
	padding: 20px;
}
*/

/*#overlaySearch .container, #overlaySearch .col-12 {
  padding-left: 0!important;
  padding-right: 0!important;
}*/

#overlaySearch .container{
	padding-left: 0!important;
	padding-right: 0!important;
    padding-bottom: 10px;
}

#overlaySearch .col-12 {
  padding-left: 0!important;
  padding-right: 0!important;
}


#overlaySearch .row {
	margin: 0!important;
}

#overlaySearch form {
	padding: 20px;
}

#right-nav-group #wordSearch {
    border-radius: 20px 0 0 20px;
    padding: .5rem .7rem;
    width: 83%;
    float: left;
}

#overlaySearch .row {
	width: 100%;
}

.padding-bottom-20 {
	padding-bottom: 20px;
}

#overlaySearch .container a {
  float: left;
  padding: .4rem;
  background: #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  font-size: 17px;
  border: none;
  cursor: pointer;
}

.search_icon {
	background-image: url(img/search_bar.png);
	display: block;
	width: 24px;
	height: 24px;
	background-repeat: no-repeat;
}

#searchResult {
	overflow-y: scroll;
    padding: 0;
    list-style: none;
    max-height: 200px;
    width: 100%;
    margin-top: 35px;
    display: none;
}

#searchResult li {
	padding: 10px;
    background-color: #fbf5f5;
    border-bottom: 1px solid #fff;
    text-transform: none;
    color:#c26c6e;
}

@media screen and (max-width: 767px) {
	#overlaySearch {
		width: 100%;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	#overlaySearch {
		width: 50%;
	}
}






