﻿.wr-navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "branding left right";
  width: 100%;
  height: 100%;
  grid-gap: 2rem;
}
.wr-navbar-anon {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "branding login";
  width: 100%;
  height: 100%;
  grid-gap: 2rem;
}
.wr-nav-area {
  display: inline-table;
  height: 100%;
  vertical-align: middle;
}
.wr-nav-item {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  padding-right: 0.5rem;
}
.wr-nav-branding {
  display: inline-table;
  grid-area: branding;
  vertical-align: middle;
  height: 100%;
}
.wr-nav-right {
  display: inline-table;
  grid-area: right;
  vertical-align: middle;
  height: 100%;
}
.wr-nav-login {
  display: inline-table;
  grid-area: login;
  vertical-align: middle;
  height: 100%;
}
.wr-nav .-left {
  display: inline-table;
  grid-area: left;
  vertical-align: middle;
  height: 100%;
}
.wr-nav-menubutton {
  display: none;
  grid-area: menu;
  vertical-align: middle;
  height: 100%;
}
.wr-nav-link {
  display: table-cell;
  vertical-align: middle;
  color: #646464;
}
.wr-nav-link:hover {
  color: black !important;
  text-decoration: none;
}
.wr-nav-link-nocolor {
  display: table-cell;
  vertical-align: middle;
  opacity: 0.7;
}
.wr-nav-link-nocolor:hover {
  text-decoration: none;
  opacity: 1;
}
.wr-nav-breadcrumb {
  font-size: 0.8rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 10rem;
  padding-right: 0.2rem;
}

@media only screen and (max-width: 640px) {
  .t42-mobile-frame {
    position: absolute;
    width: 320px;
    top: 0;
    bottom: 0;
  }
  .t42-mobile-frame-hidden {
    left: -320px;
    display: none;
  }
  .t42-mobile-frame-visible {
    left: 0px;
    display: block;
  }
}
@media only screen and (max-width: 640px) {
  .wr-navbar {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "branding empty menu";
  }

  .wr-nav-right {
    display: none;
  }

  .wr-nav-left {
    display: none;
  }

  .wr-nav-menubutton {
    display: inline-table;
  }

  .wr-nav-breadcrumb {
    max-width: 5rem;
  }
}
.wr-left-menu-container {
  background-color: white;
  position: fixed;
  top: 50px;
  left: -320px;
  width: 320px;
  bottom: 40px;
  overflow-y: auto;
  transition: left 0.5s;
  border-right: solid 1px gray;
  z-index: 1000;
}

.wr-left-menu-container-expanded {
  left: 0px;
  transition: left 0.5s;
}

.wr-left-menu-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.wr-left-menu-close {
  color: black;
  font-size: 2rem;
}

.wr-left-menu-close:hover {
  color: black !important;
  text-decoration: none;
}

.t42-comment {
  max-width: 100%;
  display: grid;
  grid-template-areas: "icon comment menu" "reply reply reply";
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  padding: 10px;
}
.t42-comment:hover .t42-comment-menu-button-display {
  display: block;
}
.t42-comment-thumbnail {
  grid-area: icon;
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
}
.t42-comment-area-display {
  grid-area: comment;
  min-width: 320px;
  overflow-wrap: break-word;
}
.t42-comment-area-edit {
  grid-area: comment;
  display: none;
}
.t42-comment-area-new {
  padding: 10px;
  grid-area: comment;
}
.t42-comment-area-owner {
  font-weight: bold;
}
.t42-comment-area-text {
  padding: 10px;
  background-color: gainsboro;
  color: Rgb(20, 20, 20);
  border-radius: 0.5rem;
}
.t42-comment-area-reply {
  grid-area: reply;
  width: 100%;
}
.t42-comment-area-reply:empty {
  display: none;
}
.t42-comment-area-footer {
  display: flex;
  flex-flow: row;
  align-items: center;
}
.t42-comment-area-footer-button {
  padding-right: 1rem;
  cursor: pointer;
}
.t42-comment-area-footer-text {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 1rem;
}
.t42-comment-area-editor {
  background-color: #c8c8c8;
  outline: none;
  border: none;
  width: 100%;
  height: 10rem;
}
.t42-comment-area-new-editor {
  background-color: #c8c8c8;
  color: #141414;
  outline: none;
  border: none;
  width: 100%;
  height: 3rem;
}
.t42-comment-area-new-editor:focus {
  height: 10rem;
}
.t42-comment-menu-button {
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
  margin-left: 10px;
}
.t42-comment-menu-button-display {
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0.5;
}
.t42-comment-menu-button-display:hover {
  display: block;
  opacity: 1;
}

.t42old-popup {
  background-color: Rgb(250, 250, 250);
  border-radius: 0.5rem;
  box-shadow: 1px 1px 6px 1px rgba(0, 0, 0, 0.4);
  position: absolute;
  padding: 0.5rem;
}
.t42old-popup-button {
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: relative;
  margin-left: 10px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.05);
  opacity: 0.4;
  transition: opacity ease-in-out 0.2s;
}
.t42old-popup-button:hover {
  display: block;
  opacity: 1;
  transition: opacity ease-in-out 0.2s;
}
.t42old-popup-show {
  display: block;
}
.t42old-popup-hide {
  display: none;
}
.t42old-popup > a {
  color: gray;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
  overflow: hidden;
  display: block;
}
.t42old-popup > a:visited {
  color: gray;
  text-decoration: none;
}
.t42old-popup > a:hover {
  color: gray;
  background-color: #f0f0f0;
  text-decoration: none;
}
.t42old-popup > a:focus {
  color: gray;
  text-decoration: none;
}
