  .btn-group-new {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
}

.btn-group-new button {
  background-color: #aab7bf; /* Green background #04AA6D */
  border: 1px solid #707070; /* Green border */
  color: #000000; /* White text */
  font: 15px Arial, sans-serif;
  padding: 6px 15px 6px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
  float: left; /* Float the buttons side by side */
  border-radius: 5px;
  text-shadow: 1px 1px 1px rgba(215, 215, 215, 0.74);
  width: 150px;
}

/* Not Last Button
.btn-group-new button:not(:last-child) {
  border-right: none; /* Prevent double borders */
}
*/

/* Clear floats (clearfix hack) */
.btn-group-new:after {
  content: "";
  clear: both;
  display: table;
}

/* Add a background color on hover */
.btn-group-new button:hover {
  background-color: #3e8e41;
  color: white;
}

.btn-group-new a:hover {
  color: white;
  
  
.topbar {
    position: relative;
    left: 0;
    top: 0;
    width: auto;
    background: -webkit-gradient(linear,0% 0%,0% 100%,from(#cdd5df),color-stop(3%,#b0bccd),color-stop(50%,#889bb3),color-stop(51%,#8195af),color-stop(97%,#6d84a2),to(#2d3642));
    margin-bottom: 13px;
}