.popup_background {
	width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup_container {
	position: absolute;
    top: 9%;
    left: 10%;
    background: rgb(231, 187, 30);
    width: 80%;
    height: 87%;
    border-radius: 17px;
    box-shadow: 8px 6px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.popup_label {
	padding: 15px; 
	display: flex; 
	background: rgba(255,255,255,0.4); 
	border-radius: 15px; 
	margin: 43px 0px 0px 25px;
	max-width: 200px;
	font-weight: bold;
    max-height: 18px;
}

.popup_close_icon {
	width: 31px;
    float: right;
    border-radius: 10px;
    margin: 7px;
	cursor: pointer;
}

.popup_button_save {
	background-color: green;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.popup_button_close {
	background-color: red;
    position: absolute;
    bottom: 5px;
    right: 135px;
}

/* The container must be positioned relative: */
select {
    -webkit-appearance: none;
	position: relative;
	font-family: Arial;
}

select select {
	display: none; /*hide original SELECT element: */
}

select {
	background-color: saddlebrown;
}

/* Style the arrow inside the select element: */
select:after {
    -webkit-appearance: none;
	position: absolute;
	content: "";
	top: 14px;
	right: 10px;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-color: #fff transparent transparent transparent;
}

/* Style items (options): */
.select-items {
	position: absolute;
	background-color: saddlebrown;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
	display: none;
}

.select-items div:hover, .same-as-selected {
	background-color: rgba(0, 0, 0, 0.1);
}