@charset "UTF-8";
/********************************************************************************/
/* CSS Variables for Light/Dark Mode */
/********************************************************************************/
:root {
  --body-color: #222;
  --grey: #656565;
  --light-grey: #e4e4e4;
  --link-color: #709FCD;
  --button-color: #444;
  --background-color: #FFF;
  --logo-color: #4b7fb1;
  --logo-grey: #656565;
  --text-color: #222;
  --navbar-bg: #FFFFFF;
  --navbar-border: #656565;
  --content-header-bg: #F7F7F7;
  --sidebar-bg: #fcfcfc;
  --sidebar-border: #e4e4e4;
  --modal-bg: #FFF;
  --modal-header-bg: #FFF;
  --code-bg: #f5f5f5;
  --code-border: #ccc;
  --code-color: #333;
  --inline-code-bg: #FFF;
  --inline-code-color: #999;
  --inline-code-border: #DDDDDD;
  --blockquote-bg: #f7f7f7;
  --table-stripe: #FAFAFA;
  --dropdown-bg: #FFF;
  --offcanvas-bg: #5F686E;
  --table-bg: #f7f7f7;
  --profile-bg: #f7f7f7;
  --part-frame-border: #e4e4e4;
  --grid-overlay: rgba(0, 0, 0, 0.3);
  --input-bg: #ffffff;
  --input-border: #cccccc;
  --input-text: #555555;
  --input-focus-border: #66afe9;
  --input-placeholder: #999;
  --nav-link-hover: #555;
  --nav-link-active-bg: #FFFFFF;
  --nav-link-active-border: #ECA53D;
  --dropdown-bg: #FFF;
  --dropdown-hover-bg: #F7F7F7;
  --dropdown-text: #222;
  --dropdown-border: #ccc;
  --table-hover-bg: #F7F7F7;
  --button-bg: #FFF;
  --button-text: #444;
  --sidebar-heading-bg: #fcfcfc;
  --select2-bg: #FFF;
  --select2-hover-bg: #f1f1f1;
  --select2-text: #222;
  --select2-border: #777;
  --footer-bg: rgba(250, 250, 250, .95);
  --spinner-color: #656565;
  --theme-toggle-bg: rgba(0, 0, 0, 0.1);
  --theme-toggle-color: #656565;
  --theme-toggle-active-bg: #656565;
  --theme-toggle-active-color: #FFFFFF;
  --theme-toggle-hover-bg: rgba(0, 0, 0, 0.15);
  --theme-toggle-handle-bg: #FFFFFF;
  --theme-toggle-handle-active-bg: #FFFFFF;
  --theme-toggle-sun-color: #FFFFFF;
  --theme-toggle-moon-color: #1F2937;
  --notice-highlight-bg: #FCFCFC;
}

@media (prefers-color-scheme: dark) {
  :root {
    --body-color: #cbd5e1;
    --grey: #94a3b8;
    --light-grey: #374151;
    --link-color: #4a90e2;
    --button-color: #cbd5e1;
    --background-color: #141415;
    --logo-color: #60a5fa;
    --text-color: #cbd5e1;
    --navbar-bg: #141415;
    --navbar-border: #0f172a;
    --content-header-bg: #101011;
    --sidebar-bg: #17181a;
    --sidebar-border: #0f172a;
    --modal-bg: #17181a;
    --modal-header-bg: #17181a;
    --code-bg: #1f2937;
    --code-border: #0f172a;
    --code-color: #cbd5e1;
    --inline-code-bg: #1f2937;
    --inline-code-color: #94a3b8;
    --inline-code-border: #0f172a;
    --blockquote-bg: #1f2937;
    --table-stripe: #17181a;
    --dropdown-bg: #17181a;
    --offcanvas-bg: #101011;
    --table-bg: #101011;
    --profile-bg: #101011;
    --part-frame-border: #0f172a;
    --grid-overlay: rgba(0, 0, 0, 0.6);
    --input-bg: #17181a;
    --input-border: #1a1b1d;
    --input-text: #cbd5e1;
    --input-focus-border: #3b82f6;
    --input-placeholder: #94a3b8;
    --nav-link-hover: #94a3b8;
    --nav-link-active-bg: #17181a;
    --nav-link-active-border: #3b82f6;
    --dropdown-bg: #17181a;
    --dropdown-hover-bg: #1f2937;
    --dropdown-text: #cbd5e1;
    --dropdown-border: #0f172a;
    --table-hover-bg: #1f2937;
    --button-bg: #17181a;
    --button-text: #cbd5e1;
    --sidebar-heading-bg: #17181a;
    --select2-bg: #17181a;
    --select2-hover-bg: #1f2937;
    --select2-text: #cbd5e1;
    --select2-border: #0f172a;
    --footer-bg: rgba(23, 24, 26, .95);
    --spinner-color: #9ca3af;
    --theme-toggle-bg: rgba(0, 0, 0, 0.3);
    --theme-toggle-color: #9ca3af;
    --theme-toggle-active-bg: #374151;
    --theme-toggle-active-color: #FFFFFF;
    --theme-toggle-hover-bg: rgba(0, 0, 0, 0.4);
    --theme-toggle-sun-color: #FFFFFF;
    --theme-toggle-moon-color: #1F2937;
    --theme-toggle-handle-bg: #141415;
    --theme-toggle-handle-active-bg: #141415;
    --notice-highlight-bg: #1f2937;
  }
  .logo img {
    filter: brightness(1.3);
  }
}
[data-theme=dark] {
  --body-color: #cbd5e1;
  --grey: #94a3b8;
  --light-grey: #374151;
  --link-color: #4a90e2;
  --button-color: #cbd5e1;
  --background-color: #141415;
  --logo-color: #60a5fa;
  --logo-grey: #cbd5e1;
  --text-color: #cbd5e1;
  --navbar-bg: #141415;
  --navbar-border: #0f172a;
  --content-header-bg: #101011;
  --sidebar-bg: #17181a;
  --sidebar-border: #0f172a;
  --modal-bg: #17181a;
  --modal-header-bg: #17181a;
  --code-bg: #1f2937;
  --code-border: #0f172a;
  --code-color: #cbd5e1;
  --inline-code-bg: #1f2937;
  --inline-code-color: #94a3b8;
  --inline-code-border: #0f172a;
  --blockquote-bg: #1f2937;
  --table-stripe: #17181a;
  --dropdown-bg: #17181a;
  --offcanvas-bg: #101011;
  --table-bg: #101011;
  --profile-bg: #101011;
  --part-frame-border: #0f172a;
  --grid-overlay: rgba(0, 0, 0, 0.6);
  --input-bg: #17181a;
  --input-border: #1a1b1d;
  --input-text: #cbd5e1;
  --input-focus-border: #3b82f6;
  --input-placeholder: #94a3b8;
  --nav-link-hover: #94a3b8;
  --nav-link-active-bg: #17181a;
  --nav-link-active-border: #3b82f6;
  --dropdown-bg: #17181a;
  --dropdown-hover-bg: #1f2937;
  --dropdown-text: #cbd5e1;
  --dropdown-border: #0f172a;
  --table-hover-bg: #1f2937;
  --button-bg: #17181a;
  --button-text: #cbd5e1;
  --sidebar-heading-bg: #17181a;
  --select2-bg: #17181a;
  --select2-hover-bg: #1f2937;
  --select2-text: #cbd5e1;
  --select2-border: #0f172a;
  --footer-bg: rgba(23, 24, 26, .95);
  --spinner-color: #9ca3af;
  --theme-toggle-bg: rgba(0, 0, 0, 0.3);
  --theme-toggle-color: #9ca3af;
  --theme-toggle-active-bg: #374151;
  --theme-toggle-active-color: #FFFFFF;
  --theme-toggle-hover-bg: rgba(0, 0, 0, 0.4);
  --theme-toggle-sun-color: #FFFFFF;
  --theme-toggle-moon-color: #1F2937;
  --theme-toggle-handle-bg: #141415;
  --theme-toggle-handle-active-bg: #141415;
  --notice-highlight-bg: #1f2937;
}
[data-theme=dark] .logo img {
  filter: brightness(1.3);
}
[data-theme=dark] .offcanvas .navmenu-nav li a:hover,
[data-theme=dark] .offcanvas .navmenu-nav li a:focus {
  background-color: #1f2937;
  color: #FFF;
}
[data-theme=dark] .offcanvas .navmenu-nav li a:focus {
  outline: none;
}
[data-theme=dark] .offcanvas .nav > li > a:hover,
[data-theme=dark] .offcanvas .nav > li > a:focus {
  background-color: #1f2937;
  color: #FFF;
}
[data-theme=dark] .offcanvas .nav > li > a:focus {
  outline: none;
}
[data-theme=dark] .CodeMirror .CodeMirror-cursor {
  border-left-color: #cbd5e1;
}
[data-theme=dark] .CodeMirror .CodeMirror-selectedtext {
  background-color: #3b82f6;
  color: #fff;
}
[data-theme=dark] ::selection {
  background-color: #3b82f6;
  color: #fff;
}
[data-theme=dark] ::-moz-selection {
  background-color: #3b82f6;
  color: #fff;
}

[data-theme=light] {
  --body-color: #222;
  --grey: #656565;
  --light-grey: #e4e4e4;
  --link-color: #709FCD;
  --button-color: #444;
  --background-color: #FFF;
  --logo-color: #4b7fb1;
  --logo-grey: #656565;
  --text-color: #222;
  --navbar-bg: #FFFFFF;
  --navbar-border: #656565;
  --content-header-bg: #F7F7F7;
  --sidebar-bg: #fcfcfc;
  --sidebar-border: #e4e4e4;
  --modal-bg: #FFF;
  --modal-header-bg: #FFF;
  --code-bg: #f5f5f5;
  --code-border: #ccc;
  --code-color: #333;
  --inline-code-bg: #FFF;
  --inline-code-color: #999;
  --inline-code-border: #DDDDDD;
  --blockquote-bg: #f7f7f7;
  --table-stripe: #FAFAFA;
  --dropdown-bg: #FFF;
  --offcanvas-bg: #5F686E;
  --table-bg: #f7f7f7;
  --profile-bg: #f7f7f7;
  --part-frame-border: #e4e4e4;
  --grid-overlay: rgba(0, 0, 0, 0.3);
  --input-bg: #ffffff;
  --input-border: #cccccc;
  --input-text: #555555;
  --input-focus-border: #66afe9;
  --input-placeholder: #999;
  --nav-link-hover: #555;
  --nav-link-active-bg: #FFFFFF;
  --nav-link-active-border: #ECA53D;
  --dropdown-bg: #FFF;
  --dropdown-hover-bg: #F7F7F7;
  --dropdown-text: #222;
  --dropdown-border: #ccc;
  --table-hover-bg: #F7F7F7;
  --button-bg: #FFF;
  --button-text: #444;
  --sidebar-heading-bg: #fcfcfc;
  --select2-bg: #FFF;
  --select2-hover-bg: #f1f1f1;
  --select2-text: #222;
  --select2-border: #777;
  --footer-bg: rgba(250, 250, 250, .95);
  --spinner-color: #656565;
  --theme-toggle-bg: rgba(0, 0, 0, 0.1);
  --theme-toggle-color: #656565;
  --theme-toggle-active-bg: #656565;
  --theme-toggle-active-color: #FFFFFF;
  --theme-toggle-hover-bg: rgba(0, 0, 0, 0.15);
  --theme-toggle-handle-bg: #FFFFFF;
  --theme-toggle-handle-active-bg: #FFFFFF;
  --theme-toggle-sun-color: #FFFFFF;
  --theme-toggle-moon-color: #1F2937;
  --notice-highlight-bg: #FCFCFC;
}

/*
$button-hover-color: #e6e6e6;
$button-hover-color: #F7F7F7;
*/
/********************************************************************************/
/* Mixins */
/********************************************************************************/
/* Main styles */
a, a:hover, .btn-link {
  color: #CE6E3E;
  color: #4B7FB1;
  color: #DC5A40;
  color: #4B7FB1;
  color: #128ee9;
  color: var(--link-color);
  text-decoration: none;
  font-weight: 400;
}

a:hover, .btn-link:hover, .btn-link:focus {
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-transform: translateZ(0px);
}

a.large {
  font-family: HelveticaNeue-Light, "Helvetica Neue Light", "Open Sans";
  font-family: "Bree Serif";
  font-family: "Open Sans", Montserrat, "Bree Serif", HelveticaNeue-Light, "Helvetica Neue Light", "Open Sans", Helvetica, Arial;
  letter-spacing: -0.05em;
  font-weight: 400;
  font-size: 22px;
}

[class*=icon-]:before, .btn [class*=icon-]:before {
  color: #777;
  font-size: 20px;
  font-style: normal;
  vertical-align: -20%;
  line-height: 1em;
}

a [class*=icon-]:before, .btn [class*=icon-]:before {
  color: #777;
  display: inline-block;
}

a:hover [class*=icon-]:before, .btn:hover [class*=icon-]:before {
  opacity: 0.7;
}

.btn-social [class*=icon-]:before, .btn-social:hover [class*=icon-]:before {
  color: #FFFFFF;
}

#homepage .marketing [class*=icon-]:before {
  color: #333;
  font-size: 56px;
}

/*
.post_type [class*="icon-quad"]:before { font-size: 45px; font-style: normal; line-height: 45px; vertical-align: middle; }
.post_type .icon-quad { margin-right: 10px; }
*/
#top [class*=icon-]:before {
  font-size: 22px;
}

#top a [class*=icon-]:before {
  color: #BBB;
  color: #655B5B;
}

#top a:hover [class*=icon-]:before {
  color: #EEE;
  color: #AAA;
}

.content-edit [class*=icon-]:before {
  font-size: 20px;
}

/************************************************
*	Body									
************************************************/
html, body {
  color: #818486;
  color: #444444;
  color: var(--text-color);
  -webkit-text-size-adjust: none;
  height: 100%;
  font-size: 16px;
}

* {
  margin: 0;
}

blockquote {
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  blockquote {
    font-size: calc(14px + 2 * (100vw - 400px) / 1800);
  }
}
@media screen and (min-width: 2200px) {
  blockquote {
    font-size: 16px;
  }
}
blockquote {
  background-color: var(--blockquote-bg);
}

body {
  font-family: "Open Sans", Helvetica, Arial;
  font-weight: 300;
}
body {
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  body {
    font-size: calc(14px + 2 * (100vw - 400px) / 1800);
  }
}
@media screen and (min-width: 2200px) {
  body {
    font-size: 16px;
  }
}
body {
  line-height: 1.8;
  background-color: var(--background-color);
}
body .content-container {
  margin-left: 15px;
  margin-right: 15px;
}
@media screen and (min-width: 900px) {
  body .content-container {
    margin-left: calc(15px + 385 * (100vw - 900px) / 1200);
    margin-right: calc(15px + 385 * (100vw - 900px) / 1200);
  }
}
@media screen and (min-width: 2100px) {
  body .content-container {
    margin-left: 400px;
    margin-right: 400px;
  }
}
body .content-container {
  position: relative;
  width: auto;
}
body code {
  padding: 0;
  color: var(--code-color);
  padding: 3px;
  border: 1px solid var(--code-border);
  border-radius: 4px;
  background-color: var(--code-bg);
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
body pre {
  margin: 0 0 10px 40px;
}
body pre code {
  border: none;
  padding: 0px;
}
body .inline-code {
  font-size: 100%;
  padding: 0;
  background: var(--inline-code-bg);
  color: var(--inline-code-color);
  border: 1px solid var(--inline-code-border);
  border-radius: 0;
  padding: 2px 6px;
}
body .offcanvas-wrapper {
  min-height: 100%;
  overflow: hidden;
  position: relative;
}
body .wrapper {
  min-height: 100%;
  padding-bottom: 50px;
  margin-top: 65px;
}
body .badge {
  background-color: #d23f31;
}
body .dropdown-menu {
  width: 185px;
  border-radius: 0px;
  border: 1px solid var(--dropdown-border);
  background-color: var(--dropdown-bg);
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-transform: translateZ(0px);
}
body .dropdown-menu .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #d23f31;
  position: absolute;
  left: 9px;
  top: 15px;
}
body .dropdown-menu.fade {
  display: block;
  opacity: 0;
  pointer-events: none;
}
body .dropdown-menu li a {
  color: var(--dropdown-text);
}
body .dropdown-menu li a:hover {
  background-color: var(--dropdown-hover-bg);
  color: var(--dropdown-text);
}
body .open > .dropdown-menu.fade {
  pointer-events: auto;
  opacity: 0.95;
}
body .ad-wrapper {
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
  padding-bottom: 10px;
  text-align: center;
}
body .ad-inject {
  padding: 0 10px 10px 0;
  margin: auto 0;
}
body .ad-inject .ad-wrapper {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

/************************************************
*	Content Header 				     		    * 
************************************************/
.crop {
  overflow: hidden;
}

#content-header, .part-heading, #jumbotron {
  width: 100%;
  z-index: 3;
  position: relative;
  border-bottom: 0.01em solid var(--grey);
  margin-bottom: 20px;
  background-color: var(--content-header-bg);
}
#content-header, .part-heading, #jumbotron {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 400px) {
  #content-header, .part-heading, #jumbotron {
    padding-top: calc(20px + 10 * (100vw - 400px) / 1520);
    padding-bottom: calc(20px + 10 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #content-header, .part-heading, #jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
#content-header .zoom, .part-heading .zoom, #jumbotron .zoom {
  display: none;
}
#content-header .content-container h1, #content-header .content-container textarea, #content-header .search-container h1, #content-header .search-container textarea, .part-heading .content-container h1, .part-heading .content-container textarea, .part-heading .search-container h1, .part-heading .search-container textarea, #jumbotron .content-container h1, #jumbotron .content-container textarea, #jumbotron .search-container h1, #jumbotron .search-container textarea {
  font-size: 35px;
}
@media screen and (min-width: 400px) {
  #content-header .content-container h1, #content-header .content-container textarea, #content-header .search-container h1, #content-header .search-container textarea, .part-heading .content-container h1, .part-heading .content-container textarea, .part-heading .search-container h1, .part-heading .search-container textarea, #jumbotron .content-container h1, #jumbotron .content-container textarea, #jumbotron .search-container h1, #jumbotron .search-container textarea {
    font-size: calc(35px + 20 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #content-header .content-container h1, #content-header .content-container textarea, #content-header .search-container h1, #content-header .search-container textarea, .part-heading .content-container h1, .part-heading .content-container textarea, .part-heading .search-container h1, .part-heading .search-container textarea, #jumbotron .content-container h1, #jumbotron .content-container textarea, #jumbotron .search-container h1, #jumbotron .search-container textarea {
    font-size: 55px;
  }
}
#content-header .content-container h1, #content-header .content-container textarea, #content-header .search-container h1, #content-header .search-container textarea, .part-heading .content-container h1, .part-heading .content-container textarea, .part-heading .search-container h1, .part-heading .search-container textarea, #jumbotron .content-container h1, #jumbotron .content-container textarea, #jumbotron .search-container h1, #jumbotron .search-container textarea {
  line-height: 1.1em;
  letter-spacing: -0.05em;
  margin: 0px 0 0px;
}
#content-header .content-container h1, #content-header .content-container h3, #content-header .content-container a, #content-header .search-container h1, #content-header .search-container h3, #content-header .search-container a, .part-heading .content-container h1, .part-heading .content-container h3, .part-heading .content-container a, .part-heading .search-container h1, .part-heading .search-container h3, .part-heading .search-container a, #jumbotron .content-container h1, #jumbotron .content-container h3, #jumbotron .content-container a, #jumbotron .search-container h1, #jumbotron .search-container h3, #jumbotron .search-container a {
  color: var(--body-color);
}
#content-header .content-container textarea, #content-header .search-container textarea, .part-heading .content-container textarea, .part-heading .search-container textarea, #jumbotron .content-container textarea, #jumbotron .search-container textarea {
  width: 100%;
  border: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0px 0px;
  background: transparent;
  margin-bottom: 10px;
  color: var(--text-color);
}
#content-header .content-container textarea::-webkit-input-placeholder, #content-header .search-container textarea::-webkit-input-placeholder, .part-heading .content-container textarea::-webkit-input-placeholder, .part-heading .search-container textarea::-webkit-input-placeholder, #jumbotron .content-container textarea::-webkit-input-placeholder, #jumbotron .search-container textarea::-webkit-input-placeholder {
  color: var(--input-placeholder);
}
#content-header .content-container textarea:-moz-placeholder, #content-header .search-container textarea:-moz-placeholder, .part-heading .content-container textarea:-moz-placeholder, .part-heading .search-container textarea:-moz-placeholder, #jumbotron .content-container textarea:-moz-placeholder, #jumbotron .search-container textarea:-moz-placeholder {
  color: var(--input-placeholder);
}
#content-header .content-container textarea::placeholder, #content-header .search-container textarea::placeholder, .part-heading .content-container textarea::placeholder, .part-heading .search-container textarea::placeholder, #jumbotron .content-container textarea::placeholder, #jumbotron .search-container textarea::placeholder {
  color: var(--input-placeholder);
}
#content-header .content-container h3:empty, #content-header .search-container h3:empty, .part-heading .content-container h3:empty, .part-heading .search-container h3:empty, #jumbotron .content-container h3:empty, #jumbotron .search-container h3:empty {
  margin: 0;
}
#content-header .content-container h3, #content-header .search-container h3, .part-heading .content-container h3, .part-heading .search-container h3, #jumbotron .content-container h3, #jumbotron .search-container h3 {
  margin: 9px 0 5px;
  position: relative;
  display: block;
  font-weight: 300;
}
#content-header .content-container h3, #content-header .search-container h3, .part-heading .content-container h3, .part-heading .search-container h3, #jumbotron .content-container h3, #jumbotron .search-container h3 {
  font-size: 16px;
}
@media screen and (min-width: 400px) {
  #content-header .content-container h3, #content-header .search-container h3, .part-heading .content-container h3, .part-heading .search-container h3, #jumbotron .content-container h3, #jumbotron .search-container h3 {
    font-size: calc(16px + 8 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #content-header .content-container h3, #content-header .search-container h3, .part-heading .content-container h3, .part-heading .search-container h3, #jumbotron .content-container h3, #jumbotron .search-container h3 {
    font-size: 24px;
  }
}
#content-header .content-container h3 a, #content-header .search-container h3 a, .part-heading .content-container h3 a, .part-heading .search-container h3 a, #jumbotron .content-container h3 a, #jumbotron .search-container h3 a {
  font-weight: 300;
  color: #777;
}
#content-header .content-container h3 a.active, #content-header .search-container h3 a.active, .part-heading .content-container h3 a.active, .part-heading .search-container h3 a.active, #jumbotron .content-container h3 a.active, #jumbotron .search-container h3 a.active {
  font-weight: 600;
}
#content-header .content-container h3 img, #content-header .search-container h3 img, .part-heading .content-container h3 img, .part-heading .search-container h3 img, #jumbotron .content-container h3 img, #jumbotron .search-container h3 img {
  width: 50px;
  border-radius: 50%;
  margin-right: 10px;
}
@media (max-width: 800px) {
  #content-header .content-container h3, #content-header .search-container h3, .part-heading .content-container h3, .part-heading .search-container h3, #jumbotron .content-container h3, #jumbotron .search-container h3 {
    margin-top: 10px;
  }
  #content-header .content-container h3 img, #content-header .search-container h3 img, .part-heading .content-container h3 img, .part-heading .search-container h3 img, #jumbotron .content-container h3 img, #jumbotron .search-container h3 img {
    width: 40px;
    margin-right: 5px;
  }
}
@media (max-width: 500px) {
  #content-header .content-container h3 img, #content-header .search-container h3 img, .part-heading .content-container h3 img, .part-heading .search-container h3 img, #jumbotron .content-container h3 img, #jumbotron .search-container h3 img {
    width: 30px;
  }
}
#content-header .content-container .poststats, #content-header .search-container .poststats, .part-heading .content-container .poststats, .part-heading .search-container .poststats, #jumbotron .content-container .poststats, #jumbotron .search-container .poststats {
  font-size: 12px;
}
@media screen and (min-width: 400px) {
  #content-header .content-container .poststats, #content-header .search-container .poststats, .part-heading .content-container .poststats, .part-heading .search-container .poststats, #jumbotron .content-container .poststats, #jumbotron .search-container .poststats {
    font-size: calc(12px + 6 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #content-header .content-container .poststats, #content-header .search-container .poststats, .part-heading .content-container .poststats, .part-heading .search-container .poststats, #jumbotron .content-container .poststats, #jumbotron .search-container .poststats {
    font-size: 18px;
  }
}
#content-header .content-container .poststats, #content-header .search-container .poststats, .part-heading .content-container .poststats, .part-heading .search-container .poststats, #jumbotron .content-container .poststats, #jumbotron .search-container .poststats {
  width: 250px;
  min-width: 250px;
  text-align: right;
  display: inline-block;
  padding: 10px 0px 0 15px;
}
#content-header .content-container .poststats i, #content-header .search-container .poststats i, .part-heading .content-container .poststats i, .part-heading .search-container .poststats i, #jumbotron .content-container .poststats i, #jumbotron .search-container .poststats i {
  margin-right: 0px;
}
#content-header .content-container .poststats a [class*=icon-]:before, #content-header .search-container .poststats a [class*=icon-]:before, .part-heading .content-container .poststats a [class*=icon-]:before, .part-heading .search-container .poststats a [class*=icon-]:before, #jumbotron .content-container .poststats a [class*=icon-]:before, #jumbotron .search-container .poststats a [class*=icon-]:before {
  font-size: 2em;
  color: var(--body-color);
}
#content-header .content-container .poststats a, #content-header .search-container .poststats a, .part-heading .content-container .poststats a, .part-heading .search-container .poststats a, #jumbotron .content-container .poststats a, #jumbotron .search-container .poststats a {
  line-height: normal;
  margin-right: 5px;
  color: var(--body-color);
  font-size: 1em;
  font-weight: 200;
  white-space: nowrap;
}
@media (max-width: 600px) {
  #content-header .content-container .poststats, #content-header .search-container .poststats, .part-heading .content-container .poststats, .part-heading .search-container .poststats, #jumbotron .content-container .poststats, #jumbotron .search-container .poststats {
    padding-top: 10px;
    text-align: right;
    width: auto;
    min-width: auto;
  }
  #content-header .content-container .poststats a, #content-header .search-container .poststats a, .part-heading .content-container .poststats a, .part-heading .search-container .poststats a, #jumbotron .content-container .poststats a, #jumbotron .search-container .poststats a {
    float: left;
    clear: left;
    margin-bottom: 2px;
  }
  #content-header .content-container .poststats a:last-of-type, #content-header .search-container .poststats a:last-of-type, .part-heading .content-container .poststats a:last-of-type, .part-heading .search-container .poststats a:last-of-type, #jumbotron .content-container .poststats a:last-of-type, #jumbotron .search-container .poststats a:last-of-type {
    margin-bottom: 6px;
  }
}
#content-header .search-container .input-group, .part-heading .search-container .input-group, #jumbotron .search-container .input-group {
  width: 100%;
}
#content-header .search-container .form-group, .part-heading .search-container .form-group, #jumbotron .search-container .form-group {
  position: relative;
}
#content-header .search-container .form-group input[type=text], .part-heading .search-container .form-group input[type=text], #jumbotron .search-container .form-group input[type=text] {
  font-size: 16px;
  height: 36px;
  font-weight: 300;
  width: 100%;
  border: 1px solid var(--input-border);
  background-color: var(--input-bg);
  color: var(--input-text);
  padding-right: 14px;
  padding-right: 4px 9;
  padding-left: 44px;
  padding-left: 4px 9;
  margin-bottom: 0;
  border-radius: 3px;
  border-top: 0.05em solid var(--input-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
#content-header .search-container .form-group input[type=text]::placeholder, .part-heading .search-container .form-group input[type=text]::placeholder, #jumbotron .search-container .form-group input[type=text]::placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
#content-header .search-container .form-group input[type=text]::-webkit-input-placeholder, .part-heading .search-container .form-group input[type=text]::-webkit-input-placeholder, #jumbotron .search-container .form-group input[type=text]::-webkit-input-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
#content-header .search-container .form-group input[type=text]::-moz-placeholder, .part-heading .search-container .form-group input[type=text]::-moz-placeholder, #jumbotron .search-container .form-group input[type=text]::-moz-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
#content-header .search-container .form-group input[type=text]:focus, .part-heading .search-container .form-group input[type=text]:focus, #jumbotron .search-container .form-group input[type=text]:focus {
  border-color: var(--input-focus-border);
  outline: 0;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
#content-header .search-container .form-group a:hover a.icon-ei-search:before, .part-heading .search-container .form-group a:hover a.icon-ei-search:before, #jumbotron .search-container .form-group a:hover a.icon-ei-search:before {
  color: #777;
}
#content-header .search-container .form-group a.icon-ei-search:before, .part-heading .search-container .form-group a.icon-ei-search:before, #jumbotron .search-container .form-group a.icon-ei-search:before {
  position: absolute;
  top: 4px;
  left: 8px;
  color: #AAA;
  font-size: 28px;
  z-index: 100;
}
#content-header .search-container .form-group, .part-heading .search-container .form-group, #jumbotron .search-container .form-group {
  margin: 15px 0 50px;
}
#content-header .search-container, .part-heading .search-container, #jumbotron .search-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
#content-header .search-container h1, .part-heading .search-container h1, #jumbotron .search-container h1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 20%;
  -moz-box-flex: 1;
  -moz-flex: 1 0 20%;
  -ms-flex: 1 0 20%;
  flex: 1 0 20%;
  min-width: 222px;
  text-align: center;
}
#content-header .search-container h1, .part-heading .search-container h1, #jumbotron .search-container h1 {
  font-size: 18px;
}
@media screen and (min-width: 400px) {
  #content-header .search-container h1, .part-heading .search-container h1, #jumbotron .search-container h1 {
    font-size: calc(18px + 14 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #content-header .search-container h1, .part-heading .search-container h1, #jumbotron .search-container h1 {
    font-size: 32px;
  }
}
#content-header .search-container h1, .part-heading .search-container h1, #jumbotron .search-container h1 {
  margin-top: 6px;
}
#content-header .search-container form, .part-heading .search-container form, #jumbotron .search-container form {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 80%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 80%;
  -ms-flex: 1 1 80%;
  flex: 1 1 80%;
  padding: 0 20px 0 0;
}
#content-header .search-container form .form-group, .part-heading .search-container form .form-group, #jumbotron .search-container form .form-group {
  margin: 0;
}
#content-header .search-container form .form-group input[type=text], .part-heading .search-container form .form-group input[type=text], #jumbotron .search-container form .form-group input[type=text] {
  height: 46px;
  line-height: 46px;
}
#content-header .search-container form .form-group a.icon-ei-search:before, .part-heading .search-container form .form-group a.icon-ei-search:before, #jumbotron .search-container form .form-group a.icon-ei-search:before {
  top: 8px;
}
#content-header .content-container.snippet, .part-heading .content-container.snippet, #jumbotron .content-container.snippet {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
#content-header .content-container.snippet .title, .part-heading .content-container.snippet .title, #jumbotron .content-container.snippet .title {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
#content-header .content-container.snippet .badge, .part-heading .content-container.snippet .badge, #jumbotron .content-container.snippet .badge {
  font-size: 11px;
  line-height: 10px;
  font-weight: 400;
  padding: 3px 6px;
}
#content-header.cover-image, .part-heading.cover-image, #jumbotron.cover-image {
  padding-top: 20px;
}
@media screen and (min-width: 400px) {
  #content-header.cover-image, .part-heading.cover-image, #jumbotron.cover-image {
    padding-top: calc(20px + 10 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #content-header.cover-image, .part-heading.cover-image, #jumbotron.cover-image {
    padding-top: 30px;
  }
}
#content-header.cover-image, .part-heading.cover-image, #jumbotron.cover-image {
  padding-bottom: 350px;
}
@media screen and (min-width: 400px) {
  #content-header.cover-image, .part-heading.cover-image, #jumbotron.cover-image {
    padding-bottom: calc(350px + 150 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #content-header.cover-image, .part-heading.cover-image, #jumbotron.cover-image {
    padding-bottom: 500px;
  }
}
#content-header.cover-image, .part-heading.cover-image, #jumbotron.cover-image {
  position: relative;
  background-size: cover !important;
  margin-bottom: 20px;
  border: none;
  background-color: transparent;
}
#content-header.cover-image:after, .part-heading.cover-image:after, #jumbotron.cover-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
  z-index: -1;
}
#content-header.cover-image .content-container h1, #content-header.cover-image .content-container h2, #content-header.cover-image .content-container h3, #content-header.cover-image .content-container a:hover, #content-header.cover-image .content-container a:active, #content-header.cover-image .content-container a, #content-header.cover-image .content-container textarea, .part-heading.cover-image .content-container h1, .part-heading.cover-image .content-container h2, .part-heading.cover-image .content-container h3, .part-heading.cover-image .content-container a:hover, .part-heading.cover-image .content-container a:active, .part-heading.cover-image .content-container a, .part-heading.cover-image .content-container textarea, #jumbotron.cover-image .content-container h1, #jumbotron.cover-image .content-container h2, #jumbotron.cover-image .content-container h3, #jumbotron.cover-image .content-container a:hover, #jumbotron.cover-image .content-container a:active, #jumbotron.cover-image .content-container a, #jumbotron.cover-image .content-container textarea {
  color: #FFF !important;
  text-rendering: optimizelegibility;
}
#content-header.cover-image .content-container textarea, .part-heading.cover-image .content-container textarea, #jumbotron.cover-image .content-container textarea {
  background-color: rgba(0, 0, 0, 0.2);
}
#content-header.cover-image .content-container textarea:placeholder-shown, .part-heading.cover-image .content-container textarea:placeholder-shown, #jumbotron.cover-image .content-container textarea:placeholder-shown {
  color: #F7F7F7;
}
#content-header.cover-image .content-container textarea.no-background, .part-heading.cover-image .content-container textarea.no-background, #jumbotron.cover-image .content-container textarea.no-background {
  background-color: transparent;
}
#content-header.cover-image .poststats [class*=icon-]:before, #content-header.cover-image .zoom [class*=icon-]:before, .part-heading.cover-image .poststats [class*=icon-]:before, .part-heading.cover-image .zoom [class*=icon-]:before, #jumbotron.cover-image .poststats [class*=icon-]:before, #jumbotron.cover-image .zoom [class*=icon-]:before {
  color: #FFFFFF !important;
}
#content-header.cover-image .poststats a, #content-header.cover-image .zoom a, .part-heading.cover-image .poststats a, .part-heading.cover-image .zoom a, #jumbotron.cover-image .poststats a, #jumbotron.cover-image .zoom a {
  color: #FFF;
}
#content-header.cover-image .zoom, .part-heading.cover-image .zoom, #jumbotron.cover-image .zoom {
  position: absolute;
  display: inline-block;
  opacity: 0;
  top: 3px;
  right: 5px;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-transform: translateZ(0px);
}
#content-header.cover-image .zoom [class*=icon-]:before, .part-heading.cover-image .zoom [class*=icon-]:before, #jumbotron.cover-image .zoom [class*=icon-]:before {
  font-size: 30px;
  color: #F7F7F7;
  text-shadow: 1px 1px #777;
}
#content-header.cover-image .change-cover, .part-heading.cover-image .change-cover, #jumbotron.cover-image .change-cover {
  opacity: 0;
  position: absolute;
  left: auto;
  right: 40px;
  top: 3px;
}
#content-header.cover-image:hover .zoom, #content-header.cover-image:hover .change-cover, .part-heading.cover-image:hover .zoom, .part-heading.cover-image:hover .change-cover, #jumbotron.cover-image:hover .zoom, #jumbotron.cover-image:hover .change-cover {
  opacity: 1;
}
#content-header .change-cover, .part-heading .change-cover, #jumbotron .change-cover {
  display: block;
  margin-top: 5px;
  padding-top: 5px;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-transform: translateZ(0px);
}
@media (max-width: 600px) {
  #content-header .change-cover .btn span, .part-heading .change-cover .btn span, #jumbotron .change-cover .btn span {
    display: none;
  }
}
#content-header, .part-heading, #jumbotron {
  /* Show the button in a different position depending on whether or not there is already a cover image. */
}
#content-header.cover-image .content-container .change-cover, .part-heading.cover-image .content-container .change-cover, #jumbotron.cover-image .content-container .change-cover {
  display: none;
}
#content-header.cover-image > .change-cover, .part-heading.cover-image > .change-cover, #jumbotron.cover-image > .change-cover {
  display: inline-block;
  margin-top: 0px;
}
#content-header:not(.cover-image) > .change-cover, .part-heading:not(.cover-image) > .change-cover, #jumbotron:not(.cover-image) > .change-cover {
  display: none;
}
#content-header .promotion, .part-heading .promotion, #jumbotron .promotion {
  position: absolute;
  right: 30px;
  bottom: 10px;
}
#content-header .promotion a, .part-heading .promotion a, #jumbotron .promotion a {
  color: #EC4A3D;
  font-size: 14px;
}
@media (max-width: 800px) {
  #content-header .promotion, .part-heading .promotion, #jumbotron .promotion {
    bottom: 5px;
  }
}

#snippet_edit_form textarea {
  -webkit-box-shadow: inset 0 0px 0px;
  box-shadow: inset 0 0px 0px;
  font-size: inherit;
  color: var(--input-text);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border) !important;
}
#snippet_edit_form textarea::placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
#snippet_edit_form textarea::-webkit-input-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
#snippet_edit_form textarea::-moz-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
#snippet_edit_form textarea:focus {
  border-color: var(--input-focus-border);
  outline: 0;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
#snippet_edit_form textarea {
  height: 100px;
  line-height: 26px;
  background: transparent;
  margin-bottom: 50px;
}
#snippet_edit_form .pull-right {
  margin: -40px 0 5px;
}

/************************************************
*	Pages with a sidebar						*
************************************************/
.content-sidebar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  height: 100%;
  margin: 0px 0px !important;
}
.content-sidebar .left-sidebar {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 20%;
  -moz-box-flex: 1;
  -moz-flex: 1 0 20%;
  -ms-flex: 1 0 20%;
  flex: 1 0 20%;
  min-width: 222px;
  padding: 20px 30px;
  background-color: var(--sidebar-bg);
  margin: -20px 0 -50px;
  border-right: 0.01em solid var(--sidebar-border);
}
.content-sidebar .left-sidebar h4 {
  font-weight: 300;
  text-align: center;
  position: relative;
  margin-top: 0px;
}
.content-sidebar .left-sidebar h4:before {
  content: "";
  display: block;
  border-top: 2px solid var(--grey);
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.content-sidebar .left-sidebar h4 span {
  padding: 0 10px;
  position: relative;
  display: inline-block;
  z-index: 1;
  background-color: var(--sidebar-heading-bg);
}
.content-sidebar .left-sidebar ul {
  margin: 0 0 50px;
  padding: 0;
  border: 0;
  list-style: none;
}
.content-sidebar .left-sidebar ul li {
  border-bottom: 1px solid var(--light-grey);
}
.content-sidebar .left-sidebar ul li:last-child {
  border: none;
}
.content-sidebar .left-sidebar ul li a {
  padding: 7px 0;
  display: block;
  color: var(--grey);
  font-weight: 300;
  font-size: 13px;
}
.content-sidebar .left-sidebar .input-group {
  width: 100%;
}
.content-sidebar .left-sidebar .form-group {
  position: relative;
}
.content-sidebar .left-sidebar .form-group input[type=text] {
  font-size: 16px;
  height: 36px;
  font-weight: 300;
  width: 100%;
  border: 1px solid var(--input-border);
  background-color: var(--input-bg);
  color: var(--input-text);
  padding-right: 14px;
  padding-right: 4px 9;
  padding-left: 44px;
  padding-left: 4px 9;
  margin-bottom: 0;
  border-radius: 3px;
  border-top: 0.05em solid var(--input-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.content-sidebar .left-sidebar .form-group input[type=text]::placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.content-sidebar .left-sidebar .form-group input[type=text]::-webkit-input-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.content-sidebar .left-sidebar .form-group input[type=text]::-moz-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.content-sidebar .left-sidebar .form-group input[type=text]:focus {
  border-color: var(--input-focus-border);
  outline: 0;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
.content-sidebar .left-sidebar .form-group a:hover a.icon-ei-search:before {
  color: #777;
}
.content-sidebar .left-sidebar .form-group a.icon-ei-search:before {
  position: absolute;
  top: 4px;
  left: 8px;
  color: #AAA;
  font-size: 28px;
  z-index: 100;
}
.content-sidebar .left-sidebar .form-group {
  margin: 15px 0 50px;
}
.content-sidebar .content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 80%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 80%;
  -ms-flex: 1 1 80%;
  flex: 1 1 80%;
  padding: 0 20px;
}

@media (max-width: 580px) {
  .content-sidebar {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .content-sidebar .left-sidebar {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 50px;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    min-width: 100%;
    padding-right: 30px;
  }
  .content-sidebar .content {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    min-width: 100%;
  }
}
/************************************************
*	Header  									*
************************************************/
.logo {
  padding-right: 35px;
  padding-bottom: 5px;
  display: table-cell;
  vertical-align: middle;
}
.logo img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}
.logo .sm {
  height: 40px;
  display: none;
  padding-right: 20px;
}
.logo .rb {
  display: none;
}
.logo .brand {
  float: left;
  margin: 4px 0 0 0.15em;
  color: #be5e2e;
  color: #4b7fb1;
  font-weight: 600;
  font-size: 32px;
  font-size: 44px;
  font-size: 48px;
  line-height: 44px;
  letter-spacing: -2px;
  font-family: "Roboto Condensed", "Open Sans";
}

#top {
  display: none;
}

.navbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.navbar:after, .navbar:before {
  content: none;
}
.navbar {
  margin-bottom: 0;
  border: 0;
  background-color: var(--navbar-bg);
  font-family: Helvetica, "Roboto Condensed", "Open Sans";
  font-weight: 400;
  border-bottom: 0.05em solid var(--navbar-border);
}
.navbar .navbar-menu-button [class*=icon-]:before {
  font-size: 38px;
}
.navbar .navbar-menu-button a [class*=icon-]:before {
  color: var(--grey);
}
.navbar .navbar-menu-button a:hover [class*=icon-]:before {
  color: var(--nav-link-hover);
}
.navbar .navbar-menu-button {
  padding: 12px 12px 12px 12px;
}
.navbar .badge {
  position: absolute;
  top: 8px;
  right: -2px;
  opacity: 1;
}
.navbar > .content-container {
  position: relative;
}
.navbar .navbar-nav {
  display: table-cell;
  margin: 0;
}
.navbar .navbar-nav > li {
  vertical-align: middle;
}
.navbar .navbar-nav > li > a {
  line-height: 1rem;
  color: var(--text-color);
}
.navbar .navbar-nav > li > a:hover {
  color: var(--nav-link-hover) !important;
}
.navbar .navbar-header {
  height: 65px;
}
.navbar .navbar-header:after, .navbar .navbar-header:before {
  content: none;
}
.navbar .navbar-header {
  display: table;
}
.navbar .navbar-header > div {
  display: table-cell;
  vertical-align: middle;
}
.navbar .navbar-header .navbar-toggle {
  border: 0;
  margin-left: -10px;
  margin-right: 5px;
}
.navbar .navbar-header > .list-inline > li {
  padding: 0;
  display: inline-block !important;
  vertical-align: top;
}
.navbar .navbar-header .navbar-menu > li > a {
  padding: 26px 10px 25px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-color);
}
.navbar .navbar-header .navbar-menu > li > a:hover {
  opacity: 0.4;
  color: var(--nav-link-hover);
}
.navbar .navbar-header .navbar-menu > li.active > a, .navbar .navbar-header .navbar-menu > li > a:focus {
  background: var(--nav-link-active-bg) !important;
  opacity: 1;
  box-shadow: inset 0px -3px 0px var(--nav-link-active-border);
  box-shadow: inset 0px -5px 0px var(--nav-link-active-border);
}
.navbar .navbar-header .navbar-left {
  padding-right: 40px;
}
.navbar .navbar-header .dropdown-menu {
  opacity: 0;
  background-color: var(--dropdown-bg);
  border: 1px solid var(--dropdown-border);
}
.navbar .navbar-header .dropdown-menu li {
  position: relative;
}
.navbar .navbar-header .dropdown-menu li a {
  padding: 7px 20px;
  color: var(--dropdown-text);
}
.navbar .navbar-header .dropdown-menu li a:hover, .navbar .navbar-header .dropdown-menu li a:active, .navbar .navbar-header .dropdown-menu li a:focus {
  background-color: var(--dropdown-hover-bg);
  color: var(--dropdown-text);
}
.navbar .navbar-search {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
  margin: 14px 15px 0 45px;
}
.navbar .navbar-search .input-group {
  width: 100%;
}
.navbar .navbar-search .form-group {
  position: relative;
}
.navbar .navbar-search .form-group input[type=text] {
  font-size: 16px;
  height: 36px;
  font-weight: 300;
  width: 100%;
  border: 1px solid var(--input-border);
  background-color: var(--input-bg);
  color: var(--input-text);
  padding-right: 14px;
  padding-right: 4px 9;
  padding-left: 44px;
  padding-left: 4px 9;
  margin-bottom: 0;
  border-radius: 3px;
  border-top: 0.05em solid var(--input-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.navbar .navbar-search .form-group input[type=text]::placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.navbar .navbar-search .form-group input[type=text]::-webkit-input-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.navbar .navbar-search .form-group input[type=text]::-moz-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.navbar .navbar-search .form-group input[type=text]:focus {
  border-color: var(--input-focus-border);
  outline: 0;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
.navbar .navbar-search .form-group input[type=text] {
  width: 210px;
  width: 100%;
}
.navbar .navbar-search .form-group a:hover a.icon-ei-search:before {
  color: #777;
}
.navbar .navbar-search .form-group a.icon-ei-search:before {
  position: absolute;
  top: 4px;
  left: 8px;
  color: #AAA;
  font-size: 28px;
  z-index: 100;
}
.navbar .navbar-right {
  padding-right: 25px;
  display: flex;
}
.navbar .navbar-right li > a {
  padding: 14px 5px;
}
.navbar .navbar-right [class*=icon-]:before {
  font-size: 34px;
}
.navbar .navbar-right a [class*=icon-]:before {
  color: var(--grey);
}
.navbar .navbar-right a:hover [class*=icon-]:before {
  color: var(--nav-link-hover);
}
.navbar .navbar-right .nav {
  display: table;
  height: 100%;
}
.navbar .navbar-right .nav > div {
  display: table-cell;
  vertical-align: middle;
  padding: 0px 6px;
  position: relative;
}
.navbar .navbar-right #points a {
  font-weight: bold;
  line-height: 36px;
}
.navbar .navbar-right #points .dropdown-menu {
  width: 600px;
  padding: 10px 0px;
  overflow-y: scroll;
  border-top: 5px solid var(--nav-link-active-border);
  background-color: var(--dropdown-bg);
  border: 1px solid var(--dropdown-border);
}
.navbar .navbar-right #points .dropdown-menu h2 {
  font-weight: 300;
  margin: 15px 0px;
  color: var(--dropdown-text);
}
.navbar .navbar-right #points .dropdown-menu li {
  padding: 5px 25px;
}
.navbar .navbar-right #points .dropdown-menu li:hover, .navbar .navbar-right #points .dropdown-menu li:active {
  background-color: var(--dropdown-hover-bg);
}
.navbar .navbar-right #points .dropdown-menu li a {
  padding: 0px;
  display: inline;
  color: var(--link-color);
  font-weight: 600;
}
.navbar .navbar-right #points .dropdown-menu li a:active, .navbar .navbar-right #points .dropdown-menu li a:focus {
  background-color: transparent;
  color: var(--link-color);
}
.navbar .navbar-right #points .dropdown-menu li .badge {
  position: relative;
  padding: 6px;
  border-radius: 20px;
  margin-right: 10px;
  width: 38px;
  top: auto;
  right: auto;
  vertical-align: 15%;
  font-size: 14px;
  font-weight: 600;
}
.navbar .navbar-right .avatar {
  vertical-align: middle;
}
.navbar .navbar-right .avatar a {
  display: block;
  padding-left: 6px;
  white-space: nowrap;
}
.navbar .navbar-right .avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.navbar .navbar-right .avatar [class*=icon-]:before {
  font-size: 24px;
}
.navbar .navbar-right .theme-toggle {
  vertical-align: middle;
  margin-right: 10px;
}
.navbar .navbar-right .theme-toggle input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.navbar .navbar-right .theme-toggle input[type=checkbox]:focus + label {
  outline: none;
}
.navbar .navbar-right .theme-toggle .theme-toggle-switch {
  position: relative;
  display: flex;
  align-items: center;
  width: 48px;
  height: 26px;
  background-color: var(--theme-toggle-bg);
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 2px;
  box-sizing: border-box;
}
.navbar .navbar-right .theme-toggle .theme-toggle-switch .theme-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: opacity 0.3s ease, color 0.3s ease;
  z-index: 1;
  font-size: 14px;
  line-height: 1;
}
.navbar .navbar-right .theme-toggle .theme-toggle-switch .theme-icon.theme-icon-light {
  left: 2px;
  color: var(--theme-toggle-sun-color) !important;
}
.navbar .navbar-right .theme-toggle .theme-toggle-switch .theme-icon.theme-icon-dark {
  right: 2px;
  color: var(--theme-toggle-moon-color) !important;
}
.navbar .navbar-right .theme-toggle .theme-toggle-switch .theme-toggle-handle {
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: var(--theme-toggle-handle-bg);
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 2;
  left: 2px;
}
.navbar .navbar-right .theme-toggle .theme-toggle-switch:hover {
  background-color: var(--theme-toggle-hover-bg);
}
.navbar .navbar-right .theme-toggle input[type=checkbox]:checked + .theme-toggle-switch {
  background-color: var(--theme-toggle-active-bg);
}
.navbar .navbar-right .theme-toggle input[type=checkbox]:checked + .theme-toggle-switch .theme-toggle-handle {
  transform: translateX(22px);
  background-color: var(--theme-toggle-handle-active-bg);
}
.navbar .navbar-right .theme-toggle input[type=checkbox]:checked + .theme-toggle-switch .theme-icon-light {
  opacity: 0.3;
  color: var(--theme-toggle-sun-color) !important;
}
.navbar .navbar-right .theme-toggle input[type=checkbox]:checked + .theme-toggle-switch .theme-icon-dark {
  opacity: 1;
  color: var(--theme-toggle-moon-color) !important;
}
.navbar .navbar-right .theme-toggle input[type=checkbox]:not(:checked) + .theme-toggle-switch .theme-icon-light {
  opacity: 1;
  color: var(--theme-toggle-sun-color) !important;
}
.navbar .navbar-right .theme-toggle input[type=checkbox]:not(:checked) + .theme-toggle-switch .theme-icon-dark {
  opacity: 0.3;
  color: var(--theme-toggle-moon-color) !important;
}
@media (max-width: 1234px) {
  .navbar .logo {
    padding-right: 0px;
  }
  .navbar .logo .full {
    display: none;
  }
  .navbar .logo .sm {
    display: block;
  }
}
@media (max-width: 1066px) {
  .navbar .navbar-header:first-child .navbar-nav {
    display: none;
  }
  .navbar .navbar-search {
    margin: 14px 25px 0 5px;
  }
}
@media (max-width: 580px) {
  .navbar .logo .sm {
    height: 30px;
  }
  .navbar .navbar-right .nav div {
    padding: 0 3px;
  }
  .navbar .navbar-right {
    padding-right: 10px;
  }
  .navbar .navbar-right #points a {
    line-height: 26px;
  }
  .navbar .navbar-right [class*=icon-]:before {
    font-size: 28px;
  }
  .navbar .navbar-right .avatar img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 472px) {
  .navbar .navbar-search {
    display: none;
  }
  .navbar .logo .full {
    height: 30px;
    display: block;
  }
  .navbar .logo .sm {
    display: none;
  }
}
@media (max-width: 360px) {
  .navbar .logo .full {
    display: none;
  }
  .navbar .logo .rb {
    height: 20px;
    display: block;
  }
  .navbar .navbar-menu-button {
    padding: 12px 7px;
  }
}

/*
@media screen and (max-width: 768px) {
	.navbar {
		height: auto;
	}
}

.navbar-default {
	border-color: #E8E8E8;
}
*/
.avatar-fade {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
  -moz-transition: opacity 0.25s ease-in-out;
  -webkit-transition: opacity 0.25s ease-in-out;
}

.avatar-fade:hover {
  opacity: 0.5;
}

.navbar-header .navbar-signin {
  margin: 16px 15px 0 16px !important;
}

.navmenu-fixed-right, .navmenu-fixed-right .navmenu-header {
  -webkit-box-shadow: inset 8px 0px 5px -8px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: inset 8px 0px 5px -8px rgba(0, 0, 0, 0.75);
  box-shadow: inset 8px 0px 5px -8px rgba(0, 0, 0, 0.75);
}

.offcanvas {
  z-index: 2040;
  background-color: var(--offcanvas-bg);
  overflow-y: scroll;
}
.offcanvas .navbar-form,
.offcanvas .navbar-nav {
  margin: 0 !important;
}
.offcanvas .dropdown-menu {
  margin-bottom: 10px;
}
.offcanvas h1 {
  font-weight: normal;
  font-size: 20px;
  color: #E8E8E8;
  padding: 15px 0 15px 20px;
  font-weight: 400;
}
.offcanvas .navmenu-nav li a {
  font-weight: normal;
  font-size: 20px;
  color: #FFF;
  padding: 15px 0 15px 20px;
  font-weight: 400;
}
.offcanvas .navmenu-nav li a:hover,
.offcanvas .navmenu-nav li a:focus {
  background-color: #777;
  color: #FFF;
}
.offcanvas .navmenu-nav li a:focus {
  outline: none;
}
.offcanvas .navmenu-nav li > ul {
  list-style-type: none;
  padding: 0;
}
.offcanvas .navmenu-nav li > ul li a {
  padding: 3px 0 3px 35px;
  display: block;
  font-size: 16px;
  font-weight: 300;
}
.offcanvas .navmenu-nav .menu-toggle {
  cursor: pointer;
}
.offcanvas .nav > li > a:hover,
.offcanvas .nav > li > a:focus {
  background-color: #777;
  color: #FFF;
}
.offcanvas .nav > li > a:focus {
  outline: none;
}
.offcanvas .navmenu-nav .menu-toggle .caret {
  margin-left: 2px;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}
.offcanvas.st-right .navmenu-nav li a {
  font-weight: normal;
  font-size: 16px;
  color: #E8E8E8;
  padding: 10px 0 10px 20px;
  font-weight: 300;
}
.offcanvas .navbar-search {
  position: relative;
  margin: 5px 15px 25px;
}
.offcanvas .navbar-search .input-group {
  width: 100%;
}
.offcanvas .navbar-search .form-group {
  position: relative;
}
.offcanvas .navbar-search .form-group input[type=text] {
  font-size: 16px;
  height: 36px;
  font-weight: 300;
  width: 100%;
  border: 1px solid var(--input-border);
  background-color: var(--input-bg);
  color: var(--input-text);
  padding-right: 14px;
  padding-right: 4px 9;
  padding-left: 44px;
  padding-left: 4px 9;
  margin-bottom: 0;
  border-radius: 3px;
  border-top: 0.05em solid var(--input-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.offcanvas .navbar-search .form-group input[type=text]::placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.offcanvas .navbar-search .form-group input[type=text]::-webkit-input-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.offcanvas .navbar-search .form-group input[type=text]::-moz-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.offcanvas .navbar-search .form-group input[type=text]:focus {
  border-color: var(--input-focus-border);
  outline: 0;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
.offcanvas .navbar-search .form-group input[type=text] {
  border: 1px solid var(--input-border);
  background-color: var(--input-bg);
}
.offcanvas .navbar-search .form-group a:hover a.icon-ei-search:before {
  color: #777;
}
.offcanvas .navbar-search .form-group a.icon-ei-search:before {
  position: absolute;
  top: 4px;
  left: 8px;
  color: #AAA;
  font-size: 28px;
  z-index: 100;
}
.offcanvas i {
  margin-right: 20px;
}
.offcanvas .navmenu-header {
  height: 51px;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 9px;
}
.offcanvas .navmenu-header .logo {
  margin-left: 5px;
}
.offcanvas .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.offcanvas .offcanvas-avatar {
  margin-bottom: 25px;
}
.offcanvas .offcanvas-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
  margin: 10px;
  float: left;
}
.offcanvas .offcanvas-avatar h2 {
  margin: 0;
  display: inline;
  line-height: 60px;
}
.offcanvas hr {
  margin: 20px 15px;
  color: #BBB;
  border-top: 1px solid #888;
}
.offcanvas .navbar-search + hr {
  margin-bottom: 5px;
}
.offcanvas .about {
  margin: 0px auto;
  width: 100%;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offcanvas .about a {
  flex: 1;
  text-align: center;
  max-width: 33.33%;
}
.offcanvas .about a {
  color: #E8E8E8;
  font-size: 12px;
}
.offcanvas .about a:hover {
  color: #EEE;
}
.offcanvas .theme-toggle-sidebar input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.offcanvas .theme-toggle-sidebar input[type=checkbox]:focus + label {
  outline: none;
}
.offcanvas .theme-toggle-sidebar .theme-toggle-switch {
  position: relative;
  display: flex;
  align-items: center;
  width: 48px;
  height: 26px;
  background-color: var(--theme-toggle-bg);
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 2px;
  box-sizing: border-box;
  margin: 0 auto;
}
.offcanvas .theme-toggle-sidebar .theme-toggle-switch .theme-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: opacity 0.3s ease, color 0.3s ease;
  z-index: 1;
  font-size: 14px;
  line-height: 1;
}
.offcanvas .theme-toggle-sidebar .theme-toggle-switch .theme-icon.theme-icon-light {
  left: 2px;
  color: var(--theme-toggle-sun-color) !important;
}
.offcanvas .theme-toggle-sidebar .theme-toggle-switch .theme-icon.theme-icon-dark {
  right: 2px;
  color: var(--theme-toggle-moon-color) !important;
}
.offcanvas .theme-toggle-sidebar .theme-toggle-switch .theme-toggle-handle {
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: var(--theme-toggle-handle-bg);
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 2;
  left: 2px;
}
.offcanvas .theme-toggle-sidebar .theme-toggle-switch:hover {
  background-color: var(--theme-toggle-hover-bg);
}
.offcanvas .theme-toggle-sidebar input[type=checkbox]:checked + .theme-toggle-switch {
  background-color: var(--theme-toggle-active-bg);
}
.offcanvas .theme-toggle-sidebar input[type=checkbox]:checked + .theme-toggle-switch .theme-toggle-handle {
  transform: translateX(22px);
  background-color: var(--theme-toggle-handle-active-bg);
}
.offcanvas .theme-toggle-sidebar input[type=checkbox]:checked + .theme-toggle-switch .theme-icon-light {
  opacity: 0.3;
  color: var(--theme-toggle-sun-color) !important;
}
.offcanvas .theme-toggle-sidebar input[type=checkbox]:checked + .theme-toggle-switch .theme-icon-dark {
  opacity: 1;
  color: var(--theme-toggle-moon-color) !important;
}
.offcanvas .theme-toggle-sidebar input[type=checkbox]:not(:checked) + .theme-toggle-switch .theme-icon-light {
  opacity: 1;
  color: var(--theme-toggle-sun-color) !important;
}
.offcanvas .theme-toggle-sidebar input[type=checkbox]:not(:checked) + .theme-toggle-switch .theme-icon-dark {
  opacity: 0.3;
  color: var(--theme-toggle-moon-color) !important;
}
.offcanvas [class*=icon-]:before {
  font-size: 22px;
}
.offcanvas [class*=icon-heart]:before {
  font-size: 28px;
}
.offcanvas [class*=icon-ei-pencil]:before {
  font-size: 28px;
}
.offcanvas a [class*=icon-]:before,
.offcanvas a:hover [class*=icon-]:before {
  color: #FFF;
}
.offcanvas [class*=icon-quad]:before {
  font-size: 26px;
  margin-left: 0px;
}
.offcanvas [class*=icon-board]:before {
  font-size: 32px;
}

.navbar-offcanvas {
  border: 0px;
}

#navbar-offcanvas-profile .offcanvas-avatar h2 {
  color: #FFF;
}

#navbar-offcanvas-profile {
  border: 0;
}

.offcanvas-overlay {
  top: 0;
  bottom: 0;
  left: 300px;
  right: 0;
  position: fixed;
  z-index: 2035;
  height: 100%;
  min-height: 100%;
  background-color: #000000;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}

.offcanvas-overlay-right {
  right: 300px;
  left: 0;
}

#drawer {
  left: 0;
  right: 0;
  margin: 0 auto;
  margin-top: -60px;
  width: 50%;
  position: fixed;
  z-index: 500;
  text-align: center;
  padding-top: 20px;
  height: 60px;
  border-radius: 5px;
  background-color: #FFF;
  border: 1px solid #E8E8E8;
}

@media (max-width: 700px) {
  #drawer {
    width: 85%;
  }
}
/************************************************
*	Misc Tags					     		    * 
************************************************/
h1 {
  font-size: 32px;
  margin-top: 0px;
  font-weight: 600;
}

h1, h2, h3, h4, h5, h6, .cm-header {
  font-family: "Roboto", "Open Sans", "Bree Serif", HelveticaNeue-Light, "Helvetica Neue Light", "Open Sans", Helvetica, Arial;
  color: var(--text-color);
  letter-spacing: -0.07em;
  font-weight: 100;
}

h2, h3, h4 {
  margin-top: 30px;
}

h1 + hr, h2 + hr, h3 + hr, h4 + hr {
  margin-top: 0px;
}

.page-header {
  margin-top: 50px;
}
.page-header:first-child {
  margin-top: 0px;
}

.first-header {
  margin-top: 10px;
}

.heading {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
  min-height: 45px;
}
.heading h1 {
  font-weight: 300;
}
.heading .filters {
  float: right;
  margin-top: 3px;
}
.heading .btn {
  padding: 2px 10px;
  font-size: 12px;
}

@-moz-document url-prefix() {
  .heading {
    padding-bottom: 1px;
  }
}
.item {
  width: 100%;
  margin: 0px 0px 20px 0px;
  padding: 0px 0px 3px 0px;
  border-bottom: 0px solid #EEE;
}

[contenteditable=true] {
  -webkit-user-select: text;
  user-select: text;
}

/*
.img_block {
	display: inline-block;
    vertical-align: top;
	width: 220px;
	margin: 0px 15px 10px 0px;
	padding-bottom: 8px;
}

.img_block .image {
	border-radius: 5px;
	padding: 6px;
	box-shadow: 3px 3px 15px rgba(0,0,0,0.1); 
	margin-bottom: 5px;
}

.img_block img { max-width: 100%; }

.vote_box {
	float: right;
	width: 80px;
	text-align: center;
	margin-right: 15px;
	font-size: 16px;
	color: #D8D8D8;
}

.vote_box a.btn { color: #FFF; }
.vote_box a:hover.btn { color: #FFF; }
.vote_box a { color: #AAA; }
.vote_box a:hover { color: #AAA; }

*/
/************************************************
/*   Modal dialogs */
.modal.fade .modal-dialog {
  -webkit-transform: scale(0.1);
  -moz-transform: scale(0.1);
  -ms-transform: scale(0.1);
  transform: scale(0.1);
  top: 500px;
  opacity: 0;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.modal.fade.in .modal-dialog {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transform: translate3d(0, -400px, 0);
  transform: translate3d(0, -400px, 0);
  opacity: 1;
}

.modal .close {
  display: none;
}
.modal .modal-content {
  border: none;
  border-radius: 2px;
  background-color: var(--modal-bg);
  -webkit-box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22), 0 27px 24px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22), 0 27px 24px rgba(0, 0, 0, 0.2);
  box-shadow: 0 40px 77px rgba(0, 0, 0, 0.22), 0 27px 24px rgba(0, 0, 0, 0.2);
}
.modal .modal-header {
  min-height: 16px;
  padding: 20px 20px 15px;
  border-bottom: none;
  background-color: var(--modal-header-bg);
}
.modal .modal-header h1 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 0px;
}
.modal .modal-title {
  font-weight: 500;
  font-size: 21px;
}
.modal .modal-body {
  padding: 20px 24px 0px;
}
.modal .modal-body p {
  font-weight: 400;
  font-size: 14px;
  color: #212121;
}
.modal .modal-body ul {
  margin-bottom: 15px;
}
.modal .modal-body .lead {
  font-weight: 300;
  font-size: 16px;
  color: #757575;
}
.modal .modal-body p:last-child, .modal .modal-body .lead:last-child {
  margin-bottom: 0;
}
.modal .modal-body textarea {
  width: 100%;
  height: 120px;
}
.modal .modal-header + .modal-body {
  padding: 0px 24px;
}
.modal .modal-footer {
  margin-top: 15px;
  padding: 8px 0;
  border-top: none;
}
.modal .modal-footer .btn {
  margin-right: 10px;
  padding: 6px 10px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--link-color);
  background-color: var(--button-bg);
  color: var(--link-color);
}
.modal .modal-footer .btn:hover {
  opacity: 0.6;
}
.modal .modal-footer .btn + .btn {
  margin-left: 0;
}
.modal .modal-footer .btn + .btn:last-child {
  margin-left: -4px;
}

/*
@media(min-width: 1200px) {
	.modal-choice .modal-dialog {
		width: 700px;
	}

	.modal-thread .modal-dialog {
		width: 800px;
	}
}

.modal-thread textarea {
	margin: 0;
}
*/
/************************************************
*	Search Form									*
************************************************/
.ui-menu-item img {
  margin-right: 10px;
  width: 32px;
  height: 32px;
}

.ui-menu-item span {
  color: var(--text-color);
  font-size: 12px;
  vertical-align: top;
}

.ui-menu-item {
  background-color: var(--dropdown-bg);
  color: var(--dropdown-text);
}
.ui-menu-item:hover, .ui-menu-item.ui-state-active {
  background-color: var(--dropdown-hover-bg);
  color: var(--dropdown-text);
}

.quote {
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  border-left: 5px solid #eeeeee;
}

.post_avatar {
  float: left;
  margin-right: 10px;
  width: 75px;
}

.post_avatar img {
  width: 100%;
}

/************************************************
* Buttons and Forms
************************************************/
input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

.btn {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 4px 12px;
}

.btn,
input,
button,
select {
  font-family: Helvetica, Arial, sans-serif;
}

textarea,
input[type=text],
input[type=password] {
  background-color: var(--input-bg);
  color: var(--input-text);
  border: 1px solid var(--input-border);
}
textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
textarea:focus,
input[type=text]:focus,
input[type=password]:focus {
  border-color: var(--input-focus-border);
  outline: 0;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.btn-twitter {
  color: #fff;
  background-color: #55acee;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-twitter:hover, .btn-twitter:focus, .btn-twitter:active, .btn-twitter.active, .open .dropdown-toggle.btn-twitter {
  color: #fff;
  background-color: #309aea;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-twitter:active, .btn-twitter.active, .open .dropdown-toggle.btn-twitter {
  background-image: none;
}

.btn-twitter.disabled, .btn-twitter[disabled], fieldset[disabled] .btn-twitter, .btn-twitter.disabled:hover, .btn-twitter[disabled]:hover, fieldset[disabled] .btn-twitter:hover, .btn-twitter.disabled:focus, .btn-twitter[disabled]:focus, fieldset[disabled] .btn-twitter:focus, .btn-twitter.disabled:active, .btn-twitter[disabled]:active, fieldset[disabled] .btn-twitter:active, .btn-twitter.disabled.active, .btn-twitter[disabled].active, fieldset[disabled] .btn-twitter.active {
  background-color: #55acee;
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-twitter .badge {
  color: #55acee;
  background-color: #fff;
}

/* Fix Bootstrap forms */
.control-label {
  font-weight: 500;
}

select, textarea, input[type=text], input[type=password], input[type=datetime], input[type=datetime-local], input[type=date], input[type=month], input[type=time], input[type=week], input[type=number], input[type=email], input[type=url], input[type=search], input[type=tel], input[type=color], .uneditable-input, .form-control {
  display: block;
  padding: 6px 12px;
  font-size: inherit;
  margin-bottom: 10px;
  line-height: 1.428571429;
  color: var(--input-text);
  vertical-align: middle;
  background-color: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
select:not(textarea), textarea:not(textarea), input[type=text]:not(textarea), input[type=password]:not(textarea), input[type=datetime]:not(textarea), input[type=datetime-local]:not(textarea), input[type=date]:not(textarea), input[type=month]:not(textarea), input[type=time]:not(textarea), input[type=week]:not(textarea), input[type=number]:not(textarea), input[type=email]:not(textarea), input[type=url]:not(textarea), input[type=search]:not(textarea), input[type=tel]:not(textarea), input[type=color]:not(textarea), .uneditable-input:not(textarea), .form-control:not(textarea) {
  height: 30px;
  height: 34px;
}
select::placeholder, textarea::placeholder, input[type=text]::placeholder, input[type=password]::placeholder, input[type=datetime]::placeholder, input[type=datetime-local]::placeholder, input[type=date]::placeholder, input[type=month]::placeholder, input[type=time]::placeholder, input[type=week]::placeholder, input[type=number]::placeholder, input[type=email]::placeholder, input[type=url]::placeholder, input[type=search]::placeholder, input[type=tel]::placeholder, input[type=color]::placeholder, .uneditable-input::placeholder, .form-control::placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
select::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=datetime]::-webkit-input-placeholder, input[type=datetime-local]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=month]::-webkit-input-placeholder, input[type=time]::-webkit-input-placeholder, input[type=week]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=color]::-webkit-input-placeholder, .uneditable-input::-webkit-input-placeholder, .form-control::-webkit-input-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
select::-moz-placeholder, textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=color]::-moz-placeholder, .uneditable-input::-moz-placeholder, .form-control::-moz-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
select:-ms-input-placeholder, textarea:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=datetime]:-ms-input-placeholder, input[type=datetime-local]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=month]:-ms-input-placeholder, input[type=time]:-ms-input-placeholder, input[type=week]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=color]:-ms-input-placeholder, .uneditable-input:-ms-input-placeholder, .form-control:-ms-input-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}

textarea:focus,
.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus,
select:focus,
.uneditable-input:focus {
  border-color: var(--input-focus-border);
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(59, 130, 246, 0.2);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(59, 130, 246, 0.2);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(59, 130, 246, 0.2);
}

.btn-post:hover,
.btn-post:focus,
.btn-post:active,
.btn-post.active,
.btn-post.disabled,
.btn-post[disabled] {
  color: #FFF;
}

.btn-post, .btn-edit {
  background-color: #d23f31;
  border-radius: 999em;
  text-align: center;
  width: 56px;
  height: 56px;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.2s;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.28);
  line-height: 1;
  font-size: 38px;
  font-weight: 300;
  color: #FFF;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateZ(0px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.btn-post:hover, .btn-edit:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.btn-post .height_fix, .btn-edit .height_fix {
  margin-top: 100%;
}
.btn-post span, .btn-edit span {
  position: absolute;
  left: 0;
  top: 50%;
  height: 100%;
  width: 100%;
  text-align: center;
  margin-top: -21px;
}
.btn-post [class*=icon-]:before, .btn-edit [class*=icon-]:before {
  line-height: 12px;
  font-size: 22px;
  color: #FFF;
}

.btn-post {
  /*
  position: fixed;
  top: 90px;
  right: 100px;
  */
  position: absolute;
  top: -3px;
  right: 23px;
}

.btn-edit {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.btn-edit [class*=icon-ei-pencil]:before {
  line-height: 38px;
  font-size: 38px;
  color: #FFF;
  margin-left: 2px;
}

/*
.btn-post-modal {
	position: relative;
	border-radius: 999em;
	top: auto;
	right: auto;
	width: 80px;
	height: 80px;
	line-height: 82px;
	background-color: #5E81A5;
	background-color: #D88054;
	transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	transition-delay: 0.2s;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}

a.btn-post-modal [class*="icon-"]:before,
a.btn-post-modal:hover [class*="icon-"]:before {
	color: #FFF !important;
	font-size: 36px !important;
}
*/
.btn-post-mobile {
  position: fixed !important;
  top: auto !important;
  bottom: 10px !important;
  right: 10px !important;
  z-index: 5000;
  color: #FFF;
}

a.btn-post-mobile [class*=icon-]:before,
a.btn-post-mobile:hover [class*=icon-]:before {
  font-size: 20px !important;
}

.btn-white, .btn-blue, .btn-link {
  line-height: 26px;
  font-size: 14px;
  font-weight: 300;
  border-radius: 2px;
  padding: 2px 15px 1px;
  background-color: var(--button-bg);
}
.btn-white, .btn-white [class*=icon-]:before, .btn-blue, .btn-blue [class*=icon-]:before, .btn-link, .btn-link [class*=icon-]:before {
  color: var(--button-text);
}
.btn-white [class*=icon-]:before, .btn-blue [class*=icon-]:before, .btn-link [class*=icon-]:before {
  font-size: 22px;
  vertical-align: -18%;
}
.btn-white [class*=icon-copy]:before, .btn-blue [class*=icon-copy]:before, .btn-link [class*=icon-copy]:before {
  font-size: 18px;
  line-height: 12px;
  margin-right: 3px;
}
.btn-white, .btn-blue, .btn-link {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  -webkit-transform: translateZ(0px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.btn-white:hover, .btn-white:focus, .btn-white:active, .btn-white.active, .btn-white.disabled, .btn-white[disabled], .btn-blue:hover, .btn-blue:focus, .btn-blue:active, .btn-blue.active, .btn-blue.disabled, .btn-blue[disabled], .btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active, .btn-link.disabled, .btn-link[disabled] {
  opacity: 1;
  font-weight: 300;
  padding: 2px 15px 1px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.btn-blue {
  border-color: #719FCC;
  background-color: #719FCC;
  border-color: #0095da;
  background-color: #0095da;
}
.btn-blue, .btn-blue [class*=icon-]:before {
  color: #FFF;
}
.btn-blue:hover, .btn-blue:hover [class*=icon-]:before, .btn-blue:focus, .btn-blue:focus [class*=icon-]:before, .btn-blue:active, .btn-blue:active [class*=icon-]:before, .btn-blue.active, .btn-blue.active [class*=icon-]:before, .btn-blue.disabled, .btn-blue.disabled [class*=icon-]:before, .btn-blue[disabled], .btn-blue[disabled] [class*=icon-]:before {
  color: #FFF;
  opacity: 1;
}

.btn-link {
  color: var(--link-color);
  border-color: transparent;
  background-color: transparent;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0), 0 1px 2px rgba(0, 0, 0, 0);
}
.btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active, .btn-link.disabled, .btn-link[disabled] {
  color: var(--link-color);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0), 0 3px 6px rgba(0, 0, 0, 0);
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-transform: translateZ(0px);
}

.cover-image .btn-white {
  border: none;
  background: transparent;
}
.cover-image .btn-white, .cover-image .btn-white [class*=icon-]:before {
  color: #FFF;
}
.cover-image .btn-white {
  box-shadow: none;
  transition: font-size 0.25s ease-in-out;
  font-size: 0px;
}

.scroll_append_more {
  width: 150px;
  display: block;
  text-align: center;
  height: 36px;
  border-left: 0px;
  border-right: 0px;
  border-radius: 0;
  margin: 20px auto 10px;
}

.scroll_append_loading {
  width: 100%;
  padding: 20px 0;
}

.scroll_append_loading img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

*:focus {
  outline: 0px none transparent;
}

input:-webkit-autofill {
  background: var(--input-bg) !important;
  color: var(--input-text) !important;
  -webkit-text-fill-color: var(--input-text) !important;
}

input:-webkit-autofill:focus {
  border-color: var(--input-focus-border) !important;
}

/************************************************
* Links in the profile box to user posts
************************************************/
#nav-menu {
  padding: 9px 0px 9px 0px;
}
#nav-menu ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}
#nav-menu li {
  margin: 0px 0 0;
  cursor: pointer;
}
#nav-menu a {
  display: block;
  padding: 5px 10px 5px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: normal;
}
#nav-menu a:hover {
  background: #DDD;
}
#nav-menu a:link, #nav-menu a:active, #nav-menu a:visited {
  color: #555;
}
#nav-menu .btn {
  padding: 1px;
  font-size: 12px;
  float: right;
  text-align: center;
  font-weight: bold;
  width: 42px;
  height: 22px;
  line-height: 19px;
}
#nav-menu .total:hover {
  font-size: 10px;
  font-weight: none;
  background: #B33C00;
}

/************************************************
 * Component page header 
************************************************/
.part-heading {
  padding-top: 80px;
  padding-bottom: 30px;
}
.part-heading h1 {
  font-size: 45px;
  line-height: 45px;
  font-weight: 300;
  padding-bottom: 10px;
}
.part-heading img {
  margin-bottom: 20px;
  border: 10px solid #CCC;
}
.part-heading .row .row div {
  padding-bottom: 4px;
}
.part-heading a {
  margin-top: 7px;
}
.part-heading b {
  color: #777;
}

/************************************************
*	UI Elements									*
************************************************/
/*
.dialog { font-size: 14px; display:none; }
.ui-widget { font-size: 14px; }
.ui-dialog-content { margin-top: 0px; }
*/
/************************************************
*	Posting comments
************************************************/
.comment-form {
  margin: 20px 0px 35px;
}

/* .comment-form-flex is not always within .comment-form. It is only when doing a new form. */
.comment-form-flex {
  margin: 0px 0px 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.comment-form-flex .comment-form-avatar {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 55px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 55px;
  -ms-flex: 0 0 55px;
  flex: 0 0 55px;
  padding-right: 20px;
}
.comment-form-flex .comment-form-avatar img {
  width: 50px;
  height: 50px;
}
.comment-form-flex .comment-form-input {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
}
.comment-form-flex .comment-form-input textarea.post {
  margin-bottom: 10px;
  background-color: var(--input-bg);
  color: var(--input-text);
  border: 1px solid var(--input-border) !important;
}
.comment-form-flex .comment-form-input textarea.post::placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.comment-form-flex .comment-form-input textarea.post::-webkit-input-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.comment-form-flex .comment-form-input textarea.post::-moz-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
.comment-form-flex .comment-form-input textarea.post:focus {
  border-color: var(--input-focus-border);
  outline: 0;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
.comment-form-flex .comment-form-input .buttons {
  height: 40px;
}
.comment-form-flex .comment-form-input .buttons .btn {
  margin: 0 2px 3px 0;
}

/************************************************
*	Activities									*
************************************************/
.act_list {
  padding: 0px 0px 10px 0px;
  margin-bottom: 5px;
}

.wrapper > .act_list:first-child {
  margin-top: 30px;
}

.thread-page {
  padding-top: 20px;
}

.act_row {
  position: relative;
  padding: 0px 0px 20px;
  clear: both;
}
.act_row .act_heading {
  padding-bottom: 6px;
  font-size: 14px;
}
.act_row .act_heading a {
  font-weight: 600;
  font-size: 15px;
  color: var(--link-color);
}
.act_row .act_avatar {
  float: left;
  width: 50px;
}
.act_row .act_avatar img, .act_row .act_avatar .circle_avatar {
  width: 100%;
  border-radius: 50%;
}
.act_row .act_with_avatar {
  padding-left: 70px;
  position: relative;
}
.act_row .act_item {
  border-bottom: 0px dashed #E8E8E8;
  position: relative;
}
.act_row .act_item .act_status {
  padding: 0px 0px 0px 0px;
  overflow: hidden;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}
.act_row .act_item .act_status img {
  width: 100%;
  margin: 20px 0px 20px 0px;
}
.act_row .act_item .act_status_full {
  max-height: 999em !important;
}
.act_row .act_item .act_status_more {
  display: none;
  clear: both;
}

.act_row, .comment_item {
  position: relative;
}
.act_row .act_actions, .comment_item .act_actions {
  position: absolute;
  top: -2px;
  right: 0px;
  opacity: 0;
  z-index: 5;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-transform: translateZ(0px);
}
.act_row .act_actions .dropdown-menu, .comment_item .act_actions .dropdown-menu {
  width: 140px;
  min-width: 100px;
  cursor: pointer;
}

.act_image {
  display: none;
}

.act_thread {
  padding: 0px 0px 0px 70px;
  margin-top: 10px;
}
.act_thread .act_row:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.act_thread .content-container {
  width: 100%;
  margin: 10px 0;
}
.act_thread .comment-form {
  display: none;
}
.act_thread .comment-form-flex .comment-form-avatar {
  padding-right: 0px;
}
.act_thread .comment-form-flex .comment-form-avatar img {
  width: 40px;
  height: 40px;
}

.itemfooter {
  padding: 0px;
  line-height: 14px;
  min-height: 20px;
}
.itemfooter a {
  font-size: 13px;
  display: inline-block;
}

.itemstats {
  display: inline;
  white-space: nowrap;
}
.itemstats [class*=icon-ei]:before, .itemstats [class*=icon-heart]:before {
  font-size: 20px;
  vertical-align: -20%;
  line-height: 25px;
}
.itemstats a {
  color: #AAA;
  font-size: 14px !important;
  font-weight: 300 !important;
  margin-right: 5px;
}
.itemstats a:hover {
  color: #777;
}

/*
ul.auto-complete-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 1500;
    max-height: 250px;
    overflow: auto;
}
*/
/*
.post_area, #thread_com {
	.btn { margin-top: 7px; }
	textarea { margin-bottom: 0px; font-size: 15px; }
	//.btn-outline-dark { padding: 3px 10px; }
	> .btn-outline-dark { margin-top: -12px; }
}

.post_type { padding: 12px 10px 0px 1px; cursor: pointer; }
.post_type:hover { opacity:.8; filter:alpha(opacity=80); float: left; }
.post_type [class*="icon-"]:before { font-size: 16px; } 
*/
/*

.comment_item .act_actions { top: 10px; }

.act_image {
	display: block;
	overflow: hidden;
	position: relative;
	margin-bottom: 10px;
	background-size: 100% auto !important;
	background-repeat: no-repeat !important;
	background-position: center center !important;
	width: 100%;
	height: 100%;
	height: 250px;
}

.act_image .image_link {
	display: block;
	height: 100%;
	width: 100%;
}

.act_image { float: left; width: 20%; margin: 5px 20px 0 0;
	img { width: 100%; height: auto; }
}	
*/
/*
.act_edit, .act_item_edit { right: 45px; height: 24px; padding-left: 10px; text-align: right; display: none; position: absolute; }
.act_title { width: 100%; padding: 6px 0px 6px 0px; line-height: 26px; }
.act_component { width: 100%; padding: 5px 0px; line-height: 22px; font-size: 16px; }


.like_thread { display: none; margin-top: 5px; }
.has_border { margin-top: 5px; border-bottom: 1px solid #E2E2E2; display: none; }
.has_comments, .has_likes { background-color: #F7F7F7; border-bottom: 1px solid #E2E2E2; }
.has_comments a, .has_likes a { color: #AAA; font-size: 85%; display: block; padding: 5px 0 5px 5px;  }
.has_comments a:hover, .has_likes a:hover { color: #777; background: #EEE; color: #999; }
.has_comments a img, .has_likes a img { vertical-align: middle; padding-right: 2px; }

.post_icon { vertical-align: middle; width: 24px; height: 24px; }

.act_hover {
	cursor: pointer;
	//background-color: #F8F7F7;
	width: 100% !important;
	max-width: 100% !important;
}

.act_expanded { background-color: #FFF !important; }
*/
/************************************************
*	Comments									*
************************************************/
/*
.comment_edit { float: right; width: 40px; text-align: right; height: 16px; display: none; }
#thread_com {
	border-top: 0px solid #E8E8E8; margin-top: 0px; }


.author { padding-bottom: 1px; display: inline; font-weight: 600; }
*/
/*
.innerbox { padding-bottom: 0px; padding-top: 0px; }
.innerbox p { margin-bottom: 5px; }
.innerbox p:not(:last-child) { margin-bottom: 20px; }
*/
/*
input#half_post { width: 100%; color: #999; }
textarea#deleted { padding-top: 5px; padding-bottom: 5px; width: 100%; height: 15px; text-align: center; }
textarea#post_logout { width: 250px; height: 90px; }
*/
.comment_item {
  margin-bottom: 0px;
  padding-top: 10px;
  border-top: 0px solid #EEE;
  border-top: 0px dashed rgba(0, 0, 0, 0.1);
}

.avatarbox {
  float: left;
  padding-bottom: 5px;
}

.outerbox {
  padding-left: 55px;
  width: 100%;
  margin-bottom: 10px;
}

img.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50px;
}

textarea.comment {
  width: 100%;
  height: 80px;
  margin-bottom: 5px;
  background-color: var(--input-bg);
  color: var(--input-text);
  border: 1px solid var(--input-border) !important;
}
textarea.comment::placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
textarea.comment::-webkit-input-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
textarea.comment::-moz-placeholder {
  color: var(--input-placeholder);
  opacity: 1;
}
textarea.comment:focus {
  border-color: var(--input-focus-border);
  outline: 0;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

#comment_list_view_all {
  display: block;
  margin: 0px 0 5px;
  color: #999;
  font-size: 12px;
}

.iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-bottom: 53.75%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
}
.iframe-wrapper iframe, .iframe-wrapper object, .iframe-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
.comment_form {
	margin-bottom: 10px;
}

.comment_form textarea {
	margin-bottom: 5px;
}
*/
@media (max-width: 450px) {
  .act_avatar {
    float: left;
    width: 32px;
  }
  .act_with_avatar {
    padding-left: 50px;
  }
  .act_thread {
    padding: 0px 15px 0px 60px;
  }
  img.avatar {
    width: 30px;
    height: 30px;
  }
  .outerbox {
    padding-left: 40px;
  }
  .comment-form .comment-form-avatar {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41px;
    -moz-box-flex: 0;
    -moz-flex: 0 0 41px;
    -ms-flex: 0 0 41px;
    flex: 0 0 41px;
  }
}
/************************************************
*	Developers								*
************************************************/
.dev-container {
  margin-top: 25px;
  font-size: 14px;
}
.dev-container .act_status .age {
  white-space: nowrap;
}
.dev-container .row {
  margin-bottom: 20px;
}
.dev-container .dev-finder {
  margin: 40px 0 20px 0;
  background-color: #F6F5F5;
  padding: 20px;
  border-radius: 30px;
  border: 1px solid #E8E8E8;
}
.dev-container .dev-finder .row {
  margin-bottom: 0px;
}
.dev-container button {
  margin-top: 15px;
}
.dev-container .stats {
  padding: 15px 20px 0 0;
  display: inline-block;
  float: right;
}
.dev-container .stats ul {
  padding: 0;
}
.dev-container .stats ul li {
  min-width: 50px;
  display: inline-block;
  list-style-type: none;
  text-align: left;
}
.dev-container .stats ul li:not(:last-child) {
  padding-right: 20px;
}
.dev-container .stats ul strong {
  font-size: 28px;
  font-weight: 400;
  display: block;
}
.dev-container .stats ul li {
  font-size: 11px;
}
.dev-container .stats ul li h3 {
  margin: 0;
}
.dev-container .stats ul a, .dev-container .stats ul li {
  color: #818486;
}
.dev-container #follow {
  width: 90px;
}
.dev-container .rank {
  display: none;
}
.dev-container .dev-avatar {
  padding-left: 0px;
  padding-right: 10px;
}
.dev-container .dev-avatar img {
  margin-left: 0px;
  max-width: 80px;
  max-height: 80px;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 50%;
}

.show-rank.dev-container .dev-avatar img {
  margin-left: 60px;
}
.show-rank.dev-container .rank {
  position: absolute;
  left: 15px;
  top: 0;
  font-weight: 400;
  font-size: 22px;
  color: #818486;
  display: block;
}
@media (max-width: 767px) {
  .show-rank.dev-container .large {
    font-size: 20px;
  }
  .show-rank.dev-container .rank {
    left: 5px;
    font-size: 18px;
  }
  .show-rank.dev-container .stats {
    float: none;
  }
}
@media (max-width: 600px) {
  .show-rank.dev-container .dev-avatar img {
    max-width: 50px;
    max-height: 50px;
    margin-left: 40px;
  }
}

/************************************************/
.content-edit {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}
.content-edit [class*=icon-]:before {
  font-size: 20px;
}

/*
@media screen and (max-width: 1200px) {
	.content-edit {
		display: none !important;
	}

	.content-edit-mobile {
		display: block !important;
	}
}
*/
.content-edit-footer {
  width: 100%;
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 60px;
  z-index: 100;
  background: var(--footer-bg);
  border-top: 0.05em solid var(--navbar-border);
}
.content-edit-footer button {
  float: right;
  text-transform: uppercase;
  margin: 13px 8px 0 0;
  font-weight: 400 !important;
  letter-spacing: 0.1em;
}
.content-edit-footer button.btn-link:hover {
  text-decoration: none;
}
.content-edit-footer #delete_snippet, .content-edit-footer #un-publish {
  color: #FC5457;
}
.content-edit-footer #delete_snippet:hover, .content-edit-footer #un-publish:hover {
  text-decoration: none;
  opacity: 0.6;
  color: #FC5457;
}
.content-edit-footer #delete_snippet, .content-edit-footer #clone {
  float: left;
  padding: 4px 8px;
}
.content-edit-footer #delete_snippet {
  margin: 13px 0px 13px 8px;
}
@media (max-width: 475px) {
  .content-edit-footer {
    height: 50px;
  }
  .content-edit-footer #delete_snippet, .content-edit-footer #clone {
    float: left;
    padding: 4px 6px;
  }
  .content-edit-footer button {
    margin-top: 8px;
    letter-spacing: 0.02em;
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-edit-footer button:hover {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.content-edit .btn {
  width: 50px;
  height: 50px;
}

.CodeMirror {
  min-height: 130px !important;
  padding: 8px 10px;
  margin-bottom: 5px;
  color: var(--text-color);
  background-color: var(--input-bg);
  border: 1px solid var(--input-border) !important;
  font-weight: 300;
  cursor: text;
}
.CodeMirror .CodeMirror-scroll {
  min-height: 130px !important;
}
.CodeMirror .CodeMirror-lines {
  color: var(--text-color);
}
.CodeMirror .CodeMirror-line {
  color: var(--text-color);
}
.CodeMirror textarea {
  width: 10px !important;
}
.CodeMirror .CodeMirror-cursor {
  border-left-color: var(--text-color);
}
.CodeMirror .CodeMirror-selectedtext {
  background-color: #b3d4fc;
  color: #000;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
}

.comment-form-input .CodeMirror, #post_message .CodeMirror {
  border-radius: 3px;
  border: 1px solid var(--input-border) !important;
  min-height: 70px !important;
}
.comment-form-input .CodeMirror .CodeMirror-scroll, #post_message .CodeMirror .CodeMirror-scroll {
  min-height: 70px !important;
}

.editor-toolbar {
  opacity: 1 !important;
  border: 1px solid var(--input-border) !important;
  border-bottom: none !important;
  border-radius: 3px 3px 0 0 !important;
}
.editor-toolbar a {
  opacity: 0.8;
}
.editor-toolbar a:hover {
  color: #333 !important;
  background: #e8e8e8 !important;
  border-color: #adadad !important;
}
.editor-toolbar.fixed {
  position: fixed;
  top: 67px;
  border-bottom: 1px solid var(--light-grey);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: var(--navbar-bg);
  z-index: 1030;
  margin-left: 5px;
}
.editor-toolbar.fixed:hover {
  opacity: 1 !important;
}
.editor-toolbar.fixed a {
  opacity: 0.8;
}
.editor-toolbar button.heading {
  min-height: 24px;
}

#image-class-modal .modal-body {
  font-size: 14px;
}
#image-class-modal .modal-body .button-div button {
  width: 32%;
  line-height: 30px;
  font-weight: 400;
  font-size: 16px;
  border: none;
}
#image-class-modal .modal-body .button-div {
  margin-bottom: 12px;
}
#image-class-modal .modal-body label {
  font-weight: 300;
}
#image-class-modal .modal-body label #embed-screenshot {
  margin: 20px 3px 0 15px;
}
#image-class-modal [class*=icon-]:before {
  font-size: 48px;
  color: #676767;
  margin: 10px 0px 3px;
}

#image-cover-modal .modal-dialog {
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 900px) {
  #image-cover-modal .modal-dialog {
    margin-left: calc(20px + 580 * (100vw - 900px) / 1200);
    margin-right: calc(20px + 580 * (100vw - 900px) / 1200);
  }
}
@media screen and (min-width: 2100px) {
  #image-cover-modal .modal-dialog {
    margin-left: 600px;
    margin-right: 600px;
  }
}
#image-cover-modal .modal-dialog {
  position: relative;
  width: auto;
}
#image-cover-modal .modal-dialog .image-select {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
#image-cover-modal .modal-dialog .image-select div {
  display: block;
  min-width: 20%;
  height: auto;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  padding: 0 5px 5px 0;
}
#image-cover-modal .modal-dialog .image-select div img {
  width: 100%;
  height: 100%;
  border: 2px solid #FFF;
}
#image-cover-modal .modal-dialog .image-select div img:hover {
  border: 2px solid var(--link-color);
  cursor: pointer;
}
@media (max-width: 800px) {
  #image-cover-modal .modal-dialog .image-select div {
    min-width: 25%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
  }
}
@media (max-width: 500px) {
  #image-cover-modal .modal-dialog .image-select div {
    min-width: 33%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
  }
}

#statistics-modal .modal-dialog {
  top: 400px;
}

#progress-bar-outer {
  background-color: #BAD3F2;
  position: fixed;
  left: 0;
  top: 65px;
  height: 10px;
  width: 100%;
  display: none;
  z-index: 1031;
}
#progress-bar-outer #progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background-color: #4B95F6;
  transition: width 2.5s ease;
  z-index: 2;
}

/*********************************************************************************/
.snippet_block #markdown {
  margin-bottom: -20px;
}
.snippet_block {
  margin-top: 30px;
}
.snippet_block h1, .snippet_block h2, .snippet_block h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  clear: both;
}
.snippet_block h1.secondary {
  display: inline-block;
  margin-bottom: 0px;
}
.snippet_block .help-secondary {
  top: -10px;
  left: 4px;
  position: relative;
  display: inline-block;
}
.snippet_block .description {
  clear: both;
  position: relative;
  margin-bottom: 70px;
}
.snippet_block .description h1:first-child,
.snippet_block .description h2:first-child,
.snippet_block .description h3:first-child {
  margin-top: 0;
}
.snippet_block .description h2, .snippet_block .description h3 {
  font-weight: 300;
}
.snippet_block .description p {
  margin-bottom: 30px;
  clear: both;
}
.snippet_block .description ul, .snippet_block .description ol {
  margin-bottom: 25px;
  clear: both;
}
.snippet_block .description ol ul {
  margin-bottom: 0px;
  list-style-type: disc;
}
.snippet_block .description img {
  max-width: 100%;
}
.snippet_block .description .img-left {
  float: left;
  width: 40%;
  margin: 0 20px 30px 0;
  clear: both;
}
.snippet_block .description .img-right {
  float: right;
  width: 40%;
  margin: 0 0 30px 20px;
}
.snippet_block .description {
  /*
  .img-box {
  	@include flexbox;
  	@include flex-direction(row);
  	@include flex-wrap(nowrap);
  	@include justify-content(flex-start);
  }				
  .img-left { @include flex(0, 0, 50%); margin: 0 20px 30px 0; }
  .img-right { @include flex(0, 0, 50%); margin: 0 0 30px 20px; }

  */
}
.snippet_block .description .half {
  width: 50%;
}
.snippet_block .description .img-left.half {
  margin: 0 0px 30px 0;
  padding-right: 5px;
}
.snippet_block .description .img-right.half {
  margin: 0 0px 30px 0px;
  padding-left: 5px;
}
@media (max-width: 800px) {
  .snippet_block .description .img-left {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .snippet_block .description .img-right {
    width: 100%;
    margin: 0 0 30px 0;
  }
}
.snippet_block .description a.lightgallery:hover {
  opacity: 1;
}
.snippet_block .description table thead tr th {
  font-weight: 600;
}
.snippet_block .description table tr td {
  vertical-align: top;
}
.snippet_block .description table tr td:last-child {
  padding-left: 20px;
}
.snippet_block .description table {
  margin-bottom: 30px;
}
.snippet_block .description:empty {
  display: none;
}
.snippet_block .description blockquote p:last-child {
  margin-bottom: 0px;
}

.snippet-page .act_list {
  margin-bottom: 100px;
}
.snippet-page .act_list.act_reviews {
  margin-bottom: 0px;
}

/*
.code_block {
	margin-top: 30px;
	margin-bottom: 30px;
	font-size: 14px;
}
*/
#components {
  margin: 20px 0 100px;
}
#components .component_row {
  display: block;
  clear: both;
  min-height: 35px;
}
#components .table {
  margin-bottom: 10px;
}
#components .table tr {
  position: relative;
}
#components .table tr:hover {
  background-color: var(--table-hover-bg);
}
#components .table td {
  padding: 10px 5px;
  border-top: 0.01em solid var(--light-grey);
}
#components .table tr:last-child td {
  border-bottom: 0.01em solid var(--light-grey);
}
#components .table .tag {
  width: 140px;
}
@media screen and (min-width: 600px) {
  #components .table .tag {
    width: calc(140px + 50 * (100vw - 600px) / 1320);
  }
}
@media screen and (min-width: 1920px) {
  #components .table .tag {
    width: 190px;
  }
}
#components .table .tag h4 {
  margin: 0;
  white-space: nowrap;
  font-weight: 400;
  display: inline;
  margin-right: 5px;
  line-height: 28px;
  letter-spacing: -0.03em;
}
#components .table .tag h4 {
  font-size: 18px;
}
@media screen and (min-width: 400px) {
  #components .table .tag h4 {
    font-size: calc(18px + 0 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #components .table .tag h4 {
    font-size: 18px;
  }
}
#components .table .tag h4 {
  font-family: "Roboto Condensed", "Open Sans";
}
#components .table .tag .show_add_component_link {
  margin-top: 7px;
  font-size: 12px;
  color: var(--grey);
  display: block;
  height: 21px;
}
#components .table .tag .show_add_component_link span {
  vertical-align: top;
  line-height: 11px;
}
#components .table .tag .show_add_component_link [class*=icon-]:before {
  font-size: 20px;
  line-height: 5px;
  color: #999;
}
#components .table .tag .show_add_component_link + h4 {
  display: none !important;
}
#components .table .name {
  vertical-align: middle;
  position: relative;
}
#components .table .name a {
  font-weight: 400;
}
#components .table .name a {
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  #components .table .name a {
    font-size: calc(14px + 3 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #components .table .name a {
    font-size: 17px;
  }
}
#components .table .name .component_delete {
  margin: 0 4px 0 0;
}
#components .table .name input {
  margin-bottom: 0;
  max-width: 100%;
  border-radius: 2px 0px 0px 2px;
}
#components .table .name #add_component {
  font-weight: 300;
  font-size: 14px;
}
#components .table .name .matches a {
  color: #777;
}
#components .table .name .matches a {
  font-size: 10px;
}
@media screen and (min-width: 400px) {
  #components .table .name .matches a {
    font-size: calc(10px + 4 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #components .table .name .matches a {
    font-size: 14px;
  }
}
#components .table .name .matches a {
  white-space: nowrap;
}
#components .table .name .matches a:hover {
  color: #AAA;
}
#components .table .name .vendor {
  font-size: 11px;
}
@media screen and (min-width: 400px) {
  #components .table .name .vendor {
    font-size: calc(11px + 5 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #components .table .name .vendor {
    font-size: 16px;
  }
}
#components .table .name .vendor {
  font-weight: 400;
  display: none;
}
#components .table .price {
  vertical-align: top;
  text-align: right;
  width: 80px;
  padding: 10 20 10px 20px;
  font-weight: 300;
}
#components .table .price {
  font-size: 15px;
}
@media screen and (min-width: 400px) {
  #components .table .price {
    font-size: calc(15px + 4 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #components .table .price {
    font-size: 19px;
  }
}
#components .table .price {
  color: var(--grey);
  font-weight: 400;
}
#components .table .price input {
  margin-top: 5px;
}
@media (min-width: 601px) {
  #components .table .price input {
    display: none;
  }
}
#components .table .quantity {
  vertical-align: top;
  width: 50px;
}
@media (max-width: 600px) {
  #components .table .quantity {
    display: none;
  }
}
#components .table .component_quantity {
  padding: 0 0 0 7px;
  margin-bottom: 0;
  line-height: 24px;
  height: 24px;
  width: 50px;
  display: inline-block;
}
#components .table .component_quantity {
  font-size: 12px;
}
@media screen and (min-width: 400px) {
  #components .table .component_quantity {
    font-size: calc(12px + 6 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #components .table .component_quantity {
    font-size: 18px;
  }
}
#components .table .typeahead__container {
  font-family: "Open Sans", Helvetica, Arial;
  font-size: 16px;
  border-width: 0.5px;
}
#components .table .typeahead__container .typeahead__field {
  color: var(--input-text);
}
#components .table .typeahead__container .typeahead__field input {
  background-color: var(--input-bg) !important;
  color: var(--input-text) !important;
  border-color: var(--input-border) !important;
}
#components .table .typeahead__container .typeahead__field input::placeholder {
  color: var(--input-placeholder);
}
#components .table .typeahead__container .typeahead__field input:focus, #components .table .typeahead__container .typeahead__field input:active {
  border-color: var(--input-focus-border) !important;
  outline: none;
}
#components .table .typeahead__container .typeahead__button button {
  background-color: var(--button-bg) !important;
  color: var(--button-text) !important;
  border-color: var(--input-border) !important;
}
#components .table .typeahead__container {
  background-color: var(--input-bg);
  color: var(--input-text);
}
#components .table .typeahead__container .typeahead__list,
#components .table .typeahead__container .typeahead__dropdown {
  padding: 0px;
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background-color: var(--dropdown-bg) !important;
  border-color: var(--dropdown-border) !important;
}
#components .table .typeahead__container .typeahead__list .typeahead__item,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item {
  border-top: 0.5px solid var(--light-grey);
  border-bottom: none;
  border: none;
  background-color: var(--dropdown-bg);
  color: var(--dropdown-text);
}
#components .table .typeahead__container .typeahead__list .typeahead__item:first-child,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item:first-child {
  border-top: none;
}
#components .table .typeahead__container .typeahead__list .typeahead__item:hover, #components .table .typeahead__container .typeahead__list .typeahead__item.typeahead__item--active,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item:hover,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item.typeahead__item--active {
  background-color: var(--dropdown-hover-bg);
}
#components .table .typeahead__container .typeahead__list .typeahead__item,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item {
  padding: 0px;
}
#components .table .typeahead__container .typeahead__list .typeahead__item:first-child a,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item:first-child a {
  padding-top: 20px;
}
#components .table .typeahead__container .typeahead__list .typeahead__item:last-child a,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item:last-child a {
  padding-bottom: 20px;
}
#components .table .typeahead__container .typeahead__list .typeahead__item a,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  padding: 10px 15px;
  color: var(--dropdown-text);
}
#components .table .typeahead__container .typeahead__list .typeahead__item a .image,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item a .image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 50px;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
}
#components .table .typeahead__container .typeahead__list .typeahead__item a .image img,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item a .image img {
  width: 50px;
  height: 50px;
}
#components .table .typeahead__container .typeahead__list .typeahead__item a .name,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item a .name {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  color: var(--link-color);
  font-size: 15px;
  padding: 0px 0px 0px 8px;
}
#components .table .typeahead__container .typeahead__list .typeahead__item a .name .vendor, #components .table .typeahead__container .typeahead__list .typeahead__item a .name .matches,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item a .name .vendor,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item a .name .matches {
  font-size: 13px;
  display: block;
  color: var(--body-color);
  font-weight: 400;
}
#components .table .typeahead__container .typeahead__list .typeahead__item a .matches,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item a .matches {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 50px;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
  text-align: center;
  padding: 2px 0 0 8px;
}
#components .table .typeahead__container .typeahead__list .typeahead__item a .matches [class*=icon-]:before,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item a .matches [class*=icon-]:before {
  font-size: 15px;
  color: var(--grey);
}
#components .table .typeahead__container .typeahead__list .typeahead__item a .price,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item a .price {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 65px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 65px;
  -ms-flex: 0 0 65px;
  flex: 0 0 65px;
  padding: 0;
  margin: 0px 10px 0px 15px;
  font-weight: 400;
  color: var(--grey);
}
#components .table .typeahead__container .typeahead__list .typeahead__item a .price,
#components .table .typeahead__container .typeahead__dropdown .typeahead__item a .price {
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  #components .table .typeahead__container .typeahead__list .typeahead__item a .price,
  #components .table .typeahead__container .typeahead__dropdown .typeahead__item a .price {
    font-size: calc(14px + 2 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #components .table .typeahead__container .typeahead__list .typeahead__item a .price,
  #components .table .typeahead__container .typeahead__dropdown .typeahead__item a .price {
    font-size: 16px;
  }
}
#components .table .typeahead__container .typeahead__button {
  vertical-align: top;
}
#components .table .typeahead__container .typeahead__empty a {
  font-size: 15px;
  color: var(--grey);
}
#components .table .typeahead__container button {
  height: 34px;
}
#components .table .typeahead__container .typeahead__list,
#components .table .typeahead__container .typeahead__dropdown {
  background-color: var(--dropdown-bg) !important;
}
#components .table .typeahead__container .typeahead__list > li,
#components .table .typeahead__container .typeahead__dropdown > li {
  background-color: var(--dropdown-bg) !important;
}
#components .table .typeahead__container .typeahead__list > li > a,
#components .table .typeahead__container .typeahead__dropdown > li > a {
  color: var(--dropdown-text) !important;
  background-color: var(--dropdown-bg) !important;
}
#components .table .typeahead__container .typeahead__list > li > a:hover, #components .table .typeahead__container .typeahead__list > li > a:focus,
#components .table .typeahead__container .typeahead__dropdown > li > a:hover,
#components .table .typeahead__container .typeahead__dropdown > li > a:focus {
  background-color: var(--dropdown-hover-bg) !important;
  color: var(--dropdown-text) !important;
}
#components .table .typeahead__container .typeahead__list > li.active > a,
#components .table .typeahead__container .typeahead__dropdown > li.active > a {
  background-color: var(--dropdown-hover-bg) !important;
  color: var(--dropdown-text) !important;
}
#components .table .typeahead__container .typeahead__field {
  color: var(--input-text);
}
#components .table .typeahead__container .typeahead__field input {
  background-color: var(--input-bg) !important;
  color: var(--input-text) !important;
  border-color: var(--input-border) !important;
}
#components .table .typeahead__container .typeahead__field input::placeholder {
  color: var(--input-placeholder);
}
#components .table .typeahead__container .typeahead__field input:focus, #components .table .typeahead__container .typeahead__field input:active {
  border-color: var(--input-focus-border) !important;
  outline: none;
}
#components .table .typeahead__container .typeahead__button button {
  background-color: var(--button-bg) !important;
  color: var(--button-text) !important;
  border-color: var(--input-border) !important;
}
#components .table .typeahead__container .typeahead__field::after,
#components .table .typeahead__container .typeahead__field::before {
  border-color: var(--spinner-color);
}
#components .table {
  /********************************************************************************/
}
#components .table #add_component_mobile_template .modal {
  overflow-y: auto;
}
#components .table #add_component_mobile_template .modal.fade.in .modal-dialog {
  top: 0;
  -webkit-transform: none;
  transform: none;
}
#components .table #add_component_mobile_template .modal .close {
  display: block;
}
#components .table #add_component_mobile_template .modal .modal-header, #components .table #add_component_mobile_template .modal .modal-body {
  padding: 15px;
}
#components .table #add_component_mobile_template .modal .modal-header h1 {
  margin-top: 10px;
}
#components .table #add_component_mobile_template .modal .modal-header {
  padding-bottom: 0px;
}
#components .table #add_component_mobile_template .modal .modal-dialog .typeahead__dropdown, #components .table #add_component_mobile_template .modal .modal-dialog .typeahead__list {
  margin-top: 15px;
  position: relative;
  box-shadow: none;
}
#components .table #add_component_mobile_template .modal .modal-dialog .typeahead__container .typeahead__list .typeahead__item a {
  padding: 8px 0px;
}
#components .table #add_component_mobile_template .modal .modal-dialog .typeahead__container .typeahead__list .typeahead__item a .image {
  padding-left: 7px;
}
#components .table #add_component_mobile_template .modal .modal-dialog .typeahead__container .typeahead__list .typeahead__item a .name .title {
  font-size: 14px;
}
#components .table #add_component_mobile_template .modal .modal-dialog .typeahead__container .typeahead__list .typeahead__item a .name .vendor {
  font-size: 12px;
}
#components .table #add_component_mobile_template .modal .modal-dialog .typeahead__container .typeahead__list .typeahead__item a .matches {
  display: none;
}
#components .table #add_component_mobile_template .modal .modal-dialog .modal-footer {
  margin-top: 0px;
}
#components .total_vendors {
  font-size: 12px;
}
@media screen and (min-width: 400px) {
  #components .total_vendors {
    font-size: calc(12px + 2 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #components .total_vendors {
    font-size: 14px;
  }
}
#components .total_vendors {
  padding-left: 0px;
}
#components {
  /********************************************************************************/
}
@media only screen and (max-width: 600px) {
  #components table, #components tbody, #components tr {
    display: block;
  }
  #components .table tr {
    margin-top: 10px;
  }
  #components .table tr:hover {
    background-color: #FFF;
  }
  #components .table tr:last-child td {
    border-bottom: 0px;
  }
  #components .table .tag {
    border: none;
    position: relative;
    padding: none;
    display: none;
  }
  #components .table .first-tag .tag {
    border-bottom: var(--light-grey) 1px solid;
    width: 100%;
    max-width: 100%;
    display: inline-block;
    padding: 15px 0 5px 0px;
    margin-bottom: 15px;
  }
  #components .table .first-tag .tag .show_add_component_link {
    float: right;
  }
  #components .table .first-tag .tag .show_add_component_link + h4 {
    display: block !important;
  }
  #components .table .first-tag:nth-child(1) {
    margin-top: 0px;
  }
  #components .table .first-tag:nth-child(1) .tag {
    padding-top: 0px;
  }
  #components .table .first-tag:nth-child(1) .tag #add_component {
    top: -7px;
  }
  #components .table .name, #components .table .price {
    display: table-cell;
    border: none;
    padding: 0;
    vertical-align: top;
  }
  #components .table .name {
    width: 100%;
  }
  #components .table .price {
    padding-left: 30px;
  }
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: var(--table-stripe);
}

@media only screen and (max-width: 600px) {
  .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: transparent;
  }
  .table-striped > tbody > tr:nth-of-type(even):hover {
    background-color: transparent;
  }
  #components .table tr:hover {
    background-color: var(--table-hover-bg);
  }
}
/********************************************************************************/
#price-table {
  margin: 0 0px 15px;
}
#price-table #price-table-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px 15px;
}
#price-table #price-table-row:nth-child(odd) {
  background-color: var(--table-stripe);
}
#price-table #price-table-row:nth-child(1) {
  padding-top: 5px;
}
#price-table #price-table-row:hover {
  background-color: var(--table-stripe);
}
#price-table #price-table-row .m {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 108px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 108px;
  -ms-flex: 0 0 108px;
  flex: 0 0 108px;
  max-width: 108px;
  color: var(--grey);
  font-size: 13px;
  line-height: 16px;
}
#price-table #price-table-row .m [class*=icon-]:before {
  font-size: 16px;
  margin: 0 1px 0 0;
}
#price-table #price-table-row .m {
  padding-left: 10px;
}
#price-table #price-table-row .v {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
#price-table #price-table-row .v {
  font-size: 12px;
}
@media screen and (min-width: 400px) {
  #price-table #price-table-row .v {
    font-size: calc(12px + 2 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #price-table #price-table-row .v {
    font-size: 14px;
  }
}
#price-table #price-table-row .p {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 65px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 65px;
  -ms-flex: 0 0 65px;
  flex: 0 0 65px;
  max-width: 65px;
}
#price-table #price-table-row .p {
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  #price-table #price-table-row .p {
    font-size: calc(14px + 2 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #price-table #price-table-row .p {
    font-size: 16px;
  }
}
#price-table #price-table-row .p {
  color: var(--grey);
  text-align: right;
  margin: 0px 15px 0px 15px;
}
@media (max-width: 600px) {
  #price-table #price-table-row {
    padding: 4px 0px;
  }
  #price-table #price-table-row .m {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 65px;
    -moz-box-flex: 0;
    -moz-flex: 0 0 65px;
    -ms-flex: 0 0 65px;
    flex: 0 0 65px;
    max-width: 65px;
  }
}

/*
#price-modal {
	.modal-dialog {
		//width: 70%;
		top: 400px;
		@include fluid-type(margin-left margin-right, 900px, 2100px, 20px, 400px);
		position: relative;
		width: auto;

		.modal-header { border: none; }

		.modal-body { padding: 0;
			#components { margin: 0;
				.table { margin: 0; table-layout:fixed; width: 100%;
					tr { cursor: pointer; }	
					td { padding: 6px 4px; }
					.name {
						a { @include fluid-type(font-size, 400px, 1920px, 13px, 14px); }
						white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
					}	
					.matches { padding: 10px 20px 0; white-space: nowrap; width: 80px; font-weight: 400; font-weight: 600; color: $grey; }
					.tag { 
						h4 { @include fluid-type(font-size, 400px, 1920px, 14px, 18px); }
						@include fluid-type(width, 400px, 1920px, 170px, 180px);
						max-width: 250px;
					}
					.price { padding-right: 25px; width: 100px; }
				}
			}	
		}	

		.modal-footer { border: none; }
	}	
}
*/
.prices {
  float: right;
  position: relative;
  margin-top: 5px;
}
.prices .help {
  position: absolute;
  top: 6px;
  left: -9px;
}
.prices .help [class*=icon-]:before {
  font-size: 18px;
}
.prices .total_price, .prices .base_price {
  font-size: 20px;
  font-weight: 300;
  width: 110px;
  text-align: right;
  margin-top: -2px;
  clear: right;
}
.prices .total_price:before, .prices .base_price:before {
  content: "Total:";
  position: absolute;
  left: -45px;
}
.prices .total_price.gear:before {
  content: "Gear Total:";
  left: -85px;
}
.prices .base_price {
  font-size: 23px;
  font-weight: 400;
  margin-top: 5px;
}
.prices .base_price:before {
  content: "Base:";
  position: absolute;
  left: -68px;
  font-weight: 300;
}

#screenshots {
  margin-bottom: 40px;
  margin-right: -10px;
  overflow: hidden;
}

.tooltip .tooltip-inner {
  line-height: 1.2em;
  text-align: left;
  opacity: 0.9;
  font-size: 14px;
  padding: 5px 10px;
  max-width: 250px;
}

.snippet-footer {
  margin: -15px auto 50px;
  position: relative;
}
.snippet-footer h3 {
  margin-bottom: 30px;
}
.snippet-footer h3 img {
  width: 70px;
  border-radius: 50%;
  margin-right: 10px;
}
.snippet-footer h3 a {
  color: #777;
}
.snippet-footer h3 a:hover {
  color: #999;
}
.snippet-footer h3 a.active {
  font-weight: bold;
  color: #555;
}
.snippet-footer .btn {
  margin-bottom: 5px;
}
.snippet-footer {
  /*
  @media (max-width: 600px) {
  	& { margin: 30px auto 90px; }
  }
  */
}

#screenshots, .lightgallery-thread {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
#screenshots .image_preview, .lightgallery-thread .image_preview {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.3%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 33.3%;
  -ms-flex: 0 0 33.3%;
  flex: 0 0 33.3%;
  max-width: 33.3%;
  padding: 0px 10px 0 0;
  margin-bottom: 10px;
  position: relative;
}
#screenshots .image_preview > a:hover, .lightgallery-thread .image_preview > a:hover {
  opacity: 1;
}
#screenshots .image_preview > a:hover:after, .lightgallery-thread .image_preview > a:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  right: 10px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
#screenshots .image_preview img, .lightgallery-thread .image_preview img {
  width: 100%;
  height: auto;
}
#screenshots .image_preview .handle, .lightgallery-thread .image_preview .handle {
  position: absolute;
  top: 0;
  bottom: 10px;
  left: 0;
  right: 10px;
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
#screenshots .image_preview .handle:active, .lightgallery-thread .image_preview .handle:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}
#screenshots .image_preview .image_controls, .lightgallery-thread .image_preview .image_controls {
  position: absolute;
  top: 10px;
  right: 15px;
}
#screenshots .image_preview .image_controls a, .lightgallery-thread .image_preview .image_controls a {
  float: left;
  display: block;
  padding: 5px;
  opacity: 0;
}
#screenshots .image_preview:hover .image_controls a, .lightgallery-thread .image_preview:hover .image_controls a {
  opacity: 1;
}
@media (max-width: 700px) {
  #screenshots .image_preview, .lightgallery-thread .image_preview {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 450px) {
  #screenshots .image_preview, .lightgallery-thread .image_preview {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.lightgallery-thread {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.lightgallery-thread .image_preview {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 10px 0 0;
  margin-bottom: 10px;
  min-height: auto;
}
.lightgallery-thread .image_preview .handle {
  display: none;
}
@media (max-width: 800px) {
  .lightgallery-thread .image_preview {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
  }
}
@media (max-width: 500px) {
  .lightgallery-thread .image_preview {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 950px) {
  #components .table .tag {
    vertical-align: top;
  }
  #components .table .tag h4 {
    white-space: normal;
  }
}
@media screen and (max-width: 650px) {
  #screenshots img {
    width: 100%;
  }
  #components .table {
    /*
    .tag {
    	vertical-align: top;
    	//width: 140px;
    	h4 { white-space: normal; line-height: 20px; }
    }

    .price { padding-left: 10px; width: 50px; }

    .quantity {
    	width: 50px;
    	.component_quantity { line-height: 24px; height: 24px; }
    }	
    */
  }
}
/*********************************************************************************/
.review-page .total_price, .review-page .base_price {
  display: none;
}

/*********************************************************************************/
/* Parts list */
.parts .see-all {
  margin-top: -30px;
}
.parts .parts-filters {
  margin: 0 0px 10px 0px;
  padding: 0 0px 15px 0px;
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--light-grey);
  position: relative;
  height: 40px;
  max-width: 100%;
}
.parts .parts-filters .tally {
  font-size: 14px;
  position: absolute;
  left: 0px;
  bottom: 8px;
}
.parts .select2-container--default {
  z-index: 4;
  height: auto;
  opacity: 0.9;
  min-width: 180px;
  right: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -webkit-transform: translateZ(0px);
}
.parts .select2-container--default:hover {
  opacity: 1;
}
.parts .select2-container--default .select2-selection--single {
  border: 0.01em solid var(--select2-border);
  background-color: var(--select2-bg);
  color: var(--select2-text);
}
.parts .select2-container--default .select2-selection {
  border-radius: 0px;
  padding: 0px 0px;
  height: auto;
  font-size: 14px;
  background-color: var(--select2-bg);
  color: var(--select2-text);
}
.parts .select2-container--default .select2-selection .select2-selection__arrow {
  top: 3px;
  right: 3px;
}
.parts .select2-container--default .select2-selection .select2-selection__rendered {
  color: var(--select2-text);
}
.parts .select2-container--default .select2-search--dropdown {
  padding: 8px 10px 0px;
  background-color: var(--select2-bg);
}
.parts .select2-container--default .select2-search--dropdown input {
  background-color: var(--select2-bg);
  color: var(--select2-text);
  border-color: var(--select2-border);
}
.parts .select2-container--default .select2-dropdown {
  border-radius: 0px !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-color: var(--select2-bg);
  border-color: var(--select2-border);
}
.parts .select2-container--default .select2-dropdown li {
  padding: 7px 20px;
  font-weight: 400;
  font-size: 14px;
  color: var(--select2-text);
}
.parts .select2-container--default .select2-dropdown li:hover, .parts .select2-container--default .select2-dropdown li.select2-results__option--highlighted {
  background-color: var(--select2-hover-bg);
  color: var(--select2-text);
}
.parts .select2-container--default .select2-results li {
  line-height: 20px;
}
.parts .select2-container--default .select2-results > .select2-results__options {
  max-height: 400px !important;
}
.parts .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--select2-hover-bg);
  color: var(--select2-text);
}
.parts .select2-container--open {
  opacity: 1;
}
/* Standalone selector as fallback */
.parts-list-grid {
  margin: 0 -5px 40px -5px;
  clear: both;
  padding: 10px 0 0;
  overflow: hidden;
  opacity: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}

.parts .parts-list-grid {
  margin: 0 -5px 40px -5px;
  clear: both;
  padding: 10px 0 0;
  overflow: hidden;
  opacity: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.parts .parts-list-grid .part {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: translateZ(0px);
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 25%;
  -moz-box-flex: 1;
  -moz-flex: 1 0 25%;
  -ms-flex: 1 0 25%;
  flex: 1 0 25%;
  max-width: 25%;
  position: relative;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.9em;
  padding: 0 8px;
}
.parts .parts-list-grid .part:hover .part-frame {
  background-color: var(--table-hover-bg);
}
.parts .parts-list-grid .part .part-frame {
  border: 0.1em solid var(--part-frame-border);
  height: 100%;
  width: 100%;
  padding: 15px;
  background-color: var(--background-color);
}
.parts .parts-list-grid .part .part-frame .image {
  margin-bottom: 20px;
  position: relative;
  margin: 0px 0px 20px;
}
.parts .parts-list-grid .part .part-frame .image img {
  width: 100%;
  display: block;
  min-height: 150px;
}
.parts .parts-list-grid .part .part-frame a {
  display: block;
  z-index: 12;
}
.parts .parts-list-grid .part .part-frame.promoted .image:before {
  position: absolute;
  left: auto;
  text-align: center;
  text-transform: uppercase;
  z-index: 20;
  height: 33px;
  content: "Promoted";
  color: #FFF;
  font-weight: 500;
  opacity: 1 !important;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  -webkit-transform: translateZ(0px);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  border-bottom: 30px solid #EC4A3D;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  width: 130px;
  top: 15px;
  right: -22px;
  line-height: 35px;
  padding: 3px 0px;
  font-size: 13px;
  top: 10px;
  right: -38px;
}
.parts .parts-list-grid .part .part-frame.promoted .image {
  /*
  &:after {
  	position: absolute;
  	content: '';

  	@if $type == 'part' {
  		border-top: 30px solid #FFF;
  		border-right: 30px solid #FFF;
  		top: -40px; left: 0; right: -40px; bottom: 0;
  	} @else {
  		border-top: 10px solid #FFF;
  		border-right: 30px solid #FFF;
  		top: -10px; left: 0; right: -20px; bottom: 0;
  		color: #000;
  	}
  	z-index: 11;
  }
  */
}
.parts .parts-list-grid .part .part-frame .name {
  padding-top: 30px;
}
.parts .parts-list-grid .part .part-frame .name a {
  color: var(--text-color);
  font-weight: 200;
}
.parts .parts-list-grid .part .part-frame .name {
  max-width: 100%;
}
.parts .parts-list-grid .part .part-frame .vendor {
  font-weight: 400;
  color: var(--text-color);
}
.parts .parts-list-grid .part .part-frame .price {
  font-weight: 400;
  font-size: 18px;
  color: var(--text-color);
}
.parts .parts-list-grid .part .part-frame .matches {
  float: left;
}
.parts .parts-list-grid .part .part-frame .matches a {
  color: var(--text-color);
  font-size: 17px;
  font-weight: 600;
}
.parts .parts-list-grid .part .part-frame .matches a [class*=icon-]:before {
  font-size: 22px;
}
.parts {
  /*
  @media (max-width: 1600px) {
  	.parts-list-grid .part { @include flex(1, 0, 25%); max-width: 25%;  }
  }
  */
}
@media (max-width: 1200px) {
  .parts .parts-list-grid .part {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 33.3%;
    -moz-box-flex: 1;
    -moz-flex: 1 0 33.3%;
    -ms-flex: 1 0 33.3%;
    flex: 1 0 33.3%;
    max-width: 33.3%;
  }
}
@media (max-width: 900px) {
  .parts .parts-list-grid .part {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 50%;
    -moz-box-flex: 1;
    -moz-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 650px) {
  .parts .parts-list-grid .part {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-box-flex: 1;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 580px) {
  .parts .parts-list-grid .part {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 50%;
    -moz-box-flex: 1;
    -moz-flex: 1 0 50%;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 450px) {
  .parts .parts-list-grid .part {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 100%;
    -moz-box-flex: 1;
    -moz-flex: 1 0 100%;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.parts .pages {
  margin: 0 0 10px 0;
}
.parts .pages .btn-previous {
  float: left;
}
.parts .pages .btn-next {
  float: right;
}
.parts .parts-list {
  margin: 10px 0 70px !important;
}
.parts .parts-list .part {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding-top: 15px;
  margin-bottom: 15px;
  border-top: 0.05em solid #555;
}
.parts .parts-list .part:first-child {
  border: none;
  padding-top: 0;
}
.parts .parts-list .part .image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 140px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 140px;
  -ms-flex: 0 0 140px;
  flex: 0 0 140px;
  padding-right: 15px;
}
.parts .parts-list .part .image img {
  width: 125px;
  height: 125px;
}
.parts .parts-list .part .name {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}
.parts .parts-list .part .name .label {
  margin-top: 0px;
  vertical-align: text-top;
  padding: 0.2em 0.6em 0.2em;
  font-size: 85%;
  line-height: 18px;
  margin-right: 3px;
}
.parts .parts-list .part .name {
  padding-left: 15px;
}
.parts .parts-list .part .name a {
  display: inline;
  font-size: 22px;
  line-height: 30px;
}
.parts .parts-list .part .name p {
  font-size: 17px;
  margin-bottom: 0;
}
.parts .parts-list .part .name .bootstrap-tagsinput {
  display: none;
}
.parts .parts-list .part .name .vendor {
  margin-top: 5px;
}
.parts .parts-list .part .name .price {
  font-weight: 400;
  color: #777;
  font-size: 20px;
  margin-top: 7px;
}
.parts .parts-list .part .matches {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 100px;
  -ms-flex: 0 0 100px;
  flex: 0 0 100px;
  display: block;
  text-align: center;
}
.parts .parts-list .part .matches a {
  font-weight: 300;
  font-size: 19px;
  color: var(--body-color);
}
.parts .parts-list .part .matches a strong {
  font-weight: 500;
  font-size: 22px;
}
.parts .parts-list .part .matches a [class*=icon-]:before {
  font-size: 28px;
  vertical-align: middle;
}

/*
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
	box-shadow: none !important;
	border: 1px solid #CCC !important;
}	

.select2-container .select2-choice {
	border: 1px solid #CCC !important;
	line-height: 30px;
	height: 30px !important;

}	

.select2-container .select2-choice div {
	border-left: 1px solid #CCC !important;
}
.select2-dropdown-open .select2-choice div {
	background: transparent;
	border-left: none !important;
}

.select2-results li.select2-result-selectable:hover,
.select2-results li.select2-result-selectable:focus {
	background-color: #4B4B4B !important;
	color: #FFF;
}

.select2-results .select2-highlighted {
	background-color: #4B4B4B !important;
	color: #FFF;
}

.select2-results {
	margin: 4px 0px 0px 0px !important;
	padding: 0 0 0 0px !important;
}

.select2-results li {
	line-height: 26px;
}
*/
/************************************************
*	Login/Signup 								*
************************************************/
#homepage {
  height: 100%;
  padding: 0;
}

#jumbotron {
  width: 100%;
  height: 100%;
  margin-bottom: 0px;
  padding: 70px 0 280px !important;
}
#jumbotron .content-container h1 {
  font-size: 100px;
  font-family: "Roboto Condensed", "Open Sans";
  letter-spacing: -3px;
  font-weight: 600;
  line-height: 0.8em;
}
#jumbotron .content-container h1 {
  font-size: 60px;
}
@media screen and (min-width: 400px) {
  #jumbotron .content-container h1 {
    font-size: calc(60px + 80 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #jumbotron .content-container h1 {
    font-size: 140px;
  }
}
#jumbotron h2 {
  font-size: 36px;
  line-height: 38px;
  color: #FFFFFF;
  font-weight: 200;
  margin-top: 0px !important;
  margin-bottom: 20px;
}
#jumbotron h2 {
  font-size: 20px;
}
@media screen and (min-width: 400px) {
  #jumbotron h2 {
    font-size: calc(20px + 16 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  #jumbotron h2 {
    font-size: 36px;
  }
}
#jumbotron .btn {
  font-weight: 300;
  background-color: rgba(0, 0, 0, 0.2);
}
#jumbotron .btn-auth {
  width: 121px;
  margin-right: 10px;
}
#jumbotron .btn-lg {
  line-height: 46px;
  font-size: 30px;
  font-weight: 300;
  padding: 5px 20px;
}
#jumbotron.cover-image a {
  padding-top: 5px;
}
#jumbotron.cover-image a:hover [class*=icon-]:before {
  color: #000 !important;
}
#jumbotron.cover-image a:hover {
  color: #000 !important;
}
#jumbotron .btn [class*=icon-]:before,
#jumbotron .btn:hover [class*=icon-]:before {
  color: #FFFFFF;
  font-size: 18px;
}
#jumbotron .btn-lg [class*=icon-]:before,
#jumbotron .btn-lg:hover [class*=icon-]:before {
  color: #FFFFFF;
  font-size: 26px;
}

#login_box {
  background: var(--content-header-bg);
  border: 1px solid var(--light-grey);
  padding: 0px 20px 20px 20px;
  width: 100%;
  margin-right: 10px;
}
#login_box h2 {
  font-weight: 300;
  margin-bottom: 15px;
}

#login_box input[type=text], #login_box input[type=password] {
  width: 100%;
}

.account-avatar img {
  border-radius: 50%;
  width: 200px;
  margin-bottom: 30px;
}

/************************************************
*  User page, results
************************************************/
#user_list img {
  margin-right: 10px;
  width: 32px;
  height: 32px;
}

#user_list a {
  color: #444;
  display: block;
  padding: 5px 0px 0px 5px;
  line-height: 20px;
  font-size: 13px;
}

#user_list span {
  vertical-align: top;
}

#user_list a:hover {
  background: #EEE;
  cursor: pointer;
}

/* Fixes padding box width issues */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

#easyContainer {
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
}

/************************************************
* Bootstrap mods 
************************************************/
.alert-warning {
  background-color: #FFF;
  padding: 0 0 0 5px;
  border: 0;
  color: #818486;
}

/************************************************
* Offcanvas slider
************************************************/
.st-menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  width: 300px;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  z-index: 1040;
}

.st-right {
  right: 0;
  left: auto;
}

.st-left {
  overflow-y: auto;
}

body.st-menu-open {
  overflow-x: hidden;
  overflow-y: auto;
}

/* Effect 1: Slide in on top */
.st-left.st-menu {
  visibility: visible;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.st-left.st-menu-open .st-left.st-menu {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.st-left.st-menu::after {
  display: none;
}

/* Effect 1: Slide in on top */
.st-right.st-menu {
  visibility: visible;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.st-right.st-menu-open .st-right.st-menu {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.st-right.st-menu::after {
  display: none;
}

.age {
  font-size: 12px;
  color: #999;
  font-weight: 400;
}

.highlight {
  font-weight: bold;
}

.tt-query { /* UPDATE: newer versions use tt-input instead of tt-query */
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.tt-input,
.tt-hint {
  color: #999;
  font-size: 14px;
}

.tt-menu { /* UPDATE: newer versions use tt-menu instead of tt-dropdown-menu */
  min-width: 200px;
  margin-top: 12px;
  padding: 8px 0;
  background-color: var(--dropdown-bg);
  border: 1px solid var(--dropdown-border);
  border-radius: 0px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.tt-suggestion {
  padding: 3px 20px;
  font-size: 14px;
  line-height: 20px;
  color: var(--dropdown-text);
}

.tt-cursor,
.tt-suggestion:hover {
  background-color: var(--dropdown-hover-bg);
  color: var(--dropdown-text);
  cursor: pointer;
}

.tt-suggestion.tt-is-under-cursor { /* UPDATE: newer versions use .tt-suggestion.tt-cursor */
  color: var(--dropdown-text);
  background-color: var(--dropdown-hover-bg);
}

.tt-suggestion p {
  margin: 0;
}

/********************************************************************************/
/* LightGallery Styles */
.lg-outer .lg-thumb-item {
  border: 0px;
  border-radius: 0px;
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  border: 1px solid #FFFFFF;
}

/********************************************************************************/
/* Build grid */
#grid-filters-toggle {
  position: absolute;
  right: 18px;
  bottom: -3px;
  font-size: 16px;
  color: var(--body-color) !important;
  letter-spacing: normal;
  text-transform: uppercase;
  text-decoration: none;
}
#grid-filters-toggle [class*=icon-]:before {
  font-size: 21px;
  margin-right: 3px;
  color: var(--body-color);
}
#grid-filters-toggle.selected [class*=icon-]:before {
  font-weight: 600;
}

#grid-filters {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  -moz-transition: max-height 0.2s ease-out;
  -o-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  -webkit-transform: translateZ(0px);
}
#grid-filters #grid-filters-flex {
  margin: 10px 0 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
#grid-filters #grid-filters-flex div {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 25%;
  -moz-box-flex: 0;
  -moz-flex: 0 1 25%;
  -ms-flex: 0 1 25%;
  flex: 0 1 25%;
  padding-right: 32px;
}
#grid-filters #grid-filters-flex div h4 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--body-color);
  padding: 15px 0;
  border-bottom: 1px solid var(--light-grey);
}
#grid-filters #grid-filters-flex div ul {
  padding: 0;
}
#grid-filters #grid-filters-flex div ul li {
  list-style: none;
}
#grid-filters #grid-filters-flex div ul li a {
  font-weight: 300;
}
#grid-filters #grid-filters-flex div ul li a.selected {
  font-weight: 600;
  text-decoration: none;
}
@media (max-width: 800px) {
  #grid-filters #grid-filters-flex div {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 33%;
    -moz-box-flex: 0;
    -moz-flex: 0 1 33%;
    -ms-flex: 0 1 33%;
    flex: 0 1 33%;
  }
}
@media (max-width: 600px) {
  #grid-filters #grid-filters-flex div {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 50%;
    -moz-box-flex: 0;
    -moz-flex: 0 1 50%;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}

.body-act-grid #content-header .content-container, .parts #content-header .content-container {
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 900px) {
  .body-act-grid #content-header .content-container, .parts #content-header .content-container {
    margin-left: calc(20px + 130 * (100vw - 900px) / 1200);
    margin-right: calc(20px + 130 * (100vw - 900px) / 1200);
  }
}
@media screen and (min-width: 2100px) {
  .body-act-grid #content-header .content-container, .parts #content-header .content-container {
    margin-left: 150px;
    margin-right: 150px;
  }
}

.act-grid {
  margin-top: -10px;
  padding: 0 10px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  opacity: 1;
  margin-right: -10px;
}
.act-grid .grid-item {
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
  -webkit-transform: translateZ(0px);
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 20%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 20%;
  -ms-flex: 1 1 20%;
  flex: 1 1 20%;
  max-width: 20%;
  position: relative;
}
.act-grid .grid-item .grid-image {
  margin-bottom: 0px;
  z-index: 0;
  position: relative;
  padding: 0 10px 10px 0;
}
.act-grid .grid-item .grid-image img {
  width: 100%;
  display: block;
  z-index: 9;
}
.act-grid .grid-item .grid-image.promoted:before {
  position: absolute;
  left: auto;
  text-align: center;
  text-transform: uppercase;
  z-index: 20;
  height: 33px;
  content: "Promoted";
  color: #FFF;
  font-weight: 500;
  opacity: 1 !important;
  -webkit-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  -webkit-transform: translateZ(0px);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  border-bottom: 30px solid #EC4A3D;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  width: 130px;
  top: 15px;
  right: -22px;
  line-height: 35px;
  padding: 3px 0px;
  font-size: 13px;
}
.act-grid .grid-item .grid-image.promoted {
  /*
  &:after {
  	position: absolute;
  	content: '';

  	@if $type == 'part' {
  		border-top: 30px solid #FFF;
  		border-right: 30px solid #FFF;
  		top: -40px; left: 0; right: -40px; bottom: 0;
  	} @else {
  		border-top: 10px solid #FFF;
  		border-right: 30px solid #FFF;
  		top: -10px; left: 0; right: -20px; bottom: 0;
  		color: #000;
  	}
  	z-index: 11;
  }
  */
}
.act-grid .grid-item .grid-link {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateZ(0px);
  color: #FFFFFF;
  display: block;
  position: absolute;
  line-height: 26px;
  line-height: 1.2em;
  top: 0px;
  left: 0px;
  bottom: 10px;
  right: 10px;
  z-index: 12;
  padding: 0px 15px;
  font-weight: 100;
  font-family: "Open Sans";
  text-decoration: none;
  font-size: 22px;
}
.act-grid .grid-item .grid-link {
  font-size: 18px;
}
@media screen and (min-width: 400px) {
  .act-grid .grid-item .grid-link {
    font-size: calc(18px + 2 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  .act-grid .grid-item .grid-link {
    font-size: 20px;
  }
}
.act-grid .grid-item .grid-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.act-grid .grid-item .grid-link .act-user {
  font-size: 15px;
}
.act-grid .grid-item .grid-link .act-user {
  font-size: 13px;
}
@media screen and (min-width: 400px) {
  .act-grid .grid-item .grid-link .act-user {
    font-size: calc(13px + 2 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  .act-grid .grid-item .grid-link .act-user {
    font-size: 15px;
  }
}
.act-grid .grid-item .act-footer, .act-grid .grid-item .act-footer-left {
  position: absolute;
  bottom: 20px;
  right: 25px;
  font-size: 15px;
}
.act-grid .grid-item .act-footer, .act-grid .grid-item .act-footer-left {
  font-size: 13px;
}
@media screen and (min-width: 400px) {
  .act-grid .grid-item .act-footer, .act-grid .grid-item .act-footer-left {
    font-size: calc(13px + 2 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  .act-grid .grid-item .act-footer, .act-grid .grid-item .act-footer-left {
    font-size: 15px;
  }
}
.act-grid .grid-item .act-footer, .act-grid .grid-item .act-footer-left {
  z-index: 7;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateZ(0px);
  color: #FFFFFF;
}
.act-grid .grid-item .act-footer a, .act-grid .grid-item .act-footer [class*=icon-]:before, .act-grid .grid-item .act-footer-left a, .act-grid .grid-item .act-footer-left [class*=icon-]:before {
  color: #FFFFFF;
  font-weight: 300;
}
.act-grid .grid-item .act-footer [class*=icon-]:before, .act-grid .grid-item .act-footer-left [class*=icon-]:before {
  font-size: 21px;
  margin: 0 0px 0 1px;
}
.act-grid .grid-item .act-footer-left {
  left: 15px;
}
.act-grid .grid-item:hover .act-footer, .act-grid .grid-item:hover .act-footer-left, .act-grid .grid-item:focus .act-footer, .act-grid .grid-item:focus .act-footer-left {
  opacity: 1;
}
.act-grid .grid-item.unloaded {
  margin-top: 8px;
  opacity: 0;
}
.act-grid .grid-item.unloaded .grid-image.promoted:before {
  opacity: 0;
}
.act-grid .grid-item:hover .grid-link:after, .act-grid .grid-item:focus .grid-link:after {
  opacity: 1;
  background-color: var(--grid-overlay);
  z-index: -1;
}
.act-grid .grid-item:hover .grid-link, .act-grid .grid-item:focus .grid-link {
  padding-top: 15px;
  opacity: 1;
  outline: none;
}
@media (max-width: 900px) {
  .act-grid .grid-item .grid-link:after {
    opacity: 1;
    background-color: var(--grid-overlay);
    z-index: -1;
  }
  .act-grid .grid-item .grid-link {
    padding-top: 15px;
    opacity: 1;
    outline: none;
  }
}
@media (max-width: 1430px) {
  .act-grid .grid-item {
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
}
@media (max-width: 1200px) {
  .act-grid .grid-item {
    -webkit-flex-basis: 33.33333%;
    -moz-flex-basis: 33.33333%;
    -ms-flex-preferred-size: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
}
@media (max-width: 900px) {
  .act-grid .grid-item {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .act-grid .grid-item .act-footer, .act-grid .grid-item .act-footer-left {
    opacity: 1;
  }
}
@media (max-width: 550px) {
  .act-grid .grid-item {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

.act-list-grid-small {
  margin-top: 80px;
  margin-bottom: 10px;
}
.act-list-grid-small h1 {
  margin-bottom: 20px;
}
.act-list-grid-small .act-grid {
  padding: 0 !important;
}
.act-list-grid-small .act-grid .grid-item {
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}
.act-list-grid-small .act-grid .grid-item .grid-link {
  line-height: 1.2em;
}
.act-list-grid-small .act-grid .grid-item .grid-link {
  font-size: 18px;
}
@media screen and (min-width: 400px) {
  .act-list-grid-small .act-grid .grid-item .grid-link {
    font-size: calc(18px + 2 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  .act-list-grid-small .act-grid .grid-item .grid-link {
    font-size: 20px;
  }
}
.act-list-grid-small .act-grid .grid-item .grid-link .act-user {
  font-size: 13px;
}
.act-list-grid-small .act-grid .grid-item .grid-link {
  padding: 10px 10px;
}
.act-list-grid-small .act-grid .grid-item.unloaded {
  margin-top: 0px;
  opacity: 1;
}
.act-list-grid-small .act-grid .grid-item.unloaded .grid-image.promoted:before {
  opacity: 1;
}
.act-list-grid-small .act-grid .act-footer, .act-list-grid-small .act-grid .act-footer-left {
  font-size: 14px;
  right: 20px;
}
.act-list-grid-small .act-grid .act-footer, .act-list-grid-small .act-grid .act-footer-left {
  font-size: 12px;
}
@media screen and (min-width: 400px) {
  .act-list-grid-small .act-grid .act-footer, .act-list-grid-small .act-grid .act-footer-left {
    font-size: calc(12px + 2 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  .act-list-grid-small .act-grid .act-footer, .act-list-grid-small .act-grid .act-footer-left {
    font-size: 14px;
  }
}
.act-list-grid-small .act-grid .act-footer [class*=icon-]:before, .act-list-grid-small .act-grid .act-footer-left [class*=icon-]:before {
  font-size: 21px;
  margin-right: 2px;
}
.act-list-grid-small .act-grid .act-footer-left {
  left: 10px;
}
@media (max-width: 1200px) {
  .act-list-grid-small .act-grid .grid-item {
    -webkit-flex-basis: 33%;
    -moz-flex-basis: 33%;
    -ms-flex-preferred-size: 33%;
    flex-basis: 33%;
    max-width: 33%;
  }
}
@media (max-width: 750px) {
  .act-list-grid-small .act-grid .grid-item {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (max-width: 500px) {
  .act-list-grid-small .act-grid .grid-item {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
}

/********************************************************************************/
.act_reviews {
  clear: both;
}
.act_reviews .act_row {
  padding-bottom: 25px;
}
.act_reviews .act_row:first-child {
  margin-top: 30px;
}
.act_reviews .act_row .act_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.act_reviews .act_row .act_item .act_image {
  margin: 0;
  padding-right: 15px;
  display: block;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 35%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 35%;
  -ms-flex: 1 1 35%;
  flex: 1 1 35%;
  max-width: 30%;
  min-width: 35%;
}
.act_reviews .act_row .act_item .act_image img {
  width: 100%;
  height: auto;
}
.act_reviews .act_row .act_item .act_content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 65%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 65%;
  -ms-flex: 1 1 65%;
  flex: 1 1 65%;
  max-width: 65%;
}
.act_reviews .act_row .act_item .act_content .act_stats {
  float: right;
  margin: 5px 0 10px;
  padding-left: 15px;
}
.act_reviews .act_row .act_item .act_content .act_stats {
  font-size: 12px;
}
@media screen and (min-width: 400px) {
  .act_reviews .act_row .act_item .act_content .act_stats {
    font-size: calc(12px + 3 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  .act_reviews .act_row .act_item .act_content .act_stats {
    font-size: 15px;
  }
}
.act_reviews .act_row .act_item .act_content .act_stats a, .act_reviews .act_row .act_item .act_content .act_stats [class*=icon-]:before {
  color: var(--grey);
  font-weight: 300;
}
.act_reviews .act_row .act_item .act_content .act_stats [class*=icon-]:before {
  font-size: 19px;
}
@media screen and (min-width: 400px) {
  .act_reviews .act_row .act_item .act_content .act_stats [class*=icon-]:before {
    font-size: calc(19px + 5 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  .act_reviews .act_row .act_item .act_content .act_stats [class*=icon-]:before {
    font-size: 24px;
  }
}
.act_reviews .act_row .act_item .act_content .act_stats [class*=icon-]:before {
  margin-right: 2px;
}
.act_reviews .act_row .act_item .act_content .act_title {
  padding-bottom: 6px;
}
.act_reviews .act_row .act_item .act_content .act_title a {
  letter-spacing: -0.03em;
  line-height: 1.3em;
  font-weight: 300;
  color: var(--grey);
}
.act_reviews .act_row .act_item .act_content .act_title a {
  font-size: 20px;
}
@media screen and (min-width: 400px) {
  .act_reviews .act_row .act_item .act_content .act_title a {
    font-size: calc(20px + 10 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  .act_reviews .act_row .act_item .act_content .act_title a {
    font-size: 30px;
  }
}
.act_reviews .act_row .act_item .act_content .act_subtitle {
  margin-bottom: 10px;
}
.act_reviews .act_row .act_item .act_content .act_subtitle img {
  width: 24px;
  border-radius: 50%;
  margin-right: 5px;
}
.act_reviews .act_row .act_item .act_content .act_subtitle .age {
  font-size: 12px;
}
@media screen and (min-width: 400px) {
  .act_reviews .act_row .act_item .act_content .act_subtitle .age {
    font-size: calc(12px + 3 * (100vw - 400px) / 1520);
  }
}
@media screen and (min-width: 1920px) {
  .act_reviews .act_row .act_item .act_content .act_subtitle .age {
    font-size: 15px;
  }
}
.act_reviews .act_row .act_item .act_content .act_subtitle .age {
  color: var(--grey);
}
.act_reviews .act_row .act_item .act_content .act_status {
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  .act_reviews .act_row .act_item .act_content .act_status {
    font-size: calc(14px + 2 * (100vw - 400px) / 1800);
  }
}
@media screen and (min-width: 2200px) {
  .act_reviews .act_row .act_item .act_content .act_status {
    font-size: 16px;
  }
}
.act_reviews .act_row .act_item .act_content .btn {
  margin: 5px 0 8px;
}
.act_reviews .act_row .divider {
  margin-top: 25px;
  display: block;
  border: none;
  color: white;
  height: 1px;
  background: var(--light-grey);
  background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 550, from(var(--light-grey)), to(#fff));
}
.act_reviews .act_row:last-child .divider {
  display: none;
}
@media (max-width: 500px) {
  .act_reviews .act_row .act_item .act_image, .act_reviews .act_row .act_item .act_content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }
  .act_reviews .act_row .act_item .act_image {
    margin-bottom: 20px;
  }
  .act_reviews .act_row .divider {
    display: none;
  }
}

/********************************************************************************/
/* Loading spinner */
.spinner {
  margin: 70px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}
.spinner > div {
  background-color: var(--spinner-color);
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
  margin-left: 3px;
}
.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  margin-left: 3px;
}
.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
  margin-left: 3px;
}
.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
  margin-left: 3px;
}

#components .spinner {
  height: 20px;
}
#components .spinner > div {
  background-color: var(--spinner-color);
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
/********************************************************************************/
.emoji {
  width: 1.5em !important;
  height: 1.5em !important;
  display: inline-block;
  margin: -4px 3px 0 !important;
}

/********************************************************************************/
/* Alternate Logos */
.about-logo {
  margin: 10px 0;
}
.about-logo .logo i {
  width: 100px;
  height: 100px;
  padding-top: 6px;
}
.about-logo .logo img {
  margin-top: 12px;
  float: left;
  height: 200px !important;
}
.about-logo .logo .brand {
  margin: 92px 0 0 20px;
  font-size: 174px;
  letter-spacing: -7px;
  color: #3C5562;
  color: #709FCD;
  color: #4B7FB1;
}
.about-logo .logo a [class*=icon-]:before,
.about-logo .logo a:hover [class*=icon-]:before {
  font-size: 90px;
  line-height: 88px;
}

.about-logo-square {
  position: relative;
  display: none;
}
.about-logo-square .logo img {
  height: 800px !important;
}
.about-logo-square .logo .brand {
  position: absolute;
  color: #FFF;
  left: 86px;
  top: 942px;
  font-size: 98px;
  -webkit-text-stroke: 4px #4B7FB1;
}

.about-logo2 {
  margin: 80px 0;
  position: relative;
  height: 200px;
  background: #FFF;
}
.about-logo2 img {
  width: 500px;
  margin-top: 14px;
  position: absolute;
  left: 20px;
  top: 87px;
  transform: rotate(0deg);
  z-index: 2;
}
.about-logo2 .soldering {
  display: none;
  width: 300px;
  float: right;
  position: absolute;
  top: 0px;
  left: 70px;
}
.about-logo2 .logo i {
  width: 100px;
  height: 100px;
  padding-top: 6px;
}
.about-logo2 .logo .brand {
  position: absolute;
  left: 100px;
  top: 38px;
  margin-top: 42px;
  font-size: 106px;
  letter-spacing: -8px;
  font-family: "Yanone Kaffeesatz", "Open Sans", "Rajdhani", "Yanone Kaffeesatz";
  font-weight: 200;
  color: #3C5562;
  z-index: 1;
}
.about-logo2 .logo .brand2 {
  display: none;
  color: #FFF;
  z-index: 3;
}
.about-logo2 .logo a [class*=icon-]:before,
.about-logo2 .logo a:hover [class*=icon-]:before {
  font-size: 90px;
  line-height: 88px;
}

/********************************************************************************/
.profile, .component {
  background-color: var(--profile-bg);
}
.profile #content-header, .component #content-header {
  padding: 3.5em 0px 2em;
  border-bottom: none;
  margin-bottom: 0px;
  color: var(--body-color);
}
.profile #content-header .content-container, .component #content-header .content-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.profile #content-header .content-container .avatar, .component #content-header .content-container .avatar {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 25%;
  -moz-box-flex: 1;
  -moz-flex: 1 0 25%;
  -ms-flex: 1 0 25%;
  flex: 1 0 25%;
  min-width: 25%;
  text-align: center;
  margin-bottom: 30px;
}
.profile #content-header .content-container .avatar img, .component #content-header .content-container .avatar img {
  border-radius: 50%;
  width: 150px;
  height: auto;
  border: 1px solid #555;
}
.profile #content-header .content-container .details, .component #content-header .content-container .details {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 75%;
  -moz-box-flex: 1;
  -moz-flex: 1 0 75%;
  -ms-flex: 1 0 75%;
  flex: 1 0 75%;
  min-width: 75%;
  padding-left: 10px;
}
.profile #content-header .content-container .details .contact, .component #content-header .content-container .details .contact {
  margin-bottom: 15px;
}
.profile #content-header .content-container .details .contact h1, .component #content-header .content-container .details .contact h1 {
  font-size: 2.4em;
  margin: 0 25px 0 0;
  color: var(--body-color);
  display: inline-block;
}
.profile #content-header .content-container .details .contact .buttons, .component #content-header .content-container .details .contact .buttons {
  display: inline-block;
  white-space: nowrap;
  vertical-align: top;
  margin-top: 5px;
}
.profile #content-header .content-container .details ul, .component #content-header .content-container .details ul {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  list-style: none;
}
.profile #content-header .content-container .details ul li, .component #content-header .content-container .details ul li {
  border: none;
  margin: 0 13px 5px 0;
  font-size: 14px;
  display: inline-block;
}
.profile #content-header .content-container .details ul li a, .component #content-header .content-container .details ul li a {
  display: inline;
  font-size: 13px;
  color: var(--body-color);
  font-weight: 400;
}
.profile #content-header .content-container .details ul li [class*=icon-]:before, .component #content-header .content-container .details ul li [class*=icon-]:before {
  font-size: 17px;
  margin-right: 2px;
}
.profile #content-header .content-container .details ul.stats, .component #content-header .content-container .details ul.stats {
  margin-top: 15px;
}
.profile #content-header .content-container .details ul.stats li, .component #content-header .content-container .details ul.stats li {
  display: inline-block;
  text-align: left;
  margin: 0 20px 5px 0;
}
.profile #content-header .content-container .details ul.stats li, .profile #content-header .content-container .details ul.stats li a, .component #content-header .content-container .details ul.stats li, .component #content-header .content-container .details ul.stats li a {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 100;
}
.profile #content-header .content-container .details ul.stats li strong, .component #content-header .content-container .details ul.stats li strong {
  font-size: 18px;
  margin-right: 3px;
  font-weight: 400;
}
@media (max-width: 1000px) {
  .profile #content-header .content-container .avatar img, .component #content-header .content-container .avatar img {
    width: 130px;
  }
  .profile #content-header .content-container .details ul li, .profile #content-header .content-container .details ul li a, .component #content-header .content-container .details ul li, .component #content-header .content-container .details ul li a {
    font-size: 13px;
  }
  .profile #content-header .content-container .details ul.stats li, .profile #content-header .content-container .details ul.stats a, .component #content-header .content-container .details ul.stats li, .component #content-header .content-container .details ul.stats a {
    font-size: 13px;
  }
  .profile #content-header .content-container .details ul.stats li strong, .component #content-header .content-container .details ul.stats li strong {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .profile #content-header .content-container .avatar img, .component #content-header .content-container .avatar img {
    width: 80px;
  }
}
.profile .admin, .component .admin {
  margin-bottom: 30px;
}
.profile .admin img, .component .admin img {
  width: 24.5%;
  padding: 0 10px 10px 0;
}
.profile .admin img:hover, .component .admin img:hover {
  opacity: 0.8;
  cursor: pointer;
}

.profile .content h1 {
  margin: 30px 0 25px;
}
.profile .content .pull-right {
  display: none;
}
.profile .content .act-list-grid-small {
  margin-top: 0px;
  margin-right: -25px;
}
.profile .content .act-list-grid-small .heading {
  display: none;
}
.profile .content .act-list-grid-small .act-grid {
  margin-top: 0;
}
.profile .content .act-list-grid-small .act-grid .grid-item {
  -webkit-flex-basis: 33%;
  -moz-flex-basis: 33%;
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
  max-width: 33%;
}
.profile .content .act-list-grid-small .act-grid .grid-item .grid-link {
  bottom: 25px;
  right: 25px;
  padding: 10px 15px;
}
.profile .content .act-list-grid-small .act-grid .grid-item .grid-image {
  padding: 0 25px 25px 0;
}
.profile .content .act-list-grid-small .act-grid .grid-item .grid-image:before, .profile .content .act-list-grid-small .act-grid .grid-item .grid-image:after {
  display: none;
}
.profile .content .act-list-grid-small .act-grid .act-footer, .profile .content .act-list-grid-small .act-grid .act-footer-left {
  font-size: 14px;
  bottom: 35px;
  right: 40px;
}
.profile .content .act-list-grid-small .act-grid .act-footer-left {
  left: 15px;
}
@media (max-width: 750px) and (min-width: 601px) {
  .profile .content .act-list-grid-small .act-grid .grid-item {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .profile .content .act-list-grid-small .act-grid .grid-item .grid-link {
    bottom: 15px;
    right: 15px;
    padding: 10px;
  }
  .profile .content .act-list-grid-small .act-grid .grid-item .grid-image {
    padding: 0 15px 15px 0;
  }
  .profile .content .act-list-grid-small .act-grid .act-footer, .profile .content .act-list-grid-small .act-grid .act-footer-left {
    font-size: 13px;
    bottom: 25px;
    right: 30px;
  }
  .profile .content .act-list-grid-small .act-grid .act-footer-left {
    left: 10px;
  }
}
@media (max-width: 600px) {
  .profile .content .act-list-grid-small .act-grid .grid-item {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .profile .content .act-list-grid-small .act-grid .grid-item .grid-link {
    font-size: 20px;
  }
  .profile .content .act-list-grid-small .act-grid .grid-item .grid-link .act-user {
    font-size: 15px;
  }
  .profile .content .act-list-grid-small .act-grid .grid-item .act-footer, .profile .content .act-list-grid-small .act-grid .grid-item .act-footer-left {
    font-size: 15px;
  }
  .profile .content .act-list-grid-small .act-grid .grid-item .act-footer [class*=icon-]:before, .profile .content .act-list-grid-small .act-grid .grid-item .act-footer-left [class*=icon-]:before {
    font-size: 22px;
    margin-right: 2px;
  }
}
@media (max-width: 750px) {
  .profile .content .act-list-grid-small {
    margin-right: -5px;
  }
}

.component #content-header {
  padding: 0.7em 0px 2em;
}
.component #content-header .breadcrumbs {
  margin-bottom: 2.8em;
}
.component #content-header .breadcrumbs a {
  font-size: 14px;
  font-weight: 300;
}
.component #content-header .breadcrumbs [class*=icon-]:before {
  font-size: 22px;
}
.component #content-header .content-container .details ul li a {
  font-size: 14px;
}
.component #components .table .matches {
  width: 60px;
  font-weight: 400;
  line-height: 14px;
  padding-top: 14px;
}
@media (max-width: 600px) {
  .component #components .table .first-tag:nth-child(1) .matches {
    padding-top: 4px;
  }
  .component #components .table .matches {
    display: inline-block;
    border: none;
    padding-top: 18px;
    width: 50px;
  }
  .component #components .table .tag {
    width: 80%;
    margin-bottom: 5px;
    padding-bottom: 2px;
    border: none;
  }
  .component #components .table .name {
    padding-left: 55px;
  }
  .component #components .table tr:hover {
    background-color: transparent;
  }
}
.component {
  /*
  #components .table {
  	margin-bottom: 40px; 

  	.matches {
  		width: 65px; font-weight: 400;
  	}

  	.tag {
  		@include fluid-type(width, 400px, 1440px, 150px, 210px);
  		//width: 210px;
  		width: auto;
  		min-width: 150px;
  		max-width: 210px;
  		padding-right: 20px;
  		word-wrap:break-word;
  	}

  	//.name { width: 100%; }
  }	
  */
}
.component .content .act-list-grid-small .heading {
  display: block;
}

.switch-input {
  display: none;
}

.switch-label {
  position: relative;
  display: inline-block;
  min-width: 112px;
  cursor: pointer;
  font-weight: 500;
  text-align: left;
  padding: 0px 0 0px 44px;
}
.switch-label {
  margin-left: 10px;
}
@media screen and (min-width: 400px) {
  .switch-label {
    margin-left: calc(10px + 70 * (100vw - 400px) / 1120);
  }
}
@media screen and (min-width: 1520px) {
  .switch-label {
    margin-left: 80px;
  }
}

.switch-label:before, .switch-label:after {
  content: "";
  position: absolute;
  margin: 0;
  outline: 0;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.switch-label:before {
  left: 1px;
  width: 34px;
  height: 14px;
  background-color: #9E9E9E;
  border-radius: 8px;
}

.switch-label:after {
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #FAFAFA;
  border-radius: 50%;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084);
}

.switch-label .toggle--on {
  display: none;
}

.switch-label .toggle--off {
  display: inline-block;
}

.switch-input:checked + .switch-label:before {
  background-color: #A5D6A7;
  background-color: #9EC2E4;
}

.switch-input:checked + .switch-label:after {
  background-color: #4CAF50;
  background-color: #719FCC;
  -ms-transform: translate(80%, -50%);
  -webkit-transform: translate(80%, -50%);
  transform: translate(80%, -50%);
}

.switch-input:checked + .switch-label .toggle--on {
  display: inline-block;
}

.switch-input:checked + .switch-label .toggle--off {
  display: none;
}

/* Breadcrups CSS */
/*

$arrow-step-color: #719FCC;
$arrow-step-color: #E7E7E7;

$arrow-step-hover: #A3C5E5;
$arrow-step-hover: #CCC;

$arrow-step-current: #175088;
$arrow-step-current: #999;

$arrow-retired-color: #E03C4F;
$arrow-retired-hover: #F65F71;

@keyframes step-text {
  0% { color: #655B5B; }
  50% { color: #DDD; }
  100% { color: #655B5B; }
}

.arrow-steps {
	margin-bottom: 20px; 
	width: 100%;
	//max-width: 700px;

	.step {
		font-size: 14px;
		font-size: 16px;
		width: 32.2%;
		line-height: 16px;
		text-align: center;
		color: #666;
		color: #FFF;
		color: #655B5B;
		font-weight: 400;
		font-family: "Roboto Condensed", "Open Sans";
		cursor: default;
		margin: 0 4px;
		padding: 10px 10px 10px 30px;
		//min-width: 180px;
		float: left;
		position: relative;
		background-color: $arrow-step-color;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none; 
	  	transition: background-color 0.1s ease;

		&.current + .step {
			animation-name: step-text;
			animation-duration: 2s;
			animation-iteration-count: infinite;
		}

		&:after,
		&:before {
			content: " ";
			position: absolute;
			top: 0;
			right: -17px;
			width: 0;
			height: 0;
			border-top: 19px solid transparent;
			border-bottom: 17px solid transparent;
			border-left: 17px solid $arrow-step-color;	
			z-index: 2;
		  	transition: all 0.1s ease;

		}

		&:before {
			right: auto;
			left: 0;
			border-left: 17px solid #fff;	
			z-index: 0;
		}

		&.step:hover, &.step:hover:before {
			background-color: $arrow-step-hover;
			cursor: pointer;
			color: #655B5B;
			animation-play-state: paused;
			animation: step-end;
		}
		&.step:hover:after {
			border-left: 17px solid $arrow-step-hover;	
		}

		& span {
			position: relative;
		}

		& span:before {
			opacity: 0;
			content: "✔";
			position: absolute;
			top: -2px;
			left: -20px;
		}

		&.done span:before {
			opacity: 1;
			-webkit-transition: opacity 0.3s ease 0.5s;
			-moz-transition: opacity 0.3s ease 0.5s;
			-ms-transition: opacity 0.3s ease 0.5s;
			transition: opacity 0.3s ease 0.5s;
		}

		&.current {
			color: #fff;
			background-color: $arrow-step-current;
		}

		&.current:after {
			border-left: 17px solid $arrow-step-current;	
		}
	}

	@media(max-width: 900px) { .step { width: 32%; } }
	@media(max-width: 700px) { .step { width: 31%; } }
	@media(max-width: 500px) { .step { width: 30%; font-size: 13px; padding: 10px 0px 10px 20px; } }

}

.stepper-horizontal {

	display: table; width: 100%; margin: 0 auto;

	.stepper-step {
		width: 33.3%;
		display: table-cell;
		position: relative;
		padding: 10px 0 30px;

		&:hover {
			cursor: pointer;
			.stepper-title {
				.stepper-circle, span { opacity: 0.6; }
			}	
		}

		//&.active-step .stepper-title .stepper-circle { background-color: #4b7fb1; }

		.stepper-title {
			margin: 0 auto;
			width: 140px;
			background: #FFF;
			padding: 5px 5px;
			text-align: center;

			span { font-size: 14px; font-weight: 300; }

			.stepper-circle {
				width: 24px;
				height: 24px;
				margin-right: 10px;
				background-color: #9E9E9E;
				border-radius: 50%;
				text-align: center;
				line-height: 2em;
				font-size: 12px;
				color: white;
				display: inline-block;
				//box-shadow: 1px 2px 7px 0 rgba(0, 0, 0, 0.26);
			}
		}

		&.active-step, &.step-done { .stepper-title .stepper-circle { background-color: $link-color; } }
		&.active-step .stepper-title span { font-weight: 600; }
		&.step-done .stepper-title .stepper-circle { 
		  &:before { content: "\2714"; }
		  * { display: none; }
		}

		&.active-step {
		  .stepper-title { font-weight: 500; color: rgba(0, 0, 0, 0.87); }
		  &.step-done .stepper-title, &.editable-step .stepper-title { font-weight: 300; }
		}
		&.active-step .stepper-optional { color: rgba(0, 0, 0, 0.54); }

		.stepper-bar { position: absolute; top: 29px; right: 0; left: 0; height: 1px; border-top: 1px solid #BDBDBD; z-index: -1; }

		&:first-child {
			.stepper-title { margin-left: 0px; }
		}

		&:nth-child(3) {
			.stepper-title { margin-right: 0px; }
		}
	}
}
*/

/* Site Announcement Banner - Completely isolated, only affects itself */
.site-announcement {
	position: relative;
	width: 100%;
	background-color: #2d89ef;
	color: white;
	padding: 10px 0;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	margin-top: 0;
	margin-bottom: 5px;
	display: block;
	/* Isolated - doesn't affect other elements */
	z-index: auto;
}

/* Ensure announcement doesn't affect layout when hidden */
.site-announcement[style*="display: none"],
.site-announcement:not(:visible) {
	display: none !important;
	margin: 0 !important;
	padding: 0 !important;
	height: 0 !important;
	min-height: 0 !important;
	overflow: hidden !important;
	visibility: hidden !important;
}

.announcement-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 15px;
	max-width: 100%;
	margin: 0 auto;
}

.announcement-icon {
	margin-right: 8px;
	font-size: 16px;
	opacity: 0.9;
}

.announcement-text {
	flex: 1;
	text-align: center;
	font-size: 14px;
}

.announcement-link {
	color: white;
	text-decoration: underline;
	font-weight: 500;
}

.announcement-link:hover {
	color: white;
	opacity: 0.9;
}

.announcement-close {
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	width: 20px;
	height: 20px;
	line-height: 1;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.announcement-close:hover {
	opacity: 1;
}

@media (max-width: 768px) {
	.site-announcement {
		font-size: 12px;
		padding: 10px 0;
	}
	
	.announcement-content {
		padding: 0 10px;
		gap: 8px;
		flex-wrap: wrap;
	}
	
	.announcement-text {
		font-size: 11px;
		line-height: 1.4;
	}
	
	.announcement-link {
		font-size: 11px;
		white-space: nowrap;
	}
	
	.announcement-icon {
		font-size: 14px;
	}
}

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