
  /* The dropdown container */
  .dropdown {
    float: left;
    /* overflow: hidden; */
    margin: 0;
    float: right;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    border: none;
    outline: none;
    color: black;
    box-sizing: 0;
	font-size: 18px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: -15px; /* Important for vertical align on mobile phones */
    padding: 15px;
    margin-left: 3px;
    
  }
  
  /* Add a red background color to navbar links on hover */
.dropdown:hover .dropbtn {
    background-color: rgba(190,23,25);
    color: white;
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-top: 14px;
    padding: 5px;
    margin-left: 3px;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 15px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: rgba(191,190,209);
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  #drop{
      margin-right: 10px;
  }