.topHeader {
  overflow: hidden;
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.head1 {
  font-size: 40px;
  color: #090;
  font-weight: 700;
}
.head2 {
  font-size: 17px;
  margin-left: 10px;
  margin-bottom: 15px;
}
#pageHeader {
  overflow: hidden;
  font-size: 20px;
  color: blue;
  font-weight: 700;
  text-align: center;
  position: fixed;
  top: 0;
  width: 100%;
}
.main {
  padding: 16px;
  margin-top: 200px;
}
.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #fff;
  border-color: #e7e7e7;
  border: 2px solid #e7e7e7;
  color: #000;
  text-align: center;
  font-size: 20px;
  padding: 10px;
  width: 250px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
  margin-left: 20px;
  vertical-align: middle;
}
.pgTitleV {
  font-family: "monospace", "Arial", sans-serif;
  font-weight: 400;
  text-align: center;
  color: #e82c0c;
  font-size: xxx-large;
  text-align: center;
}
.pgTitleD {
  font-family: "monospace", "Arial", sans-serif;
  font-weight: 400;
  text-align: center;
  color: #000;
  font-size: xxx-large;
  text-align: center;
}
.titleImage {
  width: 55px;
  height: 55px;
}
.mainTitle {
  text-align: center;
}
.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.button:hover {
  background-color: #e7e7e7;
  color: #e82c0c;
}
.button span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button:hover span {
  padding-right: 25px;
}
.button:hover span:after {
  opacity: 1;
  right: 0;
}
#global {
  margin-left: 20px;
}
#globalTitle {
  font-family: monospace;
  font-weight: 700;
  text-align: left;
  font-size: x-large;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.menu {
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 10px 0 10px 0;
  color: green;
  margin: 0 auto;
  overflow: hidden;
}
.menu button {
  float: left;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: solid;
  font-size: 15px;
}
.menu-log {
  right: auto;
  float: right;
}
footer {
  width: 100%;
  bottom: 0;
  background-color: #000;
  color: #fff;
  position: absolute;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
.body_sec {
  margin-left: 20px;
  margin-top: 330px;
}
.column {
  float: left;
  width: 25%;
  padding: 0 10px;
}
.row {
  margin: 0 -5px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
p {
  padding: 0;
  margin: 0;
  font-weight: 50;
  text-align: left;
  font-family: monospace;
}
.label-global {
  font-family: monospace;
  font-weight: 700;
  text-align: left;
  color: blue;
}
.value-global {
  font-family: monospace;
  text-align: left;
  color: darkgreen;
}
.card-global {
  font-weight: 400;
  text-align: left;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #f1f1f1;
  margin: 5px 0;
  margin-right: 30px;
  margin-bottom: 10px;    
}
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;    
  }
}
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transform: translate3D(0, -2px, 0);
}
.stickyClass {
  position: fixed;
  width: 100%;
  top: 0;
}
body {
  padding: 0;
  margin: 0;
}
#title-bar {
  -webkit-app-region: drag;
  height: 24px;
  background-color: darkviolet;
  padding: none;
  margin: 0;
}
#title {
  position: fixed;
  top: 0;
  left: 6px;
}
#title-bar-btns {
  -webkit-app-region: no-drag;
  position: fixed;
  top: 0;
  right: 6px;
}
#myInput {
  width: 250px;
  margin: 5px;
  margin-left: 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: #fff;
  background-image: url(../pages/searchicon.png);
  background-position: 10px 12px;
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}
#myInput:focus {
  width: 77%;
}
