body{
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
}
#myInput, #myInput1 {
    background-image: url('../images/search.png');
    background-size: 25px 25px;
    background-position: 12px 12px;
    background-repeat: no-repeat;
    width: 100%;
    font-size: 16px;
    padding: 12px 40px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 200px;
  }

  @media(max-width: 800px){

    #myInput,  #myInput1{
        padding: 12px 0px 12px 40px;
    }
    #myInput1{
        margin-top: 12px;
    }
  }

  Input:focus{
      outline: none;
      box-shadow:rgba(0, 0, 0, 0.322) 0px 0px 9px;
  }


.top_bar{
    background-color: rgba(0, 0, 0, 0.068);
    padding: 10px;
}
.main_nav li{
    list-style: none;
}
.main_nav .field_input, .main_nav .list_input{
display: inline-block;
margin-right: 10%;
}

/* .main_nav a{
    display: inline-block;
    color:rgb(255, 255, 255);
    text-decoration: none;
    padding: 15px;
    background-color: blue;
    border-radius: 200px;
    font-size: 1em;
} */

.main_nav a:hover{
    font-weight: bold;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);  
}
#main{
    display: flex;
    flex-flow: wrap row;
    justify-content: space-around;
    margin-top: 30px;
    padding: 5px;
    background-color: rgba(211, 205, 205, 0.09);
}
.fields{
    width: 320px;
    margin-top: 10px;
    padding:0 15px;
    border-radius: 10px;
    background-color: white;
}

.fields ul{
    overflow-y: scroll;
    height: 150px;
}
.fields ul::-webkit-scrollbar{
    display: none;
}
.fields_a{
    border-left: red 15px solid;
    border-top: red 2px solid;
}
.fields_b{
    border-left:  rgb(45, 25, 216) 15px solid;
    border-top:  rgb(45, 25, 216) 2px solid;
}
.fields_c{
    border-left: rgb(39, 241, 21) 15px solid;
    border-top: rgb(39, 241, 21) 2px solid;
}
.fields_d{
    border-left: rgb(255, 251, 0) 15px solid;
    border-top: rgb(255, 251, 0) 2px solid;
}

h2{
    font-size: 1.2em;
    font-weight: bold;
    min-height: 50px;
}

.list li{
    list-style: none;
    border-radius: 200px;
    padding-left: 5px;
    padding-right: 10px;
    margin-left: -30px;
    box-shadow:rgba(0, 0, 0, 0.322) 1px 2px 2px;
}

.list li:not(:first-child){
    margin-top: 10px;
}
.list_a a::before{
content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 200px;
    background-color: red;
    margin-right: 5px;
    }
.list_b a::before{
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 200px;
    background-color: rgb(45, 25, 216);
    margin-right: 5px;
    }
.list_c a::before{
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 200px;
    background-color: rgb(39, 241, 21);
    margin-right: 5px;
    }
.list_d a::before{
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 200px;
    background-color: rgb(255, 251, 0);
    margin-right: 5px;
    }
.list a {
    display: inline-block;
    margin:4px;
    text-decoration: none;
    color: black;
}
.list a:hover{
    color: forestgreen;
    text-decoration: underline;
    font-weight: bolder;
}
.num::before{
    content: ""; 
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../images/icon.png);
    background-size: 25px 25px;
    margin-bottom: -8px;  
}
.num{
    font-size: .9rem;
    float: right;
}
