.dropdown_container span.choose {
  color: #555;
  padding: 5px 0 10px;
  display: inherit
}
.dropdown_container {
    width: fit-content;
}
/*Styling Selectbox*/
.elementor_dropdown {
  width: 300px;
  display: inline-block;
  background-color: #fff;
  border-radius: 2px;
  transition: all .5s ease;
  position: relative;
  font-size: 14px;
  color: #474747;
  height: 100%;
  text-align: left
}
.elementor_dropdown .select {
    cursor: pointer;
    display: block;
    padding: 10px;
    color: #888;
}
.elementor_dropdown .select > i {
    font-size: 13px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px
}

.elementor_dropdown:active {
    background-color: #f8f8f8
}
.elementor_dropdown.active:hover,
.elementor_dropdown.active {
    border-radius: 2px 2px 0 0;
    background-color: #f8f8f8
}
.elementor_dropdown.active .select > i {
    transform: rotate(-180deg)
}
.elementor_dropdown .dropdown-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    border-radius: 0 1px 2px 2px;
    overflow: hidden;
    display: none;
    max-height: 144px;
    overflow-y: auto;
    z-index: 9
}
.elementor_dropdown .dropdown-menu li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
} 
.elementor_dropdown .dropdown-menu {
    padding: 0;
    list-style: none
}
.elementor_dropdown .dropdown-menu li:hover {
    background-color: #f2f2f2
}
.elementor_dropdown .dropdown-menu li:active {
    background-color: #e2e2e2
}