body {
        background-color: #f9fafb;
}
body, select,option, button {
	font-family:'Cairo';
    font-weight: bold;
}
select{
	width: 100px;
}
.maint {
    padding: 30px;
    color: #000;
}
.new {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    align-items: stretch;
 }

.new2 {
     width: 33%;
 }
 .new3 {
     width: 10%;
     margin-top: 10%
 }
.new4 {
	width: 45%;
	margin-top: 5%/* 4% if 3 total*/
}

 .button {
  display: inline-block;
  border-radius: 4px;
  background-color: #cc15cd;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  padding: 8px;
  width: 50%;
  transition: all 0.5s;
  margin: 0px;
}
#total {
    color: #cc15cd;
}
#total2 {
    color: #cc15cd;
}
/* header-fotter */
 .topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  /*float: right;*/
  color: #f2f2f2;
  text-align: right;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #cc15cd;
  color: white;
}

.topnav a.active {
  background-color: #cc15cd;
  color: white;
}
/*drobdown list*/
.dropbtn {
  background-color: #cc15cd;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: fixed;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #cc15cd}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #cc15cd;
}
.footer {
    background-color: #cc15cd;
    padding: 5px;
    text-align: left;
    color: #FFFFFF;
}