@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf');
  }

body {
    margin: 0px 0px 0px 0px;
    font-family: "Roboto";
    min-width: 500px;
}

div {
    display: block;
}

.icon-panel {
    float: left;
    width: 50px;
    height: 100%;
    background-image: linear-gradient(to bottom, #79ceff 0%, #81c8ff 100%);
    text-align: center;
    -webkit-box-shadow: inset 0px 0px 2px 0px #000000;
    box-shadow:         inset 0px 0px 2px 0px #000000;
}

.logo-icon {
    width: 36px;
    height: 36px;
    margin: 7px;
    background-image: url("../images/emblem.svg");
    background-repeat: no-repeat;
    background-position: top;
    display: block;
    border-radius: 100%;
}

.explorer-pane {
    width: 100%;
    height: 100%;
    background-color: gray;
}

.explorer-nav {
    background-color: rgb(225, 247, 255);
    height: 2.5rem;
    width: calc(100% - 50px);
    float: right;
    -webkit-box-shadow: inset 0px 0px 2px 0px #000000;
    box-shadow:         inset 0px 0px 2px 0px #000000;
}

.explorer-nav-download {
    width: 36px;
    height: 36px;
    margin: 7px;
    background-image: url("../images/download.svg");
    background-repeat: no-repeat;
    display: block;
    background-size: cover;
    position: absolute;
    bottom: 0px;
    cursor: pointer;
}

.explorer-nav-path {
    float: left;
    transform: translate(10px, 20%);
    background-color: white;
    -webkit-box-shadow: inset 0px 0px 2px 0px #000000;
    box-shadow:         inset 0px 0px 2px 0px #000000;
    border-width: 1px;
    border-style: solid;
    border-color: lightgray;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
}

.explorer-nav-path-button {
    padding-top: 3px;
    padding-bottom: 3px;
    display: inline-block;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.explorer-object-selected:hover {
    background-color: #303030;
}

.explorer-nav-path-button:hover {
    background-color: lightgray;
}

.explorer-object {
    font-size: large;
    display: block;
    padding-left: 5px;
    padding-top: 2px;
    padding-bottom: 2px;
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */
    -webkit-box-shadow: inset 0px 0px 1px 0px #000000;
    box-shadow:         inset 0px 0px 1px 0px #000000;
}

.explorer-object:hover {
    background-color: #C8C8C8;
}

.explorer-bg-1 {
    background-color: #F0F0F0;
}

.explorer-bg-2 {
    background-color: #E0E0E0;
}

.explorer-object-selected {
    background-color: #606060;
    color: white;
}

.explorer-object-selected:hover {
    background-color: #505050;
    color: white;
}

.explorer-file::before {
    content: "";
    background-image: url("/images/file.svg");
    background-size: 100%;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    float: left;
}

.explorer-folder::before {
    content: "";
    background-image: url("/images/folder.svg");
    background-size: 100%;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    float: left;
}

.explorer-nav-path-button::after {
    content: ">";
    padding-left: 5px;
    padding-right: 5px;
    /*background-color: lightblue*/;
}

#path-end::after {
    content: "";
    padding-left: 0px;
    padding-right: 0px;
}

.explorer-files {
    overflow-y: scroll;
    height: calc(100% - 2.5rem);
    width: 50%;
    float: left;
    background-color: #D8D8D8;
    
}

.info-pane {
    /*background-image: linear-gradient(to bottom, #c8e4ff 0%, #ffffff 100%);*/
    background-color: #F0F0F0;
    height: calc(100% - 2.5rem);
    width: calc(100% - 50% - 50px);
    float: right;
    overflow-y: scroll;
    -webkit-box-shadow: inset 0px 0px 2px 0px #000000;
    box-shadow:         inset 0px 0px 2px 0px #000000;
}

.info-content {
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5px;
}

.info-content h1 {
    text-align: center;
}

.info-content p {
    padding-left: 5px;
    line-height: 1.4em;
}

.info-content ul {
    padding-left: 20px;
}

.info-content ul li {
    list-style: upper-roman;
    line-height: 1.4em;
    padding-bottom: 7px;
}

.info-content a:link {
    text-decoration: none;
}

.context-menu {
    position: absolute;
    background-color: #F8F8F8;

    padding: 0px;
    margin: 0px;

    background-color: white;
    -webkit-box-shadow: inset 0px 0px 2px 0px #000000;
    box-shadow:         inset 0px 0px 2px 0px #000000;
    border-width: 1px;
    border-style: solid;
    border-color: lightgray;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 10px;

    min-width: 50px;
}

.context-menu ul {
    list-style: none;

    margin-top: 2px;
    margin-bottom: 2px;
    margin-left: 0px;
    margin-right: 0px;

    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 0px;
    padding-right: 0px;

}

.context-menu ul li {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.context-menu ul li:hover {
    border-radius: 20px;
    background-color: lightgray;
}

/* Chromium/webkit scrollbar */
/* width */
::-webkit-scrollbar {
    width: 0.7rem;

  }
  
/* Track */
::-webkit-scrollbar-track {
  display: none;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #808080; 
  border-radius: 3rem;
  box-shadow: inset 0 0 1px 1px #000000;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #707070; 
  border-radius: 3rem;
}

/* Handle on active */
::-webkit-scrollbar-thumb:active {
  background: #606060; 
  border-radius: 3rem;
}

/* Firefox scrollbar */
:root {
  scrollbar-color: #808080 #00000000 !important;
  scrollbar-width: thin !important;
}