body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

a:link,
a:visited {
  text-decoration: none;
  color: black;
}

/****** HEADER *****/

.header {
  height: 50px;
  background: grey;
  display: table;
  width: 100%;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  color: black;
}

.header div {
  height: 100%;
  display: table-cell;
}

.header .title {
  vertical-align: middle;
  width: 25%;
}

.header .title h1 {
  margin: 10px;
}

.header .content {
  vertical-align: middle;
  padding: 10px;
  position: relative;
}

.header .content .search {
  position: relative;
  display: block;
}

.header .content .search i {
  position: absolute;
  padding: 5px;
  color: #999;
}

.header .content .search i.clear {
  left: calc(30% + 32px);
  padding: 1px;
  margin: 4px;
}

.header .content .search i.clear:hover {
  background: #ddd;
  border-radius: 100%;
  cursor: pointer;
}

.header .content .search .filter-input {
  width: 30%;
  line-height: 24px;
  padding: 5px 32px;
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  outline: none;
}

.header .content .search .filter-input.focussed {
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.24);
}

.header .content .search .filter-input:hover {
  outline: none;
}

.header .links {
  vertical-align: middle;
  text-align: right;
  padding: 10px 20px;
  width: 5%;
}

.help-link {
  cursor: pointer;
}

.help-link:hover {
  text-decoration: underline;
}

/************ HEADAER END ************/

/************ CONTENT ************/

.content-holder {
  display: flex;
}

.content .sections .sizer {
  width: 0.1%;
}

.content {
  margin-top: 60px;
}

.content .sections {
  margin: auto;
  width: 98%;
}

.content .sections .section {
  margin-left: 5px;
  margin-right: 5px;
  box-sizing: border-box;
  width: 260px;
}

.content .sections .section.spacer {
  margin: 0;
  padding: 0;
  height: 1px;
}

.content .sections .section div {
  padding: 3px;
}

.content .sections .section div h3 {
  text-indent: -12px;
  font-size: 1em;
  line-height: 16px;
  margin: 0;
  padding: 3px 3px 3px 34px;
}

.content .sections .section ul {
  overflow: hidden;
  transition: height 0.2s;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.content .sections .section > ul {
  padding: 3px;
}

.content .sections .section > h3 {
  margin: 0;
  padding: 3px;
  text-align: center;
  font-weight: normal;
}

.content .sections .section ul > li a {
  font-size: 1em;
  background-repeat: no-repeat;
  padding: 3px 3px 2px 34px;
  display: block;
}

.content .sections .section ul > li {
  line-height: 22px;
}

.content .sections .section div ul > li {
  padding-left: 17px;
  line-height: 22px;
}

.content .sections .section ul > li.multi-link ul li {
  display: inline-block;
  padding-left: 0;
  min-width: 70px;
}

.content .sections .section ul > li.multi-link:hover {
  background-color: initial;
}

/************ CONTENT END************/

/************ THEMES ************/
.green {
  border: 1px solid green;
}

.green > h3 {
  background: darkgreen;
  color: #fff;
}

.green-link:hover {
  color: #fff;
  background: darkgreen;
}

.blue {
  border: 1px solid skyblue;
}

.blue > h3 {
  background: skyblue;
  color: #fff;
}
.blue-link:hover {
  color: #fff;
  background: skyblue;
}
.orange {
  border: 1px solid orange;
}
.orange > h3 {
  background: orange;
  color: black;
}
.orange-link:hover {
  color: #fff;
  background: orange;
}
.purple {
  border: 1px solid purple;
}
.purple > h3 {
  background: purple;
  color: #fff;
}
.purple-link:hover {
  color: #fff;
  background: purple;
}
.red {
  border: 1px solid red;
}
.red > h3 {
  background: red;
  color: #fff;
}
.red-link:hover {
  color: #fff;
  background: red;
}
.magenta {
  border: 1px solid magenta;
}
.magenta > h3 {
  background: magenta;
  color: white;
}
.magenta-link:hover {
  color: white;
  background: magenta;
}
.darkblue {
  border: 1px solid darkblue;
}
.darkblue > h3 {
  background: darkblue;
  color: #fff;
}
.darkblue-link:hover {
  color: #fff;
  background: darkblue;
}
.brown {
  border: 1px solid brown;
}
.brown > h3 {
  background: brown;
  color: #fff;
}
.brown-link:hover {
  color: #fff;
  background: brown;
}
.grey {
  border: 1px solid grey;
}
.grey > h3 {
  background: grey;
  color: #fff;
}
.grey-link:hover {
  color: #fff;
  background: grey;
}
.black {
  border: 1px solid black;
}
.black > h3 {
  background: black;
  color: #fff;
}
.black-link:hover {
  color: #fff;
  background: black;
}
.royalblue {
  border: 1px solid royalblue;
}
.royalblue > h3 {
  background: royalblue;
  color: #fff;
}
.royalblue-link:hover {
  color: #fff;
  background: royalblue;
}
/************ THEMES END ************/

.collapsable {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.arrow.rotate {
  transform: rotate(90deg);
}

ul.inner-list {
  display: none;
}

.ps-5 {
  padding-left: 10px !important;
}
