@charset "UTF-8";

/* ==== ( Reset ) =========================================================== */

html {
  font-size: 1rem !important;
}

body {
  overflow-y: scroll;
}

b,
strong {
  font-weight: 500;
}

img {
  display: inline-block;
  -ms-interpolation-mode: bicubic;
}

hr {
  display: block;
  height: 1px;
  padding: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #ccc;
}

kbd {
  padding: .2rem .4rem;
  font-size: .75rem;
  color: #fff;
  background-color: #222;
  border-radius: .125rem;
  text-shadow: none;
}

progress {
  height: 1rem;
  width: 10rem;
  vertical-align: middle;
  border: 0;
}

/* ---- ( Selection ) ------------------------------------------------------- */

::-moz-selection {
  color: #f5f5f5;
  background-color: #574b90;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, .08);
}

::selection {
  color: #f5f5f5;
  background-color: #574b90;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, .08);
}

a::-moz-selection {
  color: #f5f5f5;
  background-color: #2c3e50;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, .08);
}

a::selection {
  color: #f5f5f5;
  background-color: #2c3e50;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, .08);
}

/* ---- ( Scrollbar ) ------------------------------------------------------- */

::-webkit-scrollbar {
  height: 8px;
  width: 8px;
  background-color: transparent;
}

::-webkit-scrollbar:hover {
  background-color: rgba(0, 0, 0, .16);
}

::-webkit-scrollbar-thumb {
  min-height: 48px;
  min-width: 48px;
  background-color: rgba(0, 0, 0, .24);
}

::-webkit-scrollbar-button {
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, .24);
}

/* ==== ( Helper Classes ) ================================================== */

/* ---- ( Main ) ------------------------------------------------------------ */

.container {
  width: 100%;
  max-width: 80rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

/* ---- ( Control ) --------------------------------------------------------- */

.control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  margin: -.5rem;
}

.control__item {
  display: -ms-flexbox;
  display: flex;
  padding: .5rem;
}

.control__item--center {
  -ms-flex-align: center;
      align-items: center;
}

/* ---- ( Page Control ) ---------------------------------------------------- */

.page-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  margin-right: -.5rem;
  margin-left: -.5rem;
}

.page-control__item {
  display: -ms-flexbox;
  display: flex;
  padding-right: .5rem;
  padding-left: .5rem;
}

.page-control--top .page-control__item {
  -ms-flex-align: end;
      align-items: flex-end;
}

.page-control--bottom .page-control__item {
  -ms-flex-align: start;
      align-items: flex-start;
}

.page-control--top > .page-control__item > .button,
.page-control--top > .page-control__item > .pagination {
  margin-bottom: 1.5rem;
}

.page-control--bottom > .page-control__item > .button,
.page-control--bottom > .page-control__item > .pagination {
  margin-top: 1.5rem;
}

/* ---- ( Float ) ----------------------------------------------------------- */

.float_left {
  float: left !important;
}

.float_right {
  float: right !important;
}

/* ---- ( Font Size ) ------------------------------------------------------- */

.smalltext {
	font-size: 14px;
}

.largetext {
	font-size: 18px;
}

/* ---- ( Other ) ----------------------------------------------------------- */

.shade {
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

.hiddenrow {
  display: none;
}

.re-format-name a:hover {
  text-decoration: none !important;
}

.re-format-name em {
  font-style: normal !important;
}

/* ---- ( Margin ) ---------------------------------------------------------- */

.m-top {
  margin-top: 1.5rem !important;
}

.m-bottom {
  margin-bottom: 1.5rem !important;
}

/* ---- ( Avatar ) ---------------------------------------------------------- */

.avatar {
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #eceff1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.avatar--40x40 {
  height: 2.5rem;
  width: 2.5rem;
}

.avatar--64x64 {
  height: 4rem;
  width: 4rem;
}

/* ==== ( Components ) ====================================================== */

/* ---- ( Button ) ---------------------------------------------------------- */

.button {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 2.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  font-size: .875rem;
  color: #fff;
  background-color: #546e7a;
  border-radius: .25rem;
  transition: all .25s ease-in-out;
}

.button:hover {
  text-decoration: none;
}

.button:hover,
.button:focus {
  color: #fff;
  background-color: #455a64;
}

input.button,
button.button {
  cursor: pointer;
}

input.button:focus,
button.button:focus {
  outline: none;
}

.button--primary {
  background-color: #00897b;
}

.button--primary:hover,
.button--primary:focus {
  background-color: #00796b;
}

.button--secondary {
  background-color: #37474f;
}

.button--secondary:hover,
.button--secondary:focus {
  background-color: #263238;
}

.button--success {
  background-color: #4caf50;
}

.button--success:hover,
.button--success:focus {
  background-color: #43a047;
}

.button--info {
  background-color: #2196f3;
}

.button--info:hover,
.button--info:focus {
  background-color: #1e88e5;
}

.button--warning {
  background-color: #ff9800;
}

.button--warning:hover,
.button--warning:focus {
  background-color: #fb8c00;
}

.button--danger {
  background-color: #f44336;
}

.button--danger:hover,
.button--danger:focus {
  background-color: #e53935;
}

.button--small {
  height: 2rem;
  padding-left: .75rem;
  padding-right: .75rem;
}

.button--large {
  height: 2.5rem;
}

.button--rounded {
  border-radius: 1.125rem;
}

.button--small.button--rounded {
  border-radius: 1rem;
}

.button--large.button--rounded {
  border-radius: 1.25rem;
}

/* ---- ( Alert ) ----------------------------------------------------------- */

.alert {
  position: relative;
  overflow: hidden;
  padding: .75rem 1rem;
  font-size: .875rem;
  border-radius: .25rem;
}

.alert--success {
  color: #fff;
  background-color: #4caf50;
}

.alert--info {
  color: #fff;
  background-color: #03a9f4;
}

.alert--warning {
  color: #fff;
  background-color: #ff9800;
}

.alert--danger {
  color: #fff;
  background-color: #ff5722;
}

/* ---- ( DD ) -------------------------------------------------------------- */

.dd {
  display: none;
  z-index: 9999;
  margin-top: .5rem;
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, .3), 0 4px 8px 3px rgba(60, 64, 67, .15);
  color: #424242;
  background-color: #fff;
  border-radius: .5rem;
}

.dd__main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.dd__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-width: 12rem;
  padding: .375rem .75rem;
}

a.dd__item {
  color: #424242 !important;
}

a.dd__item:hover {
  text-decoration: none;
}

a.dd__item:hover,
a.dd__item:focus {
  color: #424242 !important;
  background-color: #f5f5f5;
}

.dd__icon,
.dd__text {
  margin-left: .25rem;
  margin-right: .25rem;
}

.dd__icon {
  color: #757575;
}

.dd__text {
  font-size: .875rem;
  text-align: left !important;
}

.dd__divider {
  margin: 8px 0;
  border-bottom: 1px solid #eee;
}

/* ---- ( Money ) ----------------------------------------------------------- */

.money,
.money__banner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: .5rem;
}

.money {
  padding: 1rem;
  background-color: #eceff1;
}

@media (max-width: 767.98px) {
  .layout__block
  .money {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
  }
}

.money__banner {
  font-size: 2rem;
  color: #424242;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

.money__banner--300x250 {
  width: 300px;
  height: 250px;
}

.money__banner--728x90 {
  width: 728px;
  height: 90px;
}

.money__banner--970x90 {
  width: 970px;
  height: 90px;
}

/* ---- ( Box ) ------------------------------------------------------------- */

.box {
  padding: .75rem 1rem;
  font-size: .875rem;
  background-color: #eceff1;
  border-radius: .5rem;
}

/* ---- ( Drawer ) ---------------------------------------------------------- */

.drawer {
  position: fixed;
  z-index: 6;
  top: 0;
  display: none;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 16rem;
  height: 100%;
  background-color: #eceff1;
  border-style: solid;
  border-color: #fff;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

.drawer.drawer--left,
.drawer.drawer--right {
  display: -ms-flexbox;
  display: flex;
}

.drawer--left {
  left: -16rem;
  border-width: 0 2px 0 0;
  transition-property: left;
}

.drawer--left.drawer--open {
  left: 0;
}

.drawer--right {
  right: -16rem;
  border-width: 0 0 0 2px;
  transition-property: right;
}

.drawer--right.drawer--open {
  right: 0;
}

.drawer__main {
  padding: 1rem;
  overflow-y: auto;
}

.drawer__section {
  padding: 1rem;
  background-color: #fff;
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

.drawer__section:not(:last-child) {
  margin-bottom: 1rem;
}

.drawer__form-control {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.drawer__form-item:not(:last-child) {
  margin-bottom: 1rem;
}

.drawer__close {
  position: absolute;
  top: calc(50% - 1.5rem);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  color: #424242 !important;
  background-color: #eceff1;
  border: 2px solid #fff;
}

.drawer--left .drawer__close {
  left: calc(16rem - 2px);
  border-left: 0;
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.drawer--right .drawer__close {
  right: calc(16rem - 2px);
  border-right: 0;
  border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
}

/* ---- ( User Browsing & Forum Moderator ) --------------------------------- */

.user-browsing,
.forum-moderator {
  display: -ms-flexbox;
  display: flex;
  padding: .25rem;
  padding-left: 0;
  background-color: #eceff1;
  border-radius: .5rem;
}

.user-browsing__item,
.forum-moderator__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.user-browsing__item:first-child,
.forum-moderator__item:first-child {
  -ms-flex-pack: center;
      justify-content: center;
  width: 3rem;
}

.user-browsing__item:first-child .t-muted,
.forum-moderator__item:first-child .t-muted {
  color: #616161 !important;
}

.user-browsing__item:last-child,
.forum-moderator__item:last-child {
  width: calc(100% - 3rem);
  padding: .75rem 1rem;
  font-size: .875rem;
  background-color: #fff;
  border-radius: .5rem;
  box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .04);
}

@media (max-width: 767.98px) {
  .user-browsing,
  .forum-moderator {
    margin-left: -1rem;
    margin-right: -1rem;
    padding-right: 0;
    border-radius: 0;
  }

  .user-browsing__item:last-child,
  .forum-moderator__item:last-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

/* ---- ( Team Role ) ------------------------------------------------------- */

.team-role {
  display: block;
  padding: .25rem .5rem;
  overflow: hidden;
  font-size: .75rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #424242;
  background-color: #eceff1;
  border-radius: .25rem;
}

.team-role--admin {
  border-left: .25rem solid #4caf50;
}

/* ---- ( Pagination ) ------------------------------------------------------ */

.pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 2.25rem;
  padding-left: .25rem;
  padding-right: .25rem;
  background-color: #eceff1;
  border-radius: 1.125rem;
}

.breadcrumb__pagination .pagination {
  background-color: #fff;
}

.pagination__item:not(:last-child) {
  margin-right: 0.25rem;
}

.pagination__item:first-child {
  border-top-left-radius: .8125rem;
  border-bottom-left-radius: .8125rem;
}

.pagination__item:last-child {
  border-top-right-radius: .8125rem;
  border-bottom-right-radius: .8125rem;
}

.pagination__item--page {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 1.625rem;
  min-width: 1.625rem;
  padding-left: .5rem;
  padding-right: .5rem;
  font-size: .875rem;
  background-color: #fff;
}

.breadcrumb__pagination .pagination__item--page {
  background-color: #eceff1;
}

.pagination__item--page:hover {
  text-decoration: none;
}

.pagination__item--page:hover,
.pagination__item--page.is-active {
  color: #fff;
  background-color: #00796b;
}

.pagination__icon {
  font-size: 1rem;
}

.pagination__item--page:not(:hover) .pagination__icon {
  color: #757575;
}

.breadcrumb__pagination .pagination__item--page:not(:hover) .pagination__icon {
  color: #616161;
}

.pagination__jump-popup {
  display: none;
  z-index: 9999;
  margin-top: 0.5rem;
  padding: 0.5rem;
  font-size: 0.875em;
  line-height: inherit;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, .3),
              0 4px 8px 3px rgba(60, 64, 67, .15);
}

.pagination__jump-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.pagination__jump-label {
  margin-bottom: 0;
  margin-right: 0.25rem;
}

.pagination__jump-input {
  margin-right: 0.5rem;
}

.layout__block .pagination {
  background-color: #fff;
}

/* ==== ( Main ) ============================================================ */

/* ---- ( Skippy ) ---------------------------------------------------------- */

.skippy {
  display: block;
  padding: .5rem 1rem;
  color: #424242 !important;
  background-color: #fff;
}

.skippy__text {
  display: inline-block;
  padding: .5rem 1rem;
  outline: 1px dotted;
}

/* ---- ( Tool Bar ) -------------------------------------------------------- */

.tool-bar__main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  height: 2.5rem;
}

/* ---- ( Tool Nav ) -------------------------------------------------------- */

.tool-nav,
.tool-nav__link {
  display: -ms-flexbox;
  display: flex;
}

.tool-nav__link {
  -ms-flex-align: center;
      align-items: center;
  height: 2.5rem;
  font-size: .875rem;
  white-space: nowrap;
}

.tool-nav__link:not(:last-child) {
  margin-right: 1rem;
}

.tool-nav__link:hover {
  text-decoration: none;
}

/* ---- ( Tool Social ) ----------------------------------------------------- */

.tool-social,
.tool-social__link {
  display: -ms-flexbox;
  display: flex;
}

.tool-social__link {
  -ms-flex-align: center;
      align-items: center;
  height: 2.5rem;
}

.tool-social__link:not(:first-child) {
  margin-left: 1.5rem;
}

.tool-social__link:hover {
  text-decoration: none;
}

.tool-social__link--twitter {
  color: #1da1f2 !important;
}

.tool-social__link--facebook {
  color: #3b5998 !important;
}

.tool-social__link--instagram {
  color: #c13584 !important;
}

.tool-social__link--whatsapp {
  color: #075e54 !important;
}

.tool-social__link--steam {
  color: #000000 !important;
}

.tool-social__link--github {
  color: #4078c0 !important;
}

.tool-social__icon {
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.tool-social__link:hover .tool-social__icon {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

/* ---- ( Hero ) ------------------------------------------------------------ */

.hero {
  background-color: #eceff1;
}

.hero__main {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 3.5rem;
}

/* ---- ( Hero Title ) ------------------------------------------------------ */

.hero-title {
  font-size: 1.5rem;
  font-weight: normal;
  min-width: 10rem;
  margin-bottom: 0;
}

/* ---- ( Hero Nav ) -------------------------------------------------------- */

.hero-nav,
.hero-nav__link {
  display: -ms-flexbox;
  display: flex;
}

.hero-nav__link {
  -ms-flex-align: center;
      align-items: center;
  padding-left: .75rem;
  padding-right: .75rem;
  height: 3.5rem;
  font-size: .875rem;
  white-space: nowrap;
  color: #424242 !important;
  transition: all .4s ease-in-out;
}

.hero-nav__link:hover {
  text-decoration: none;
  background-color: #fff;
}

.hero-nav__icon,
.hero-nav__text {
  margin-left: .25rem;
  margin-right: .25rem;
}

.hero-nav__icon {
  color: #757575;
}

.page--index
.hero-nav__link--home,
.page--portal
.hero-nav__link--portal,
.page--search
.hero-nav__link--search,
.page--member-list
.hero-nav__link--member-list,
.page--calendar
.hero-nav__link--calendar {
  background-color: #fff;
  box-shadow: 0 0.2rem 0 #009688 inset;
}

/* ---- ( Hero Search ) ----------------------------------------------------- */

.hero-search,
.hero-search__form,
.hero-search__button {
  display: -ms-flexbox;
  display: flex;
}

.hero-search {
  margin-left: auto;
}

.hero-search__form {
  width: 20.75rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

.hero-search__input {
  height: 2rem;
  width: calc(100% - 3rem);
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: .875rem;
  background-color: #fff;
  border: none;
  border-radius: 1rem;
}

.hero-search__input:focus {
  outline: none;
}

.hero-search__input::-webkit-input-placeholder {
  color: #424242;
}

.hero-search__input:-ms-input-placeholder {
  color: #424242;
}

.hero-search__input::-moz-placeholder {
  color: #424242;
}

.hero-search__input::-ms-input-placeholder {
  color: #424242;
}

.hero-search__input::placeholder {
  color: #424242;
}

.hero-search__button {
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 2rem;
  width: 3rem;
  cursor: pointer;
  font-size: 1rem;
  color: #424242;
  background-color: #fff;
  background-image: none;
  border: none;
  border-radius: 1rem;
}

.hero-search__button:focus {
  outline: none;
}

/* ---- ( Hero Nav ) -------------------------------------------------------- */

.hero-responsive-nav {
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

.hero-responsive-nav__link {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 3.5rem;
  font-size: 1.5rem;
  color: #424242 !important;
}

.hero-responsive-nav__link:not(:first-child) {
  margin-left: 2rem;
}

.hero-responsive-nav__link:hover {
  text-decoration: none;
}


/* ---- ( block ) ----------------------------------------------------------- */

.block {
  padding: 1rem;
  background-color: #eceff1;
  border-radius: .5rem;
}

@media (max-width: 767.98px) {
  .block {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
  }
}

/* --forum-rules */
.block--forum-rules {
  background-color: #fbe9e7;
}

.page--thread-list .block--forum-rules {
  margin-bottom: 1.5rem;
}

.page--new-thread .block--forum-rules,
.page--new-reply .block--forum-rules {
  margin-top: 1.5rem;
}

.block__header {
  margin-bottom: 1rem;
}

.block__title {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #263238;
}

.block--forum-rules
.block__title {
  color: #bf360c;
}

.block__inner,
.block__list {
  background-color: #fff;
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

.block__inner {
  padding: 1rem;
}

.block__list-item {
  padding: .75rem 1rem;
}

.block__list-item:not(:last-child) {
  border-bottom: 1px solid #eceff1;
}

/* layout */
.block__list-layout {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.block__list-layout--post
.block__list-section:first-child,
.block__list-layout--last-registered
.block__list-section:first-child {
  width: 2.5rem;
}

.block__list-layout--post
.block__list-section:last-child,
.block__list-layout--last-registered
.block__list-section:last-child {
  width: calc(100% - 2.5rem);
}

.block__footer {
  margin-top: 1rem;
}

.block
.t-muted {
  color: #616161 !important;
}

/* ---- ( Forum List ) ------------------------------------------------------ */

.forum-list__item {
  background-color: #fff;
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

.forum-list__item:not(:last-child) {
  margin-bottom: 1rem;
}

.forum-list__region {
  display: -ms-flexbox;
  display: flex;
}

.forum-list__region--latest {
  border-top: 1px solid #eceff1;
}

.forum-list__section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 1rem .5rem;
}

.forum-list__region--forum
.forum-list__section:nth-of-type(1) {
  -ms-flex-align: center;
      align-items: center;
  width: 4rem;
  padding-left: 1rem;
}

.forum-list__region--forum
.forum-list__section:nth-of-type(2) {
  width: calc(100% - 22.5rem);
}

@media (max-width: 767.98px) {
  .forum-list__region--forum
  .forum-list__section:nth-of-type(2) {
    width: calc(100% - 6.5rem);
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .page--index
  .forum-list__region--forum
  .forum-list__section:nth-of-type(2) {
    width: calc(100% - 6.5rem);
  }
}

.forum-list__region--forum
.forum-list__section:nth-of-type(3),
.forum-list__region--forum
.forum-list__section:nth-of-type(4) {
  width: 8rem;
}

@media (max-width: 767.98px) {
  .forum-list__region--forum
  .forum-list__section:nth-of-type(3),
  .forum-list__region--forum
  .forum-list__section:nth-of-type(4) {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .page--index
  .forum-list__region--forum
  .forum-list__section:nth-of-type(3),
  .page--index
  .forum-list__region--forum
  .forum-list__section:nth-of-type(4) {
    display: none;
  }
}

.forum-list__region--forum
.forum-list__section:nth-of-type(5) {
  -ms-flex-align: center;
      align-items: center;
  width: 2.5rem;
  padding-right: 1rem;
}

.forum-list__region--latest
.forum-list__section:nth-of-type(1) {
  -ms-flex-align: end;
      align-items: flex-end;
  width: 4rem;
  padding-left: 1rem;
}

.forum-list__region--latest
.forum-list__section:nth-of-type(2) {
  width: calc(100% - 6.5rem);
}

.forum-list__region--latest
.forum-list__section:nth-of-type(3) {
  -ms-flex-align: center;
      align-items: center;
  width: 2.5rem;
  padding-right: 1rem;
}

/* status */
.forum-list__status {
  border-left: .25rem solid;
}

.forum-list__status--on {
  border-left-color: #009688;
}

.forum-list__status--off {
  border-left-color: #607d8b;
}

.forum-list__status--offclose {
  border-left-color: #ff9800;
}

.forum-list__status--offlink {
  border-left-color: #2196f3;
}

/* image */
.forum-list__image {
  display: inline-block;
  height: 2.5rem;
  width: 2.5rem;
  background-color: #eceff1;
  background-size: cover;
  border-radius: 100%;
}

.forum-list__status--on
.forum-list__image {
  -webkit-animation: forum-list-unread-pulse 1.5s infinite;
          animation: forum-list-unread-pulse 1.5s infinite;
}

@-webkit-keyframes forum-list-unread-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(63, 77, 184, .4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(63, 77, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(63, 77, 184, 0);
  }
}

@keyframes forum-list-unread-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(63, 77, 184, .4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(63, 77, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(63, 77, 184, 0);
  }
}

/* stats */
.forum-list__status--offclose
.forum-list__stats,
.forum-list__status--offlink
.forum-list__stats {
  display: none;
}

/* viewers */
.forum-list__viewers {
  height: 1.5rem;
  color: #388e3c;
  background-color: #e8f5e9;
  border-radius: .75rem;
}

/* ---- ( Sub Forum DD ) ---------------------------------------------------- */

.sub-forum-dd {
  display: none;
  z-index: 9999;
  margin-top: .5rem;
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, .3), 0 4px 8px 3px rgba(60, 64, 67, .15);
  color: #424242;
  background-color: #fff;
  border-radius: .5rem;
  overflow: hidden;
}

.sub-forum-dd__header {
  padding: .5rem 1rem;
  color: #fff;
  background-color: #009688;
  background-image: url('../images/material.png');
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.sub-forum-dd__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
}

.sub-forum-dd__title-icon {
  margin-left: auto;
}

.sub-forum-dd__main {
  padding-top: .5rem;
  padding-bottom: .5rem;
  max-height: 16rem;
  overflow-x: auto;
}

.sub-forum-dd__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  min-width: 12rem;
  height: 2rem;
  padding-left: .75rem;
  padding-right: .75rem;
}

.sub-forum-dd__link {
  color: #424242 !important;
}

.sub-forum-dd__link:hover {
  text-decoration: none;
}

.sub-forum-dd__link:hover,
.sub-forum-dd__link:focus {
  color: #424242 !important;
  background-color: #f5f5f5;
}

.sub-forum-dd__status,
.sub-forum-dd__text {
  margin-left: .25rem;
  margin-right: .25rem;
}

.sub-forum-dd__status {
  display: -ms-flexbox;
  display: flex;
  height: .5rem;
  width: .5rem;
  border-radius: 100%;
}

.sub-forum-dd__status[title] {
  cursor: help;
}

.sub-forum-dd__status--minion {
  background-color: #009688;
}

.sub-forum-dd__status--minioff {
  background-color: #607d8b;
}

.sub-forum-dd__status--minioffclose {
  background-color: #ff9800;
}

.sub-forum-dd__status--miniofflink {
  background-color: #2196f3;
}

.sub-forum-dd__text {
  font-size: .875rem;
}

/* ---- ( Meta ) ------------------------------------------------------------ */

/* __section */
.meta__section {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background-color: #fff;
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

.meta__section:not(:last-child) {
  margin-bottom: 1rem;
}

.meta__section--who-online {
  border-left: .25rem solid #4caf50;
}

.meta__section--birthdays {
  border-left: .25rem solid #03a9f4;
}

.meta__section--legal-warning {
  border-left: .25rem solid #ff5722;
}

/* __item */
.meta__item:first-child {
  width: 4rem;
  padding-left: 1rem;
  padding-right: .5rem;
}

.meta__item:last-child {
  width: calc(100% - 4rem);
  padding: .75rem 1rem .75rem .5rem;
}

/* __status */
.meta__status {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  background-color: #eceff1;
  border-radius: 50%;
}

.meta__section--who-online
.meta__status {
  color: #1b5e20;
  background-color: #e8f5e9;
}

.meta__section--birthdays
.meta__status {
  color: #01579b;
  background-color: #e1f5fe;
}

.meta__section--legal-warning
.meta__status {
  color: #bf360c;
  background-color: #fbe9e7;
}

/* ---- ( Colorful ) -------------------------------------------------------- */

.colorful {
  display: -ms-flexbox;
  display: flex;
  height: .325rem;
}

.colorful__item {
  width: calc(100% / 7);
}

.colorful__item:nth-child(1) { background-color: #e3342f; }
.colorful__item:nth-child(2) { background-color: #f6993f; }
.colorful__item:nth-child(3) { background-color: #ffed4a; }
.colorful__item:nth-child(4) { background-color: #38c172; }
.colorful__item:nth-child(5) { background-color: #4dc0b5; }
.colorful__item:nth-child(6) { background-color: #3490dc; }
.colorful__item:nth-child(7) { background-color: #6574cd; }
.colorful__item:nth-child(8) { background-color: #9561e2; }
.colorful__item:nth-child(9) { background-color: #f66d9b; }

/* ---- ( Trend Last Poster ) ----------------------------------------------- */

.trend-last-poster {
  position: absolute;
  right: -.125rem;
  bottom: -.125rem;
  height: 1.5rem;
  width: 1.5rem;
  background-color: #eceff1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  border: .125rem solid white;
}

/* ---- ( Header ) ---------------------------------------------------------- */

.header {
  height: 4.5rem;
  color: #fff;
  background-color: #3c4043;
}

.header__main {
  display: -ms-flexbox;
  display: flex;
}

/* ---- ( Header Title ) ---------------------------------------------------- */

.header-title {
  display: -ms-flexbox;
  display: flex;
  height: 4.5rem;
  margin-right: 2rem;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: normal;
}

.header-title__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  color: rgba(255, 255, 255, .92);
  transition: color .4s cubic-bezier(.68, -.55, .27, 1.55);
}

.header-title__link:hover {
  text-decoration: none;
}

.header-title__link:hover,
.header-title__link:focus {
  color: #fff;
}

.header-title[data-option="logo"] .header-title__logo {
  height: 2.5rem;
  width: 2.5rem;
  background-image: url('../images/logo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header-title:not([data-option="logo"]) .header-title__logo {
  display: none;
}

.header-title:not([data-option="icon"]) .header-title__icon {
  display: none;
}

.header-title__text {
  max-width: 16rem;
}

.header-title[data-option="logo"] .header-title__text,
.header-title[data-option="icon"] .header-title__text {
  padding-left: 1rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.header-title:not([data-option="text"]) .header-title__text--short {
  display: none;
}

/* ---- ( User Panel ) ------------------------------------------------------ */

.user-panel,
.user-panel__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.user-panel {
  height: 4.5rem;
  margin-left: auto;
}

.user-panel__link {
  height: 2.5rem;
  font-size: .875rem;
  color: #eceff1 !important;
  background-color: #292b2d;
  border-radius: 1.25rem;
  transition: all .4s ease-in-out;
}

.user-panel__link:hover {
  text-decoration: none;
}

.user-panel__link:hover,
.user-panel__link:focus {
  background-color: #161718;
}

.user-panel__link:not(:first-child) {
  margin-left: .5rem;
}

.user-panel__link--multiple {
  padding-left: .75rem;
  padding-right: .75rem;
}

.user-panel__link--equal {
  -ms-flex-pack: center;
      justify-content: center;
  width: 2.5rem;
}

.user-panel__link--multiple .user-panel__text,
.user-panel__link--multiple .user-panel__icon {
  margin-left: .25rem;
  margin-right: .25rem;
}

.user-panel__link--user .user-panel__text {
  margin-left: .5rem;
  margin-right: 1rem;
}

.user-panel__link--messenger .user-panel__text {
  margin-left: 1rem;
  margin-right: .5rem;
}

.user-panel__badge {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 2rem;
  min-width: 2rem;
  padding-left: .75rem;
  padding-right: .75rem;
  margin-left: .25rem;
  margin-right: .25rem;
  background-color: #00796b;
  border-radius: 1rem;
}

.user-panel__avatar {
  height: 2rem;
  width: 2rem;
  margin-left: .25rem;
  margin-right: .25rem;
  background-color: #eceff1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
}

/* ---- ( Quest Block ) ----------------------------------------------------- */

.quest-block {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: #fff;
  background-color: #009688;
}

.quest-block__title {
  font-size: 1.5rem;
  font-weight: normal;
}

.quest-block__text:last-child {
  margin-bottom: 0;
}

/* ---- ( Pinned Post ) ----------------------------------------------------- */

.pinned-post {
  display: -ms-flexbox;
  display: flex;
  padding: .5rem;
  margin-bottom: 1.5rem;
  background-color: #eceff1;
  border-radius: .5rem;
}

@media (max-width: 767.98px) {
  .pinned-post {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  .pinned-post {
    -ms-flex-flow: column;
        flex-flow: column;
  }
}

.pinned-post__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column wrap;
      flex-flow: column wrap;
  margin: .5rem;
  background-color: #fff;
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .pinned-post__block {
    width: calc((100% / 3) - 1rem);
  }
}

@media (min-width: 1200px) {
  .pinned-post__block:nth-of-type(1),
  .pinned-post__block:nth-of-type(3) {
    width: calc(19.75rem - 1rem);
  }

  .pinned-post__block:nth-of-type(2) {
    width: calc(100% - 40.5rem);
  }
}

.pinned-post__image {
  position: relative;
  height: 10rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.pinned-post__image::after {
  position: absolute;
  bottom: 0;
  content: '';
  height: .325rem;
  width: 100%;
  background-color: #6574cd;
  background: linear-gradient(90deg, rgba(101, 116, 205, 1) 0%, rgba(77, 192, 181, 1) 50%, rgba(101, 116, 205, 1) 100%);
}

@media (max-width: 575.98px) {
  .pinned-post__image {
    height: 7rem;
  }
}

.pinned-post__badge {
  position: absolute;
  padding-right: .125rem;
  padding-bottom: .125rem;
  background-color: #6574cd;
  background: linear-gradient(90deg, rgba(101, 116, 205, 1) 0%, rgba(77, 192, 181, 1) 50%);
  border-top-left-radius: .5rem;
  border-bottom-right-radius: calc(.5rem + 2px);
}

.pinned-post__badge-inner {
  padding: .25rem .75rem;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  background-color: #3c4043;
  border-top-left-radius: .5rem;
  border-bottom-right-radius: .5rem;
}

.pinned-post__content {
  height: calc(100% - 10rem);
  padding: 1rem;
}

/* ---- ( Main ) ------------------------------------------------------------ */

.main {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

/* ---- ( Breadcrumb ) ------------------------------------------------------ */

.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-left: -.5rem;
  margin-right: -.5rem;
  margin-bottom: 1.5rem;
}

/* Hide breadcrumb on index */
.page--index .breadcrumb {
  display: none;
}

.breadcrumb__item {
  margin-left: .5rem;
  margin-right: .5rem;
  font-size: .875rem;
}

a.breadcrumb__item {
  color: #37474f;
}

a.breadcrumb__item:hover,
a.breadcrumb__item:focus {
  color: #37474f;
}

.breadcrumb__item--seperator {
  color: #757575;
}

.breadcrumb__item--active {
  color: #546e7a;
}

a.breadcrumb__item--dropdown {
  margin-left: 0;
  font-size: 1rem;
  color: #546e7a;
}

a.breadcrumb__item--dropdown:hover,
a.breadcrumb__item--dropdown:focus {
  color: #546e7a;
}

.breadcrumb__pagination {
  display: none;
  z-index: 9999;
  margin-top: 0.5rem;
  line-height: inherit;
  background-color: #fff;
  border-radius: 1.125rem;
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, .3),
              0 4px 8px 3px rgba(60, 64, 67, .15);
}

@media (max-width: 767.98px) {
  .breadcrumb {
    display: none;
  }
}

/* ---- ( Post List ) ------------------------------------------------------- */

.post-list__section:not(:last-child) {
  border-bottom: 1px solid #eceff1;
}

.post-list__item:nth-of-type(1) {
  width: 2.5rem;
}

.post-list__item:nth-of-type(2) {
  width: calc(100% - 2.5rem);
}

/* ---- ( MyBB Table ) ------------------------------------------------------ */

table {
  border-collapse: collapse;
}

tr td:first-child {
  padding-left: 1rem;
}

tr td:last-child {
  padding-right: 1rem;
}

.tborder,
.table {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  border-radius: .5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

.table--margin-bottom {
  margin-bottom: 1.5rem;
}

.tfixed,
.table--fixed {
	table-layout: fixed;
	word-wrap: break-word;
}

.thead,
.table__head {
  height: 3rem;
  padding: 0;
  color: #fff;
  background-color: #00796b;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.thead a,
.table__head a {
  color: #fff;
}

.table__head-inner {
  display: -ms-flexbox;
  display: flex;
}

.table__head-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 3rem;
  margin-left: -.25rem;
  margin-right: -.25rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
}

.table__head-title-icon,
.table__head-title-text,
.table__head-title-link {
  margin-left: .25rem;
  margin-right: .25rem;
}

.tcat,
.table__cat {
  color: #fff;
  background-color: #37474f;
}

.table__cat--legal {
  background-color: #c62828;
}

.tcat a,
.table__cat a {
	color: #fff;
}

.trow1,
.trow2,
.table__row,
.table__row--1,
.table__row--2 {
  padding-top: .75rem;
  padding-bottom: .75rem;
  background-color: #fff;
}

tr:not(:first-child) td:not(.tcat):not(.table__cat),
tfoot tr:first-child td {
  border-top: 1px solid #eceff1;
}

.table__row--no-padding {
  padding: 0 !important;
}

.table__row--equal-padding {
  padding: 1rem !important;
}

.table__sep {
  font-size: .875rem;
  background-color: #cfd8dc;
}

.trow_shaded {
	background-color: #ffdde0;
}

.no_bottom_border {
	border-bottom: 0;
}

.tfoot {
  border-top: 1px solid #fff;
  padding: 6px;
  background: #ddd;
  color: #666;
}

.tfoot a:link {
  color: #444;
  text-decoration: none;
}

.tfoot a:visited {
  color: #444;
  text-decoration: none;
}

.tfoot a:hover,
.tfoot a:active {
  color: #444;
  text-decoration: underline;
}

.thead input.textbox,
.thead select {
  border: 1px solid #263c30;
}

.trow_reputation_positive {
  background: #ccffcc;
}

.trow_reputation_negative {
  background: #ffcccc;
}

.reputation_positive {
  color: green;
}

.reputation_neutral {
  color: #444;
}

.reputation_negative {
  color: red;
}

.repbox {
  font-size:16px;
  font-weight: bold;
  padding:5px 7px 5px 7px;
}

._neutral {
  background-color:#FAFAFA;
  color: #999999;
  border:1px solid #CCCCCC;
}

._minus {
  background-color: #FDD2D1;
  color: #CB0200;
  border:1px solid #980201;
}

._plus {
  background-color:#E8FCDC;
  color: #008800;
  border:1px solid #008800;
}

.selectall {
  background: #FFFBD9;
  border-bottom: 1px solid #F7E86A;
  color: #333;
  text-align: center;
}

.expcolimage {
  float: right;
  width: auto;
  vertical-align: middle;
  margin-top: 3px;
}

.tcat_menu > .expcolimage {
  margin-top: 0;
}

/* ---- ( Table Head Nav ) -------------------------------------------------- */

.table__head-nav {
  display: -ms-flexbox;
  display: flex;
}

.table__head-nav--left {
  margin-left: 1rem;
}

.table__head-nav--right {
  margin-left: auto;
}

.table__head-nav-link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 3rem;
  padding-left: .75rem;
  padding-right: .75rem;
  box-shadow: 0 -2px 0 #eceff1 inset;
}

.table__head-nav-link:hover {
  text-decoration: none;
}

.table__head-nav-icon,
.table__head-nav-text {
  margin-left: .25rem;
  margin-right: .25rem;
}

.table__head-nav-icon {
  transition: all .4s ease-in-out;
}

.table__head-nav-link:hover .table__head-nav-icon,
.table__head-nav-link:focus .table__head-nav-icon {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.table__head-nav-text {
  font-size: .875rem;
}

/* ---- ( Fix Task ) -------------------------------------------------------- */

.fix-task {
  position: absolute;
  bottom: -1px;
}

/* ---- ( Running Task ) ---------------------------------------------------- */

.running-task {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  height: 3rem;
  width: 3rem;
  color: #eceff1;
  background-color: #bf360c;
  border: 4px solid #fff;
  border-radius: 100%;
}

.running-task[data-tippy] {
  cursor: help;
}

/* ==== ( Form ) ============================================================ */

/* ---- ( Costom Input ) ---------------------------------------------------- */

.custom-input {
  display: inline-block;
  height: 2.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
  color: #424242;
  background-color: #fff;
  border: 1px solid #cfd8dc;
  border-radius: .25rem;
}

.custom-input:focus {
  border-color: #4db6ac;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(77, 182, 172, .5);
}

.custom-input--rounded {
  border-radius: 1.125rem;
}

.custom-input--small {
  height: 2rem;
}

.custom-input--small.custom-input--rounded {
  border-radius: 1rem;
}

.custom-input--large {
  height: 2.5rem;
}

.custom-input--large.custom-input--rounded {
  border-radius: 1.25rem;
}

/* ---- ( Costom Text ) ----------------------------------------------------- */

.custom-text {
  display: inline-block;
  padding: .75rem 1rem;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
  color: #424242;
  background-color: #fff;
  border: 1px solid #cfd8dc;
  border-radius: .25rem;
}

.custom-text:focus {
  border-color: #4db6ac;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(77, 182, 172, .5);
}

.custom-text--rounded {
  border-radius: 1.125rem;
}

.custom-text--small {
  height: 2rem;
}

.custom-text--small.custom-text--rounded {
  border-radius: 1rem;
}

.custom-text--large {
  height: 2.5rem;
}

.custom-text--large.custom-text--rounded {
  border-radius: 1.25rem;
}

/* ---- ( Costom Select ) --------------------------------------------------- */

.custom-select {
  display: inline-block;
  height: 2.25rem;
  padding-left: 1rem;
  padding-right: 2.5rem;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #424242;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 1rem center/8px 10px;
  background-color: #fff;
  border: 1px solid #cfd8dc;
  border-radius: .25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #4db6ac;
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(77, 182, 172, .5);
}

.custom-select--rounded {
  border-radius: 1.125rem;
}

.custom-select--small {
  height: 2rem;
}

.custom-select--small.custom-select--rounded {
  border-radius: 1rem;
}

.custom-select--large {
  height: 2.5rem;
}

.custom-select--large.custom-select--rounded {
  border-radius: 1.25rem;
}

/* ==== ( Other ) =========================================================== */

/* ---- ( Scale Images ) ---------------------------------------------------- */

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

/* ---- ( Messages ) -------------------------------------------------------- */

.pm_alert {
  background: #FFF6BF;
  border: 1px solid #FFD324;
  text-align: center;
  padding: 5px 20px;
  margin-bottom: 1rem;
  font-size: .75rem;
  border-radius: .5rem;
}

.red_alert {
  background: #FBE3E4;
  border: 1px solid #A5161A;
  color: #A5161A;
  text-align: center;
  padding: 5px 20px;
  margin-bottom: 1rem;
  font-size: .75rem;
  word-wrap: break-word;
  border-radius: .5rem;
}

.red_alert a:link,
.red_alert a:visited,
.red_alert a:hover,
.red_alert a:active {
  color: #A5161A;
}

.high_warning {
  color: #CC0000;
}

.moderate_warning {
  color: #F3611B;
}

.low_warning {
  color: #AE5700;
}

.imminent_banned {
  color: #880000;
}

.high_banned {
  color: #FF0000;
}

.moderate_banned {
  color: #FF6600;
}

.low_banned {
  color: #008000;
}

.online {
  color: #15A018;
}

.offline {
  color: #C7C7C7;
}

div.error {
  padding: 5px 10px;
  border: 2px solid #FFD324;
  background: #FFF6BF;
  font-size: .75rem;
  border-radius: .5rem;
}

div.error p {
  margin: 0;
  color: #333;
  font-weight: normal;
}

div.error p em {
  font-style: normal;
  font-weight: bold;
  padding-left: 24px;
  display: block;
  color: #C00;
  background: url(images/error.png) no-repeat 0;
}

div.error ul {
  margin-left: 24px;
}

input.error,
textarea.error,
select.error {
  border: 1px solid #f30;
  color: #f30;
}

input.valid,
textarea.valid,
select.valid {
  border: 1px solid #0c0;
}

label.error {
  color: #f30;
  margin: 5px;
  padding: 0px;
  display: block;
  font-weight: bold;
  font-size: 11px;
}

/* ---- ( Editor ) ---------------------------------------------------------- */

.editor {
  background: #f1f1f1;
  border: 1px solid #ccc;
}

/* ---- ( Attachment ) ------------------------------------------------------ */

img.attachment {
  border: 1px solid #E9E5D7;
  padding: 2px;
}

/* ---- ( Smilie ) ---------------------------------------------------------- */

.smilie_pointer {
  cursor: pointer;
}

/* ---- ( Separator ) ------------------------------------------------------- */

.separator {
  margin: 5px;
  padding: 0;
  height: 0px;
  font-size: 1px;
  list-style-type: none;
}

/* ---- ( Highlight ) ------------------------------------------------------- */

.highlight {
  background: #FFFFCC;
  padding-top: 3px;
  padding-bottom: 3px;
}

/* ---- ( Quick Jump ) ------------------------------------------------------ */

.quick_jump {
  background: url('../images/jump.png') no-repeat 0;
  width: 13px;
  height: 13px;
  padding-left: 13px;
  margin-top: -3px;
  border: none;
}

/* ---- ( Pollbar ) --------------------------------------------------------- */

.pollbar {
  background: url(images/pollbar.png) top left repeat-x;
  border: 1px solid #3f3f3f;
  height: 10px;
}

.pollbar .percent {
  display: none;
}

/* ---- ( Success Message ) ------------------------------------------------- */

.success_message {
  color: #00b200;
  font-weight: bold;
  font-size: 10px;
  margin-bottom: 10px;
}

/* ---- ( Error Message ) --------------------------------------------------- */

.error_message {
  color: #C00;
  font-weight: bold;
  font-size: 10px;
  margin-bottom: 10px;
}

/* ---- ( Layout ) ---------------------------------------------------------- */

.layout {
  display: -ms-flexbox;
  display: flex;
}

/* Index */
@media (max-width: 991.98px) {
  .layout--index {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

@media (min-width: 992px) {
  .layout--index {
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}

.layout--index
.layout__block {
  margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .layout--index
  .layout__block:first-child {
    width: calc(100% - 22.25rem);
  }

  .layout--index
  .layout__block:last-child {
    width: 20.75rem;
  }

  .layout--index
  .layout__block:last-child[data-sidebar="on"]
  .layout__block-innder {
    position: -webkit-sticky;
    position: sticky;
    top: 1.5rem;
  }
}

/* Portal */
.layout--portal {
  -ms-flex-pack: justify;
      justify-content: space-between;
}

@media (max-width: 991.98px) {
  .layout--portal {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

@media (min-width: 992px) {
  .layout--portal {
    -ms-flex-align: start;
        align-items: flex-start;
  }
}

.layout--portal .layout__block {
  padding: 1rem;
  background-color: #eceff1;
  border-radius: .5rem;
}

@media (max-width: 767.98px) {
  .layout--portal .layout__block {
    margin-left: -1rem;
    margin-right: -1rem;
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  .layout--portal .layout__block--main {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 992px) {
  .layout--portal .layout__block--main {
    width: calc(100% - 24.25rem);
  }

  .layout--portal .layout__block--sidebar {
    width: 22.75rem;
  }
}

.layout--portal .layout__block table + table {
  margin-top: 1rem;
}

/* ---- ( Portal Search ) --------------------------------------------------- */

.portal-search,
.portal-search__form,
.portal-search__button {
  display: -ms-flexbox;
  display: flex;
}

.portal-search__form {
  width: 100%;
  background-color: #fff;
  border: 1px solid #cfd8dc;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

.portal-search__input {
  height: 2rem;
  width: calc(100% - 3rem);
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: .875rem;
  background-color: #fff;
  border: none;
  border-radius: 1rem;
}

.portal-search__input:focus {
  outline: none;
}

.portal-search__input::-webkit-input-placeholder {
  color: #424242;
}

.portal-search__input:-ms-input-placeholder {
  color: #424242;
}

.portal-search__input::-moz-placeholder {
  color: #424242;
}

.portal-search__input::-ms-input-placeholder {
  color: #424242;
}

.portal-search__input::placeholder {
  color: #424242;
}

.portal-search__button {
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 2rem;
  width: 3rem;
  cursor: pointer;
  font-size: 1rem;
  color: #607d8b;
  background-color: #fff;
  background-image: none;
  border: none;
  border-radius: 1rem;
}

.portal-search__button:focus {
  outline: none;
}

/* ---- ( Footer ) ---------------------------------------------------------- */

/* __section */
.footer__section:nth-child(1) {
  background-color: #eceff1;
}

.footer__section:nth-child(2) {
  color: #fff;
  background-color: #3c4043;
}

.footer__section:nth-child(3) {
  background-color: #fff;
}

/* __main */
.footer__main {
  display: -ms-flexbox;
  display: flex;
}

.footer__section:nth-child(1)
.footer__main,
.footer__section:nth-child(3)
.footer__main {
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.footer__section:nth-child(1)
.footer__main {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.footer__section:nth-child(2)
.footer__main {
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}

.footer__section:nth-child(3)
.footer__main {
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: .875rem;
}

@media (max-width: 767.98px) {
  .footer__section:nth-child(1)
  .footer__main {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .footer__section:nth-child(3)
  .footer__main {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

/* __item */
@media (min-width: 768px) {
  .footer__section:nth-child(1)
  .footer__item:last-child {
    padding-left: 1rem;
  }
}

.footer__section:nth-child(2)
.footer__item {
  width: 25%;
  padding: 1rem;
}

@media (max-width: 575.98px) {
  .footer__section:nth-child(2)
  .footer__item {
    width: 100%;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .footer__section:nth-child(2)
  .footer__item {
    width: 50%;
  }
}

/* __heading */
.footer__heading {
  font-size: 1.25rem;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.80);
}

/* __paragraph */
.footer__paragraph {
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.56);
}

/* __list */
.footer__list {
  padding: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.footer__list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  font-size: .875rem;
}

.footer__list-item:not(:last-child) {
  margin-bottom: .25rem;
}

.footer__list-link {
  margin-left: .5rem;
  color: rgba(255, 255, 255, 0.56) !important;
}

.footer__list-icon {
  color: rgba(255, 255, 255, 0.56);
  transition: all .4s ease-in-out;
}

.footer__list-item:hover
.footer__list-icon {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

/* __selector */
.footer__selector {
  display: block;
}

@media (max-width: 767.98px) {
  .footer__selector {
    margin-bottom: 1rem;
  }
}

.footer__selector + .footer__selector {
  margin-left: 1rem;
}

.footer__selector .custom-select {
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04);
}

/* ==== ( 3rd Party ) ======================================================= */

/* ---- ( jGrowl ) ---------------------------------------------------------- */

.jGrowl {
  position: fixed;
  z-index: 9999;
  font-family: 'Fira Sans', sans-serif;
  font-size: 12px;
  color: #fff;
}

.jGrowl.top-left {
  left: 0px;
  top: 0px;
}

.jGrowl.top-right {
  right: 0px;
  top: 0px;
}

.jGrowl.bottom-left {
  left: 0px;
  bottom: 0px;
}

.jGrowl.bottom-right {
  right: 0px;
  bottom: 0px;
}

.jGrowl.center {
  top: 0px;
  width: 50%;
  left: 25%;
}

.jGrowl.center .jGrowl-notification,
.jGrowl.center .jGrowl-closer {
  margin-left: auto;
  margin-right: auto;
}

.jGrowl-notification {
  background-color: transparent;
  opacity: .9;
  zoom: 1;
  width: 250px;
  padding: 10px;
  margin: 10px;
  text-align: left;
  display: none;
  border-radius: 5px;
  word-break: break-all;
}

.jGrowl .jGrowl-notification {
  min-height: 40px;
}

.jGrowl-notification .ui-state-highlight,
.jGrowl-notification .ui-widget-content .ui-state-highlight,
.jGrowl-notification .ui-widget-header .ui-state-highlight {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}

.jGrowl-notification .jGrowl-header {
  font-weight: bold;
  font-size: .85em;
}

.jGrowl-notification .jGrowl-close {
  background-color: transparent;
  color: inherit;
  border: none;
  z-index: 99;
  float: right;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
}

.jGrowl-closer {
  background-color: #000;
  opacity: .9;
  zoom: 1;
  width: 250px;
  padding: 10px;
  margin: 10px;
  text-align: left;
  display: none;
  border-radius: 5px;
  word-break: break-all;
  padding-top: 4px;
  padding-bottom: 4px;
  cursor: pointer;
  font-size: .9em;
  font-weight: bold;
  text-align: center;
}

.jGrowl-closer .ui-state-highlight,
.jGrowl-closer .ui-widget-content .ui-state-highlight,
.jGrowl-closer .ui-widget-header .ui-state-highlight {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}

.jGrowl .jGrowl-notification.jgrowl_success {
  background: lightgreen;
  border: 1px solid lightgreen;
  color: #333;
}

.jGrowl .jGrowl-notification.jgrowl_error {
  background: red;
  border: 1px solid red;
  color: #333;
}

.jGrowl .jGrowl-notification.jgrowl_process,
.jGrowl .jGrowl-closer {
  background: yellow;
  border: 1px solid yellow;
  color: #333;
}

@media print {
  .jGrowl {
    display: none;
  }
}

/* ---- ( Modal ) ----------------------------------------------------------- */

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  padding: 20px;
  overflow: auto;
  text-align: center;
  background-color: rgba(0, 0, 0, .75);
}

.blocker::before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-right: -.05em;
  vertical-align: middle;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  width: 400px;
  text-align: left;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background: url('../images/close.png') no-repeat 0 0;
}

.modal-spinner {
  display: none;
  width: 64px;
  height: 64px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -32px;
  margin-top: -32px;
  background: url('../images/spinner-big.gif') no-repeat center center;
  border-radius: 8px;
}

/* ---- ( Impromptu ) ------------------------------------------------------- */

.jqifade {
  position: absolute;
  background-color: #777;
}

iframe.jqifade {
  display: block;
  z-index: -1;
}

div.jqi {
  position: absolute;
  width: 400px;
  max-width: 90%;
  padding: 7px;
  font-family: 'Fira Sans', sans-serif;
  font-size: 12px;
  text-align: left;
  background-color: #fff;
  border: solid 1px #eee;
  border-radius: 6px;
}

div.jqi .jqiclose{
  position: absolute;
  top: 4px;
  right: -2px;
  width: 18px;
  cursor: default;
  font-weight: bold;
  color: #bbb;
}

div.jqi .jqistate {
  background-color: #fff;
}

div.jqi .jqititle {
  padding: 5px 10px;
  font-size: 16px;
  line-height: 20px;
  border-bottom: solid 1px #eee;
}

div.jqi .jqimessage {
  padding: 10px;
  line-height: 20px;
  color: #444;
  overflow: auto;
}

div.jqi .jqibuttonshide {
  display: none;
}

div.jqi .jqibuttons {
  text-align: right;
  margin: 0 -7px -7px -7px;
  border-top: solid 1px #e4e4e4;
  background-color: #f4f4f4;
  border-radius: 0 0 6px 6px;
}

div.jqi .jqibuttons button {
  margin: 0;
  padding: 15px 20px;
  background-color: transparent;
  font-weight: normal;
  border: none;
  border-left: solid 1px #e4e4e4;
  color: #777;
  font-weight: bold;
  font-size: 12px;
}

div.jqi .jqibuttons button.jqidefaultbutton {
  color: #489afe;
}

div.jqi .jqibuttons button:hover,
div.jqi .jqibuttons button:focus {
  color: #287ade;
  outline: none;
}

div.jqi .jqibuttons button[disabled] {
  color: #aaa;
}

.jqiwarning .jqi .jqibuttons {
  background-color: #b95656;
}

div.jqi .jqiparentstate::after {
  background-color: #777;
  opacity: .6;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 6px;
}

div.jqi .jqisubstate {
  position: absolute;
  top:0;
  left: 20%;
  width: 60%;
  padding: 7px;
  border: solid 1px #eee;
  border-top: none;
  border-radius: 0 0 6px 6px;
}

div.jqi .jqisubstate .jqibuttons button {
  padding: 10px 18px;
}

.jqi .jqiarrow {
  position: absolute;
  height: 0;
  width:0;
  line-height: 0;
  font-size: 0;
  border: solid 10px transparent;
}

.jqi .jqiarrowtl {
  left: 10px;
  top: -20px;
  border-bottom-color: #fff;
}

.jqi .jqiarrowtc {
  left: 50%;
  top: -20px;
  border-bottom-color: #fff;
  margin-left: -10px;
}

.jqi .jqiarrowtr {
  right: 10px;
  top: -20px;
  border-bottom-color: #fff;
}

.jqi .jqiarrowbl {
  left: 10px;
  bottom: -20px;
  border-top-color: #fff;
}

.jqi .jqiarrowbc {
  left: 50%;
  bottom: -20px;
  border-top-color: #fff;
  margin-left: -10px;
}

.jqi .jqiarrowbr {
  right: 10px;
  bottom: -20px;
  border-top-color: #fff;
}

.jqi .jqiarrowlt {
  left: -20px;
  top: 10px;
  border-right-color: #fff;
}

.jqi .jqiarrowlm {
  left: -20px;
  top: 50%;
  border-right-color: #fff;
  margin-top: -10px;
}

.jqi .jqiarrowlb {
  left: -20px;
  bottom: 10px;
  border-right-color: #fff;
}

.jqi .jqiarrowrt {
  right: -20px;
  top: 10px;
  border-left-color: #fff;
}

.jqi .jqiarrowrm {
  right: -20px;
  top: 50%;
  border-left-color: #fff;
  margin-top: -10px;
}

.jqi .jqiarrowrb {
  right: -20px;
  bottom: 10px;
  border-left-color: #fff;
}

/* ==== ( Fix ) ============================================================= */

/* ---- ( Editor ) ---------------------------------------------------------- */

.sceditor-button {
  box-sizing: content-box;
}
