
#cmb_wrap {
	display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    height: 50px;
    z-index: 50;
	    margin-left: -300px;
}

#wrap_top {
	    display: block;
    position: absolute;
    top: 10px;
    left: 60%;
    /* height: 30px; */
    z-index: 50;
    width: 400px;
    background-color: green;
    margin-top: 5px;
    box-shadow: 2px 2px 2px grey;
    padding: 6px;
    color: white;
	font-family: Arial;
	font-size: 18px;
	
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}