a:link, a:visited, a:hover, .link {
  color: none;
  background-color: none;
  text-decoration: none;
}

body {
  background-color: #15090a;
  font-family: "Open Sans";
  white-space: nowrap;
}

.explorer-base {
  position: absolute;
  width: 80vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1600px;
  height: 80vh;
  max-height: 1000px;
  display: flex;
  flex-direction: column;
  border-width: 1px;
  border-color: #ac4147;
  border-style: solid;
}

.explorer-top-bar {
  background-color: #ac4147;
  height: auto;
  padding: 2px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px;
}
.top-bar-item + .top-bar-item {
  padding-left: 7px;
}
.upper-nav-item:hover {
  background-color: #4d4d4d;
}
#File {
  background-color: #853238;
}
#File:hover {
  background-color: #a33d44;
}
.explorer-upper-nav {
  background-color: #000000;
  height: auto;
  display: flex;
  flex-direction: row;
}
.upper-nav-item {
  font-size: 14px;
  color: #ffffff;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 3px;
  padding-bottom: 3px;
}
.explorer-lower-nav {
  background-color: #191919;
  height: 40px;
  display: flex;
  flex-direction: row;
  padding: 3px;
}
#back-forward:hover {
  filter: opacity(50%);
  transition: 500ms;
}
.lower-nav-urlbar {
  margin: 5px;
  width: 100%;
  border-width: 1px;
  border-color: #535353;
  border-style: solid;
  background-color: transparent;
  color: white;
  padding: 5px;
  text-align: center left;
  display: flex;
  flex-direction: row;
}
.lower-nav-searchbar {
  margin: 5px;
  width: 15%;
  border-width: 1px;
  border-color: #535353;
  border-style: solid;
}
.lower-nav-urlbar:focus {
  outline: none;
}
.explorer-main-window {
  flex: 1;
  display: flex;
  flex-direction: row;
  min-height: 0;
}
.explorer-side-nav {
  background-color: #191919;
  width: 300px;
  overflow: auto;
}
.side-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.side-nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #ffffff;
  margin-top: 16px;
  padding-top: 4px;
  padding-bottom: 4px;
  width: 100%;
  margin-right: 4px;
}

.side-nav-menu-item {
  display: flex;
  align-items: center;
  padding-left: 35px;
  padding-top: 2px;
  padding-bottom: 2px;
  width: 100%;
  margin-right: 4px;
}
.side-nav-menu-item:hover {
  background-color: #4d4d4d;
}
.side-nav-menu:hover {
  background-color: #4d4d4d;
}
.side-nav-caret {
  opacity: 0%;
  transition-duration: 1000ms;
}
.explorer-side-nav:hover .side-nav-caret {
  opacity: 70%;
  transition-duration: 400ms;
}
.explorer-content {
  background-color: #202020;
  width: 100%;
  border-left: 2px solid #2b2b2b;
  display: flex;
  flex-direction: column;
  padding: 5px;
  font-size: 22px;
  height: 100%;
  overflow: auto;
}

.explorer-bottom-bar {
  background-color: #333333;
  height: 30px;
}
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #2b2b2b;
  margin: 1em 0.5em;
  padding: 0;
  width: 100%;
}
