.topnav_customer {
  overflow: hidden;
  background-color: none;
  text-align: center;
  margin: 0 auto;
  width: 65%;
}

.topnav_customer a {
  float: left;
  display: block;
  color: #000;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 1.2em;
}

.active { 
  color: #C41230 !important;
}

.active_button button { 
  color: #C41230 !important;
}

.topnav_customer .icon {
  display: none;
}

.dropdown_customer {
    float: left;
    overflow: hidden;
}

.dropdown_customer .dropbtn {
    font-size: 1.2em;    
    border: none;
    outline: none;
    color: #000;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: #000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.topnav_customer a:hover, .dropdown_customer:hover .dropbtn {
  background-color: none;
  color: #C41230;
}

.dropdown-content a:hover {
    background-color: none;
	color: #C41230;
}

.dropdown_customer:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 600px) {
  .topnav_customer a, .dropdown_customer .dropbtn {
    display: none; 
  }
  .topnav_customer a.icon {
    float: right;
    display: block;
  }
  .topnav_customer{
	  width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .topnav_customer.responsive {position: relative;}
  .topnav_customer.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav_customer.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav_customer.responsive .dropdown_customer {float: none;}
  .topnav_customer.responsive .dropdown-content {position: relative; padding-left: 10px; color: #555}
  .topnav_customer.responsive .dropdown_customer .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}