/* Search */
.search-modal .modal-content {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.search-modal .modal-header {
    background-color: #fff;
    color: #fff;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    border-bottom: 0;
}

.search-modal .input-group {
    margin: 20px 0;
}

.search-modal .form-control {
    border-radius: 3px;
    border: 2px solid #EAECEC;
}

.search-modal .form-control:focus {
    border-color: #0D2137;
    box-shadow: none;
    outline: none;
}

.search-modal .btn-primary {
	color: #fff;
	font-weight: 550;
  background-color: #0D2137;
  border-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border: none;
}

.search-modal .btn-primary:hover{
	 background-color: #000;
}

.search-modal .btn-close {
	  border: none;
    color: #000;
}

.search-modal .btn-close:focus {
    box-shadow: none;
    outline: none;
}

.search-modal .btn-close:hover {
    background-color: transparent !important;
}