
* {
    box-sizing:border-box;
    padding: 0px;
  }
  
  /* Create two equal columns that floats next to each other */
  .column {
    float: left;
    width: 50%;
    padding: 10px;
    height: 65px;
    border-radius: 10px;
  }
  .box{
    padding: 0px;
    width: 100%;
    height: 60px;
    background-color: #222;
    border-radius: 10px;
  }
  .box img{
    width: 50px;
    height: 50px;
    border-radius: 10px;
    float: left;
    margin: 5px;
  }
  
  .box a {
    float: right;
    border-radius: 15px;
    width: 60px;
    padding: 5px;
    margin-top: 16px;
    margin-right: 10px;
    margin-bottom: 0px;
    display: block;
    background-color: #fff;
    color: #111;
    font-size: 13px;
  }
  
  .box h1 {
    font-size: 17px;
    margin-left: 45px;
    margin-top: 0px;
    padding-top: 10px;
    margin-bottom: 0px;
    text-align: justify;
  }
  
  .box p {
    font-size: 14px;
    margin-left: 45px;
    margin-top: 0px;
    margin-bottom: 0px;
    text-align: justify;
    opacity: 0.6;
  }

  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
  }

  #myInput {
    background-position: 10px 12px;
    background-repeat: no-repeat; 
    width: 65%; 
    font-size: 12px;
    padding: 12px 20px 12px 40px;
    margin-bottom: 12px;
    margin:0px;
    margin-top: 10px;
    border-radius:10px;
    background-color: #222222;
    color: #fff;
    border-style: none;
}
  
#myUL {
    /* Remove default list styling */
    list-style-type: none;
    padding: 0;
    margin: 0;
  }


  label {
    position: relative;
  }
  
  label:before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='%236d706e' viewBox='0 0 25 25' fill-rule='evenodd'%3E%3Cpath d='M16.036 18.455l2.404-2.405 5.586 5.587-2.404 2.404zM8.5 2C12.1 2 15 4.9 15 8.5S12.1 15 8.5 15 2 12.1 2 8.5 4.9 2 8.5 2zm0-2C3.8 0 0 3.8 0 8.5S3.8 17 8.5 17 17 13.2 17 8.5 13.2 0 8.5 0zM15 16a1 1 0 1 1 2 0 1 1 0 1 1-2 0'%3E%3C/path%3E%3C/svg%3E") center / contain no-repeat;
  }