body {
    background-color: #005575 !important;
}

#div-search-box {
    margin: 1%;
    transition:all 1s;
    font-family: 'Source Code Pro', monospace;
}

.search-input {
    font-family: 'Source Code Pro', monospace;
    width: 240px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 13px;
    font-size: 10px;
    background-color: white;
    background-repeat: no-repeat;
    padding: 3px 0px 3px 2px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
    outline: none;
    margin: 0px 14px;
}

.search-btn {
    font-family: 'Source Code Pro', monospace;
    outline: none;
}

.result-snipet {
    margin: 20px 0px;
}

.result-link , .result-link:hover , .result-link:active {
    color: black;
    text-decoration: none;
    margin:5px;
}

.result-link:hover {
    color: grey;
}

.note {
    font-family: 'Source Code Pro', monospace;
    margin: 10px;
}

a:hover {
    text-decoration: none !important;
}

.output-result{
    display:flex;
    flex-wrap:wrap;
}

/* Dropdown Button */
.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
  }
  
  /* Dropdown button on hover & focus */
  .dropbtn:hover, .dropbtn:focus {
    background-color: #3e8e41;
  }
  
  /* The search field */
  #myInput {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 14px 20px 12px 45px;
    border: none;
    border-bottom: 1px solid #ddd;
  }
  
  /* The search field when it gets focus/clicked on */
  #myInput:focus {outline: 3px solid #ddd;}
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f6f6f6;
    min-width: 230px;
    border: 1px solid #ddd;
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #f1f1f1}
  
  /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
  .show {display:block;}


  .btn{
    border: 1px solid black;
    margin-top:5px;
  }
  .btn:hover{
    background-color:grey;
  }

  .missing{
    overflow:auto;
    height:500px;
  }
  .missing div{
    width:100%;
    margin-left:10px;
    font-size:12px;
    border-right: 2px solid;
    display:flex;
  }
  .missing div:hover{
    cursor:pointer;
    background-color: #3e8e41;
  }
  .missing span{
    font-family: bold;
    font-size: 16px;
    text-decoration: underline;
  }

  .result-box{
    margin: 4px;
    padding: 4px;
    border: 1px solid;
  }

  .divheader{
    display: flex;
    flex-direction: row;
    align-content: space-around;
    justify-content: space-evenly;
    align-items: center;
  }

  .output-result-to-you{
    display: flex;
    flex-wrap: wrap;
  }
/*  .result-trade{
    flex-basis: content;
    border: 1px solid grey;
    padding: 2px;
    margin: 5px;
  }
  */
  .result-trade{
    display: flex;
    justify-content: flex-start;
    align-content: stretch;
    align-items: center;
    margin-right: 35px;
  }

  .borderd{
    border-right: 1px solid black;
    margin:4px;
  }

  button{
    padding: 2px;
  }

  div#totaux, div#totaux2{
    width: 100%;
    text-align: center;
  }
  #loading {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
  }
  
  #loading-image {
    position: absolute;
    z-index: 100;
    margin: auto;
    left: 25%;
    width: 50%;
    animation: rotateImg 0.9s linear infinite;
  }

  @keyframes rotateImg{
    from {
     transform: rotate(0deg);
    }
   to {
    transform: rotate(359deg);
   }
  }