/* bads.tm quickstart: modern design LITE
v2 | 2018-11-01
NOTE: MODIFIED for AWSM!!!
*/
input:focus {
    outline: none;
    border: none
}
/* highlight */
::selection {
  background: #00BCBF; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #00BCBF; /* Gecko Browsers */
}
/* scroll bar */
::-webkit-scrollbar {
    width: 15px
}
::-webkit-scrollbar-thumb,::-webkit-scrollbar-track {
    background-clip: padding-box;
    border-radius: 30px;
    border-style: solid;
    border-width: 3px;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,.4);
    border-color: transparent;
}
::-webkit-scrollbar-track {
    background-color: transparent;
    border-color: transparent
}
body::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: transparent;
}
body::-webkit-scrollbar {
    width: 15px;
    background-color: rgba(0, 0, 0, 0.85);
}
/* links */
a {
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #fff;
  text-decoration: underline;
   /* no underline for links*/
}
/* input */
.lvui-searx {
  margin: 0 auto;
  box-shadow: 0px 0px 40px #000;
  background-color: #000000cc;
  width: 76%;
  padding-bottom: 5px;
}

.account{
  position: absolute;
  right: 11px;
}

/* dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    min-width: 165px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
    top: 37px;
    background-color: #000000b3;
}

.dropdown-content a {
    color: black;
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {background-color: rgba(255, 255, 255, 0.1); color: #fff;}

.show {display: block;}
