@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  /*Drgable */
  /*Resizeable*/
  /*NOSELECT*/
}
body a {
  text-decoration: none;
  color: black;
}
body a:hover {
  color: red;
}
body .wrapper {
  padding: 1em;
}
body .wrapper ul {
  list-style: none;
  cursor: pointer;
  padding: 1em;
}
body .wrapper ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
body .wrapper ul li .first:hover {
  color: red;
}
body .wrapper ul li .first:before {
  font-weight: bold;
}
body .wrapper ul li .second {
  font-size: 0.7em;
  font-style: italic;
}
body .wrapper ul li .second span {
  padding: 0.7em;
}
body .header .wrapper {
  display: flex;
  justify-content: space-between;
}
body .header .about-link {
  cursor: pointer;
}
body .header .about-link:hover {
  color: red;
}
body #recent-posts-content {
  border: 1px solid red;
  position: fixed;
  top: 4em;
  left: 60%;
  display: none;
}
@media (min-width: 701px) {
  body #recent-posts-content {
    height: 80vh;
    width: 30vw;
  }
}
@media (max-width: 700px) {
  body #recent-posts-content {
    position: fixed !important;
    top: 12% !important;
    bottom: 0% !important;
    left: 0% !important;
    right: 0% !important;
  }
}
body #recent-posts-content .items {
  padding: 1em;
  display: none;
  overflow: scroll;
  height: calc(100% - calc(10px + 1em));
}
body #recent-posts-content .items img {
  max-width: 100%;
}
body #recent-posts-content .items h1 {
  font-size: 1em;
}
body .close {
  position: absolute;
  top: -2px;
  left: 7px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
body .popup {
  z-index: 9;
  background-color: #fff;
  min-height: 150px;
  min-width: 300px;
  max-height: 100vh;
  max-width: 100vw;
}
body .popup {
  position: absolute;
  resize: both;
  overflow: hidden;
}
body .popup-header {
  padding: 10px;
  cursor: move;
  z-index: 10;
  background-color: red;
  color: #fff;
}
body .popup .resizer-right {
  width: 5px;
  height: 100%;
  background: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: e-resize;
}
body .popup .resizer-bottom {
  width: 100%;
  height: 5px;
  background: transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: n-resize;
}
body .popup .resizer-both {
  width: 5px;
  height: 5px;
  background: transparent;
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: nw-resize;
}
body .popup * {
  -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 */
}

/*# sourceMappingURL=custom.css.map */
