#myInput {
    width: 70%; 
    padding: 12px 0px 12px 0px;

    font-size: 18.5px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;

    border: 2px solid #3a3a3a;
    background-color: #181818;
    color: white;

    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;

    -moz-transition: all .25s;
    -o-transition: all .25s;
    -webkit-transition: all .25s;
    transition: all .25s;

    margin-bottom: 12px; 
}

#myInput:hover {
    border: 2px solid #05C7F2;
}

#Search {
    list-style-type: none;
    padding: 0;
    margin: 0;
    
    width: 65%;
    margin: 0 auto;
}
  
#Search li a {
    border: 2px solid #3a3a3a;
    background-color: #181818;
    color: white;

    margin-top: -1px; 
    margin-bottom: 10px;
    padding: 12px;

    text-decoration: none;
    font-size: 18px;
    display: block; 
    
    background-image: url('/assets/img/rightarrow.svg'); 
    background-position: 98%; 
    background-repeat: no-repeat; 
    background-size: 32.5px;

    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;

    -moz-transition: all .25s;
    -o-transition: all .25s;
    -webkit-transition: all .25s;
    transition: all .25s;
}
  
#Search li a:hover:not(.header) {
    border: 2px solid #05C7F2;
}

  a {
      padding: 0;
  }

.searchhr {
    width: 75%;
    border: 1px solid #3a3a3a;
    margin-bottom: 20px;
}