/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


.custom-select {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  font-size: 15px;
  line-height: 19px;
}
.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #1F1E1F;
  overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  text-align: left;
  content: "";
  top: 14px;
  right: 19px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 19px;
  right: 19px;
}
.select-selected:after {
  top: 24px;
  right: 19px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #ffffff;
  padding: 17px 8px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  text-align: left;
  text-transform: none;
}
/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #1F1E1F;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: 300px;
  overflow-y: auto;
}

.custom-button {
	display: inline-block;
}
.custom-button input#csearch
{
	display: inline-block;
background: #014099;
color: #fff;
padding: 17px 25px;
font-size: 20px;
margin: 0;
font-weight: 600;
line-height: 20px;
position: relative;
top: -2px;
text-transform: capitalize !important;
}



/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  background: #014099;
}

@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
