#searchBarContainer{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    background-color: #0070ba;
    background-image: linear-gradient(45deg, #ff0000, #000000);
    padding: 0;
    z-index: 1030;
    height: 80px;
    box-shadow: 0 2px 0 rgba(0,0,0,0.2);
  }
  #searchTogleOn{
    font-size: 0.875rem;
    font-family: PayPal-Sans-Big,sans-serif;
    font-style: normal;
    letter-spacing: 0.025rem;
    text-decoration: none;
    color: #fff;
  }
  .switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
  margin-left: 5px;
  margin-right: 5px;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #3cc956;
}

input:focus + .slider {
  box-shadow: 0 0 1px #3cc956;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

#textBoxContainer {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 40px;
    margin-top: 16px;
    width: calc(100% - 12px);
    border: 4px solid #f1f1f1;
    border-radius: 5px;
    background: #ffffff;
    z-index: 0;
}

#stringValue {
    position: relative;
    border: none;
    padding-left: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    width: calc(100% - 12px);
    font-size: 15px;
    line-height: 1.8em;
    z-index: 1;
}

#resultContainer{
    margin: auto; 
    width: 1200px;
}

#searchButton{
    position: relative;
    margin-left: -50px;
    margin-right: 6px;
    margin-top: 4px;
    height: 40px;
    width: 40px;
    background-image: url("https://drive.google.com/thumbnail?id=17mfysypRNpul2wmnLLIH5u1N6ZtAoSeJ");
    background-color: Transparent;
    background-repeat:no-repeat;
    border: none;
    overflow: hidden;
    outline:none;
    float: right;
    z-index: 2;
    opacity: .5;
}

#searchTypeContainer{
    width: 33%;
    margin-left: 2%;
}

#searchTypeToggle{
    font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 500;
    color: white;
    line-height: 15px;
    text-align: center;
    background: none;
    height: 40px;
    border: 2px solid #f1f1f1;
    border-radius: 5px;
    margin-top: 20px;
    transition-duration: 0.8s;
}

#searchTypeToggle:hover, #searchTypeToggle:before{
    transition-duration: 0.2s;
    background: #f1f1f1 !important;
    color: #555555 !important;
}

#appTag{
    font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
	font-size: 4vw;
	font-style: normal;
	font-variant: normal;
	font-weight: 800;
    color: white;
    line-height: 75px;
    text-align: center;
    height: 80px;
    margin-right: 4%;
}

.tableLabel{
    font: bold italic 18pt Verdana, Geneva, sans-serif;
    padding-left: 8px;
}

*:focus {
    outline: none;
}

.input::-ms-clear {
    display: none;
}