.wrapper2{
  box-shadow: 3px 1px 1px 0px #dadada;
  border: 2px solid #dadada;
  border-radius: 10px;
}

.wrapper2 .search_box{
  width: 100%;
  background: #fff;
  border-radius: 10px;
  height: 65px;
  display: flex;
  padding: 10px;
  box-shadow: 0 8px 6px -10px #dadada;
}

.wrapper2 .search_box .dropdown{
  width: 25%;
  border-right: 2px solid #dde2f1;
  color: var(--brand-blue-dark);
  position: relative;
  cursor: pointer;
  font-weight: bold;
}

.wrapper2 .search_box .dropdown .default_option {
  text-transform: uppercase;
  padding: 13px 15px;
  font-size: 18px;
}

.wrapper2 .search_box .dropdown ul{
  position: absolute;
  top: 30px;
  left: 0px;
  background: #cacaca;
  width: 150px;
  border-radius: 5px;
  padding: 20px;
  display: none;
  box-shadow: 8px 8px 6px -10px var(--brand-blue-dark);
  z-index: 1;
}

.wrapper2 .search_box .dropdown ul.active{
  display: block;
}

.wrapper2 .search_box .dropdown ul li{
  padding-bottom: 10px;
  display: block;
  font-size: 18px;
}

.wrapper2 .search_box .dropdown ul li:last-child{
  padding-bottom: 0;
}

.wrapper2 .search_box .dropdown ul li:hover{
  color: #6f768d;
}

.wrapper2 .search_box .dropdown:before{
  content: "";
  position: absolute;
  top: 18px;
  right: 20px;
  border: 8px solid;
  border-color: var(--brand-blue-dark) transparent transparent transparent;
}

.wrapper2 .search_box .search_field{
  width: 100%;
  height: 100%;
  position: relative;
}

.wrapper2 .search_box .search_field .input{
  width: 100%;
  height: 100%;
  border: 0px;
  font-size: 18px;
  padding-left: 50px;
  padding-right: 18px;
  color: var(--brand-blue-dark);
}

.wrapper2 .search_box .search_field .fas{
  position: absolute;
  top: 0px;
  left: 10px;
  color: var(--brand-blue-dark);
  cursor: pointer;
  font-size: 2em;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #9fa3b1;
}
::-moz-placeholder { /* Firefox 19+ */
 color: #9fa3b1;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #9fa3b1;
}

@media screen and (max-width: 1000px) {
	.wrapper2 .search_box .dropdown {
		width: 35%;
	}
}

@media screen and (max-width: 800px) {
	.wrapper2 .search_box .dropdown {
		width: 50%;
	}
}

@media screen and (max-width: 600px) {
	/*.wrapper2 .search_box {
		flex-wrap: wrap;
		margin-bottom: 30px
	}
	.wrapper2 .search_box .dropdown {
		width: 100%;
	}*/
	.wrapper2 .search_box .dropdown .default_option {
		font-size: 12px;
	}
	/*.wrapper2 .search_box .search_field .input {
		font-size: 16px;
	}*/
}