pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}
code.hljs {
  padding: 3px 5px;
} /*!Theme: GitHub | Description: Light theme as seen on github.com | Author: github.com | Maintainer: @Hirse | Updated: 2021-05-15 | Outdated base version: https://github.com/primer/github-syntax-light | Current colors taken from GitHub's CSS*/
.hljs {
  color: #24292e;
  background: #fff;
}
.hljs-doctag,
.hljs-keyword,
.hljs-meta .hljs-keyword,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-variable.language_ {
  color: #d73a49;
}
.hljs-title,
.hljs-title.class_,
.hljs-title.class_.inherited__,
.hljs-title.function_ {
  color: #6f42c1;
}
.hljs-attr,
.hljs-attribute,
.hljs-literal,
.hljs-meta,
.hljs-number,
.hljs-operator,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-id,
.hljs-variable {
  color: #005cc5;
}
.hljs-meta .hljs-string,
.hljs-regexp,
.hljs-string {
  color: #032f62;
}
.hljs-built_in,
.hljs-symbol {
  color: #e36209;
}
.hljs-code,
.hljs-comment,
.hljs-formula {
  color: #6a737d;
}
.hljs-name,
.hljs-quote,
.hljs-selector-pseudo,
.hljs-selector-tag {
  color: #22863a;
}
.hljs-subst {
  color: #24292e;
}
.hljs-section {
  color: #005cc5;
  font-weight: 700;
}
.hljs-bullet {
  color: #735c0f;
}
.hljs-emphasis {
  color: #24292e;
  font-style: italic;
}
.hljs-strong {
  color: #24292e;
  font-weight: 700;
}
.hljs-addition {
  color: #22863a;
  background-color: #f0fff4;
}
.hljs-deletion {
  color: #b31d28;
  background-color: #ffeef0;
}
:root {
  --b-font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --b-font-mono: Consolas, Monaco, monospace;

  --b-txt: #475569;
  --b-bg-1: #f5f5f5;
  --b-bg-2: #eceff4;
  --b-line: #eceff4;
  --b-link: #164e63;
  --b-link-hover: #0e7490;
  --b-btn-bg: #242933;
  --b-btn-txt: #fff;
  --b-focus: #0e7490;

  --layout-gap: 20px;
}
body {
  max-width: 100vw;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}
body.show-menu {
  overflow: hidden;
}
body.show-menu .mobile-menu,
body.show-menu div.overlay {
  display: flex;
}

/** Layout **/
.wrapper {
  flex: 1 auto;
}
.container {
  width: 1100px;
  margin: 0 auto;
  max-width: 100%;
}
.layout {
  display: grid;
  grid-template-columns: 240px 2fr 1fr;
  grid-gap: var(--layout-gap);
}
.layout > * {
  padding: var(--layout-gap) 0 0;
}

.layout.two-right {
  grid-template-columns: minmax(0, 2fr) 320px;
}
.layout.two-left {
  grid-template-columns: 240px 2fr;
}

.layout .fixed-sidebar {
  position: sticky;
  top: Calc(59px + var(--layout-gap));
}

/** Common **/
.text-center {
  text-align: center;
}
.flex {
  display: flex;
  gap: var(--layout-gap);
}

a:focus {
  box-shadow: none;
}
a:hover {
  color: var(--b-link-hover);
}
button {
  line-height: 1;
}
input,
select,
textarea {
  line-height: 1.5;
  background: #f8fafc;
}
.scroll,
.detail pre code {
  overflow: auto;
}
.scroll::-webkit-scrollbar-track,
.detail pre code::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: transparent;
}
.scroll::-webkit-scrollbar-thumb,
.detail pre code::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #ccc;
}
.scroll::-webkit-scrollbar-corner,
.detail pre code::-webkit-scrollbar-corner {
  background-color: transparent;
  border-color: transparent;
}
.scroll::-webkit-scrollbar,
.detail pre code::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: transparent;
}

.btn {
  margin: 0;
  padding: 0.5rem 0.75rem;
  max-width: 100%;
  background: var(--b-bg-2);
  border: 0;
  border-radius: 0.25rem;
  font: inherit;
  line-height: 1.125;
  color: var(--b-txt);
  -webkit-appearance: button;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  background: var(--b-btn-bg);
  color: var(--b-btn-txt);
  border: 0;
  cursor: pointer;
  transition: opacity 0.25s;
}
.btn:hover {
  opacity: 0.75;
}
a.btn:hover {
  color: var(--b-btn-txt);
  text-decoration: none;
}

.btn.danger,
button.danger {
  background: rgb(213 33 50);
}
.link-icon {
  display: flex;
}
.link-icon svg {
  margin-right: 5px;
}
.box {
  border-radius: 0.25rem;
  background: #fff;
  padding: var(--layout-gap);
  border: 1px solid var(--b-line);
  margin-bottom: var(--layout-gap);
}
.box.full {
  padding: 0;
  overflow: hidden;
}
.box .head {
  line-height: 1;
  margin-bottom: 1rem;
}
.box-content {
  padding: var(--layout-gap);
}
.box-content > *:last-child {
  margin-bottom: 0;
}

.box > * {
  margin-top: 0;
  margin-bottom: var(--layout-gap);
}
.box > *:last-child {
  margin-bottom: 0;
}
.box .header {
  margin: 0 0 20px 0;
}
.page-desc {
  margin-top: var(--layout-gap);
}
.multi-checkbox {
  background: #f6f8fa;
  border-radius: 0.25rem;
  padding: 0;
  margin-top: 5px;
  max-height: 230px;
  border: 15px solid #f6f8fa;
  border-right-width: 5px;
}
.multi-checkbox .name {margin-left: 8px}
/** Main nav **/
a.logo {
  width: 48px;
  height: 48px;
  margin-right: 10px;
  display: flex;
}
header {
  background: #fff;
  border-bottom: 1px solid var(--b-line);
  position: sticky;
  top: 0;
  z-index: 9;
}
footer {
  background: #fff;
  padding: var(--layout-gap);
}
footer p {
  margin: 20px 0 0;
  text-align: center;
}
footer ul.links {list-style: none;margin: .5em 0;padding: 0;text-align: center;}
footer ul.links li {display: inline-block;margin-right: 5px;}
nav.main {
  display: flex;
  align-items: center;
  padding: 0;
}
nav.main ul {
  list-style: none;
  padding: 0;
  flex-grow: 1;
  display: flex;
  margin: 0;
  justify-content: flex-end;
}
nav.main ul li {
  display: inline-block;
  position: relative;
}
nav.main ul li a {
  display: inline-block;
  padding: 16px 20px;

  font-weight: 600;
}

nav.main ul li a:hover {
  text-decoration: none;
  color: var(--b-link-hover);
}
nav.main ul li ul.sub {
  position: absolute;
  background: #fff;
  right: 0;
  z-index: 9;
  display: none;
  top: 50px;
  width: 200px;
  border-radius: 0.25rem;
  box-shadow: 0 0 2px 0 rgb(34 47 62 / 20%), 0 4px 8px 0 rgb(34 47 62 / 15%);
  overflow: hidden;
}
nav.main ul li ul.sub li {
  display: block;
}
nav.main ul li ul.sub li a {
  padding: 6px 15px;
  height: inherit !important;
  font-weight: 400;
  display: block;
}
nav.main ul li:hover ul.sub {
  display: flex;
  flex-direction: column;
}
nav.main ul li ul.sub li a:hover {
  background: #242933;
  color: #fff;
}
nav.main .user-menu {
  display: flex;
  justify-content: space-between;
  position: relative;
}
nav.main .user-menu i {
  width: 16px;
  cursor: pointer;
  padding: 16px 0;
  margin-right:5px;
}
nav.main ul li .user-menu a {
  padding-right: 0;
  display: block;
  padding-left: 5px;
}
nav.main .user-menu .avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: block;
}
nav.main .user-menu .avatar.none svg {
  padding: 0;
  width: 24px;
}
nav.main ul.sub li a {
  padding: 5px 10px;
}
.search-btn i {
  width: 24px;
}
.menu-trigger {
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  display: none;
  margin-bottom: 0;
}
.menu-trigger i {
  width: 32px;
  font-size: 24px;
}
.menu-trigger.menu-close [class^="fa-"]:before {
  width: 32px;
  height: 32px;
}
.mobile-menu {
  width: 320px;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  bottom: 0;
  flex-direction: column;
  padding: var(--layout-gap);
  z-index: 10;
  display: none;
  gap: 10px;
  overflow: auto;
  padding-top: 0;
}
.mobile-menu h2 {
  margin: 0;
  font-size: 1.2rem;
}
.menu-topics {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  gap: 5px;
}

div.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 0 0 / 68%);
  z-index: 9;
  display: none;
}

.menu-head {
  position: sticky;
  top: 0;
  font-weight: 700;
  font-size: 1.6rem;
  z-index: 11;
  background: #fff;
  padding: 10px 0;
  color: var(--b-link);
}
label.menu-close {
  position: absolute;
  right: 0;
  top: 10px;
  margin: 0;
}
nav.main ul li.search-mobile {
  display: none;
}

/** Search form **/
.search-form {
  display: flex;
  background: var(--b-bg-2);
  color: var(--b-txt);
  border-radius: 0.25rem;
  width: 330px;
  height: 38px;
  overflow: hidden;
}
.search-form:focus-within {
  box-shadow: 0 0 0 2px var(--b-focus);
}
.search-form input:focus {
  box-shadow: none;
}
.search-form > * {
  background: transparent;
  color: inherit;
  box-shadow: none;
  transition: background 0.1s;
}

.search-form button:hover,
.search-form select:hover {
  border-radius: 0;
}

/** Message **/
ul.messages {
  margin: 0;
  list-style: none;
  padding: 0;
  margin-bottom: var(--layout-gap);
}
ul.messages li {
  background: rgb(243, 242, 241);
  color: rgb(50, 49, 48);
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 0.25rem;
  font-size: 0.9rem;
}
ul.messages li:last-child {
  margin-bottom: 0;
}
ul.messages .success {
  background: rgb(223, 246, 221);
}
ul.messages .warn {
  background: rgb(255, 244, 206);
}
ul.messages .danger {
  background: rgb(254, 217, 204);
}
ul.messages .error {
  background: rgb(253, 231, 233);
}
/** Post compose **/
.save-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}

.save-actions > label {
  line-height: 34px;
  height: 34px;
}

/** Login */
.login {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--layout-gap);
}

.login h1 {
  margin: 0;
}

.login ul.socials {
  list-style: none;
  padding: 0;
}
.login ul.socials li a {
  display: block;
  text-decoration: none;
  margin-bottom: 0.5em;
}
.login ul.socials li a:hover {
  color: #fff;
}

.login ul.socials li a i {
  font-size: 1.2em;
}

/** Post detail **/
.detail .post-name {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 800;
}
.detail img {
  margin: auto;
  display: block;
}
.detail img.featured-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.detail pre {
  background: #f6f8fa;
  overflow: hidden;
  max-width: 100%;
  position: relative;
}
.detail > *:last-child {
  margin-bottom: 0;
}
.detail pre code[data-language] {
  display: block;
  position: relative;
  background: transparent;
  padding: 0.5rem 0;
}
.detail pre[data-language]:before {
  content: attr(data-language);
  position: absolute;
  right: 0;
  top: 0;
  display: inline-block;
  border-radius: 0.25rem;
  background: var(--b-bg-2);
  padding: 3px 6px 5px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 0.9rem;
  line-height: 1.125;
  color: var(--b-txt);
}

/** Manage **/
ul.manage-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.manage-features li a {
  display: flex;
  text-decoration: none;
  width: 100%;
  padding: 10px 0;
}

ul.manage-features li [class^="fa-"]:before {
  font-size: 23px;
  margin-right: 10px;
  margin-left: 0;
}

/** Node list **/
.nodes-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nodes-list li:nth-child(2n + 1) {
  background: #f5f5f5;
}

.nodes-list li {
  padding: 10px 15px;
  border-radius: 0.25rem;
  display: flex;

  gap: var(--layout-gap);
}
.nodes-list li .name {
  flex-grow: 1;
  width: Calc(100% - 168px);
}
.nodes-list li .name .date {
  font-size: 0.9rem;
}

.nodes-list li > .info {
  text-align: left;
  font-size: 0.9rem;
  min-width: 120px;
  word-break: keep-all;
  flex-grow: 1;
}
.nodes-list li > .info .author {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.nodes-list .status {
  background: #ccc;
  font-size: 0.8rem;
  display: inline-block;
  padding: 0 5px 1px;
  border-radius: 0.25rem;
  margin: 0;
  color: rgb(50, 49, 48);
}
.nodes-list .status.error {
  background: rgb(253, 231, 233);
}
.nodes-list .status.success {
  background: rgb(223, 246, 221);
}

/** Image upload **/
input.image-input[type="file"] {
  display: none;
}
.image-upload-previewer {
  background: #f6f8fa;
  margin-top: 5px;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23eceff4" d="M8.5,13.5L11,16.5L14.5,12L19,18H5M21,19V5C21,3.89 20.1,3 19,3H5A2,2 0 0,0 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19Z" /></svg>');
  justify-content: center;
  align-items: center;
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
  cursor: pointer;
  position: relative;
  height: 200px;
}
.image-upload-previewer img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}
.image-upload-previewer img[src=""] {
  display: none;
}

/** Paginate **/
ul.paginate {
  margin: var(--layout-gap) 0;
  padding: 0;
  list-style: none;
  display: block;
  gap: 10px;
  text-align: center;
}
ul.paginate li {
  display: inline-block;
}

ul.paginate a {
  width: 132px;
  height: 32px;
  text-decoration: none;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 0.25rem;
  border: 2px solid var(--b-bg-2);
}

ul.paginate a:hover {
  background: var(--b-bg-2);
}
ul.paginate a.prev:before {
  content: "←\00a0";
}
ul.paginate a.next:after {
  content: "\00a0→";
}

/** Article list **/
.article-list article {
  margin-bottom: var(--layout-gap);
  position: relative;
  padding: 0;
  overflow: hidden;
  border: none;
  outline: 2px solid var(--b-bg-1);
}

.article-list article * {
  margin: 0;
}

.article-list article h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.article-list article a.overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  margin: 0;
  z-index: 1;
}
.article-list article:focus-within,
.article-list article:hover {
  outline: 2px solid var(--b-link-hover);
}
article .bg {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-bottom: 42%;
  background-size: cover;
  background-position: center center;
  text-indent: -999999999999px;
  margin-bottom: 0;
  position: relative;
  background-image:url('/live/oe_/https://youbbs.org/static/images/placeholder-blank_100.jpg')
}
article a {
  position: relative;
  z-index: 2;
}
.meta {
  font-size: 0.8rem;
  line-height: 1.4;
  gap: 10px;
}
.avatar {
  display: block;
  width: 32px;
}
.avatar img {
  border-radius: 50%;
  margin-top: 2px;
}
.avatar.none {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23eceff4" d="M12,19.2C9.5,19.2 7.29,17.92 6,16C6.03,14 10,12.9 12,12.9C14,12.9 17.97,14 18,16C16.71,17.92 14.5,19.2 12,19.2M12,5A3,3 0 0,1 15,8A3,3 0 0,1 12,11A3,3 0 0,1 9,8A3,3 0 0,1 12,5M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12C22,6.47 17.5,2 12,2Z" /></svg>');
}
.profile .avatar {
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto 20px;
}
.author {
  font-weight: 500;
}
article a:hover {
  text-decoration: none;
}
article .info {
  margin: 0.5rem 42px 0;
}
.tags a {
  display: inline-block;
  padding: 3px 5px;
  background: #f8fafc;
  font-size: 0.8rem;
  border-radius: 0.25rem;
}
.tags a:before {
  content: "#";
}
.tags a:hover {
  background: #f1f5f9;
}
.tags {
  display: flex;
  gap: 10px;
}
.likes {cursor: pointer;}
article.detail .tags {
  margin-bottom: 20px;
}
article .actions {
  margin-top: 12px;
  text-align: right;
}
article .stat {
  gap: 10px;
}
article .stat > * {
  display: flex;
  margin: 4px 0;
  align-items: center;
  justify-content: center;
}
article h4 {
  margin: 0 0 0.5rem;
}

.posts-list > article {
  margin-bottom: var(--layout-gap);
}
.posts-list > article h4 {font-weight: normal;}
.posts-list.manage > article {
  border-bottom: 1px solid var(--b-bg-2);
  padding-bottom: var(--layout-gap);
}
.posts-list > article:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
article .pos {
  display: inline-block;
  margin-right: 5px;
  background: var(--b-bg-1);
  padding: 0 6px;
  border-radius: 0.25rem;
  font-weight: normal;
}
article .pos:before {
  content: "#\00a0";
}

/** Topics **/
.list-none {list-style: none;margin: 0;padding: 0;}
.topics {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.topics a {
  display: block;
}

.menu-topics a:before, .topics a:before {
  content: "#\00a0";
}

.menu-topics li a:before, .topics li a:before {
  content: "";
}

.content p code:before {content: "`";}
.content p code:after {content: "`";}
/** Comment **/
.comments {
  margin: var(--layout-gap) 0;
}
.comments > div > div {
  width: 100%;
}
.comments > .comment > div {
  overflow: auto;
}
.comments > div .avatar {
  width: 30px;
  flex: none;
  height: 30px;
}
.comments > .comment {
  gap: 10px;
  border-bottom: 1px solid var(--b-bg-1);
  padding: 10px;
  margin-top: var(--layout-gap);
}
.comments .content {
  margin-top: 10px;
}
.comments .content > *:last-child {
  margin-bottom: 0;
}
.comments .author {
  font-weight: 700;
}
.comments .actions {
  margin-top: 10px;
  text-align: right;
}
.comments button {
  margin-top: 10px;
}

/** Profile **/
.user-attrs {
  justify-content: center;
  align-items: center;
}
.user-attrs > span {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
}
.user-attrs > span svg {
  width: 22px;
  height: 22px;
}
.bio {
  max-width: 500px;
  margin: auto;
  text-align: center;
}
.bio p {
  margin-bottom: 0;
}

/*shader*/
.shader {
  backface-visibility: hidden;
  position: relative;
  display: block;
  overflow: hidden;
}
.mask, .mask::after, .mask::before, .specular, .specular::after {
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.specular {
  z-index: 100;
  mix-blend-mode: color-dodge;
  background-color: #000;
  background-position: top center;
  background-repeat: no-repeat;
  mix-blend-mode: color-dodge;
  background-attachment: fixed;
  background-image: linear-gradient(179deg,#000 40%,red,orange,#fff 60%,#000 80%);
}
.mask {
  mix-blend-mode: multiply;
  background-color: #fff;
  background-size: cover;
  background-image: url(/live/oe_/https://youbbs.org/static/images/pinelake_mask.jpeg);
}

/** Editor **/
.editor-toolbar button {color: var(--b-txt)}
.mely-editor {
  position: relative;
  border: 1px solid var(--b-line);
  border-radius: 0.25rem;
  transition: all 0.2s;
  max-width: 100%;
  padding: 5px;
  background: #fff;
  margin-bottom: 20px;}
.mely-editor.focused {
  border-color: rgb(89, 164, 222);
  box-shadow: rgb(0 116 204 / 15%) 0px 0px 0px 4px;
  outline: 0;
}
.mely-editor *:focus {
  outline: none;
  box-shadow: none;
}
.mely-editor-content {
  min-height: 500px;
  padding: 0;
  border-radius: 5px;
  position: relative;
  background: #fff;
}
.CodeMirror, .CodeMirror-scroll {
  min-height: 480px;
}
.clicks {
  font-weight: normal;
  background-color: #e8eaee;
  top: -1px;
  color: #8c94aa;
  position: relative;
  margin-left: 4px;
  margin-right: 4px;
  border: none;
  padding: 3px 5px;
  vertical-align: middle;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  border-radius: 10px;
}
/*font icon */
.fa-link-ext:after {
  font-family: "youbbs";
  font-style: normal;
  font-weight: normal;
  speak: never;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  opacity: .8;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .4em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.fa-link-ext:before {display: none}
.fa-link-ext:after { content: '\f08e'; font-size: .8em}

@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .left {
    display: none;
  }
  .layout.two-left .left {
    display: block;
  }
  .layout {
    grid-template-columns: 2fr 320px;
  }
  nav.main {
    padding: 0 20px;
  }
  .menu-trigger {
    display: flex;
    margin-left: 0;
  }
  .user-attrs {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .layout {
    display: block;
  }
  .search-form {
    max-width: 280px;
    width: auto;
  }
  .layout.two-left .left {
    display: none;
  }
}
@media (max-width: 576px) {
  nav.main .search-form {
    display: none;
  }
  .search-form {
    margin: auto;
  }
  .user-menu {
    margin-right: 10px;
  }
  .user-menu i {
    display: none;
  }
  nav.main ul li a {
    padding: 16px 10px;
  }
  nav.main ul li.search-mobile {
    display: flex;
  }
  nav.main ul li.search-mobile a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
