.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_close_icon {
	width: 31px;
    float: right;
    border-radius: 10px;
    margin: 7px;
}

.popup_save_icon {
	background-color: green;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.popup_hive_id {
	margin: 20px;
    font-size: xx-large;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 18px;
    padding: 1px 1px 0px 14px;
}


/* 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);
}