/*search*/
div#ua_searchs svg {
    height: 35px;
    width: auto;
    cursor: pointer;
    transform: rotate(-15deg);
    margin: 0 8px;
}
.ua_search_form__wrapper {
    position: relative;
}
.search_form div#ua_autocomplete {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.ua_search_form__wrapper .search_form {
    position: absolute;
    top: -9px;
    right: -5px;
    transition: all 0.4s ease-in-out;
    width: 40px;
    opacity: 0;
    visibility: hidden;
}

.ua_search_form__wrapper.active .search_form{
    width: 100%;
    opacity: 1;
    visibility: visible;
    margin: 0px 6px;
}

.ua_search_form__wrapper .search_form .ua_search_btn {
    position: absolute;
    left: 16px;
    top: 17px;
}
.ua-search-dropdown-active input[type="text"] {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.ua_search_form__wrapper .search_form .ua_close_btn {
    position: absolute;
    right: 15px;
    top: inherit;
}
.ua_search_form__wrapper .search_form .ua_search_btn,
.ua_search_form__wrapper .search_form .ua_close_btn {
    top: 50%;
    transform: translateY(-50%);
}
.ua_search_form__wrapper .search_form input[type="text"] {
    background: #fff;
    padding: 10px;
    padding-left: 45px;
    font-size: 20px;
    color: #000000;
    border: 1px solid #000000;
    width: 100%;
    min-height: auto;
    height: auto;
}

.ua_search_form__wrapper .search_form input[type="text"]:focus {
    outline: none;
    border: 1px solid #000000;
}

body:not(.ua_search_form__wrapper) .ua_search_form__wrapper .search_form input[type="text"] {
    border-radius: 0; 
}

.ua_search_form__wrapper .search_form input[type="text"]::placeholder {
    color: #000000;
}

.ua_search_form__wrapper .search_form .ua_search_btn svg {
    height: 22px;
    width: auto;
}
.ua_close_btn svg,
.ua_search_form__wrapper .search_form .ua_search_btn svg {
    display: block;
}
.ua_search_form__wrapper .search_form .ua_search_btn svg circle, .ua_search_form__wrapper .search_form .ua_search_btn svg line {
    stroke: #000000;
}
div#ua_searchs svg circle, div#ua_searchs svg line {
    stroke: #000000;
}
.ua_close_btn{
    position: absolute;
    right: -20px;
    top: -20px;
    cursor: pointer;
}
.ua_close_btn svg {
    height: 20px;
    width: auto;
}

.ua_close_btn svg line {
    stroke: #000000!important;
}

.ua_search_form__wrapper.active div#ua_autocomplete div#search_output.has-results {
  padding: 20px 30px;
}

div#ua_autocomplete div#search_output {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    margin-top: 1px;
    max-height: 500px;
    overflow: hidden;
    overflow-y: auto;
    z-index: 1;
    min-width: auto;
}
div#ua_autocomplete div#search_output ul {
    padding: 0;
    margin: 0;
}
ul#search_output {
    margin: 0;
    list-style-type: none;
}

ul#search_output li:not(:last-child) {
    margin-bottom: 10px;
}

.close__btn svg {
    height: 25px;
    cursor: pointer;
}

ul#search_output li a {
    color: white;
}

ul#search_output li a:hover {
    color: antiquewhite;
}

#search_output::-webkit-scrollbar-track
{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

#search_output::-webkit-scrollbar
{
    width: 6px;  
}

#search_output::-webkit-scrollbar-thumb
{
    background-color: #000000;
}
/* Hide the close button by default */
.ua_close_btn {
  display: none;
}