* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #ddd;
  background: #444444;
}

#page {
  max-width: 1100px;
  margin: 72px auto 1rem auto;
}

.area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  width: 100%;
  color: #aaaaaa;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  word-break: break-word;
}
.area.small {
  font-size: 14px;
  padding: 0 1rem 0.5rem 1rem;
  margin: -1rem 0 1rem 0;
}
.area.mini {
  font-size: 14px;
  padding: 0.75rem 0.5rem;
  margin: 0 auto;
}
.area > p {
  width: 100%;
  text-align: center;
}

.opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  margin: 0.25rem 1rem 0.5rem 1rem;
  width: auto;
  color: #aaaaaa;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}

a {
  color: dodgerblue;
  font-weight: bold;
}
a:hover {
  color: #0077ea;
}

[v-if], [v-else], [v-show], [v-for] {
  display: none !important;
}

ul.info {
  margin-top: 0;
}
ul.info li {
  margin: 0 0 0.75rem 0;
  color: #aaaaaa;
}

.alert {
  background: crimson;
  font-weight: bold;
  color: white;
  margin: 0 1rem 2rem 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  line-height: 1.35rem;
  text-align: center;
}
.alert.m {
  margin: 0 0 1.25rem 0;
}
.alert a {
  color: palegreen;
}
.alert a.btn {
  display: inline-block;
  margin: 0.5rem auto;
}

.c-active {
  color: palegreen !important;
}

.c-error {
  color: red !important;
}

.c-warning {
  color: orange !important;
}

.c-center {
  text-align: center;
}

.a-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.a-column {
  flex-direction: column;
}
.a-column > * {
  margin-bottom: 0.5rem;
}

body > footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1rem 1rem 6rem 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  max-width: 1068px;
}
body > footer p {
  word-break: break-word;
}
body > footer .badge-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
body > footer .badge-list .badge {
  display: flex;
  flex-direction: column;
  width: 88px;
  height: 31px;
  position: relative;
  margin: 0 0.5rem 0.5rem 0;
  padding: 2px 2px 0 2px;
  font-size: 11px;
  color: white;
  background: green;
  border: 1px solid darkgreen;
  border-top: 1px solid #009a00;
  border-left: 1px solid #009a00;
  pointer-events: none;
  text-shadow: 1px 1px 0 #333;
}
body > footer .badge-list .badge.link {
  pointer-events: initial;
  text-decoration: none;
}
body > footer .badge-list .badge strong {
  text-transform: uppercase;
}
body > footer .badge-list .badge span {
  letter-spacing: 2px;
  font-weight: normal;
}
body > footer .badge-list .badge img {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 20px;
}
body > footer .badge-list .badge.warning {
  background: #8b2222;
  border: 1px solid #621818;
  border-top: 1px solid #b42c2c;
  border-left: 1px solid #b42c2c;
}
body > footer .info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  color: #888;
  width: 600px;
  max-width: 100%;
}
body > footer .info > .key {
  font-weight: bold;
  color: #888;
  text-decoration: none;
}
body > footer .info > .key:hover {
  color: dodgerblue;
}
.form-search {
  padding: 1rem 1rem 0 1rem;
}
.form-search .input {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.form-search .input .btn {
  height: 44px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form-search .input input {
  height: 44px;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

#navbar {
  margin: 0;
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background: #333;
  height: 56px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9;
}
#navbar.centered {
  justify-content: center;
}
#navbar > ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#navbar > ul > li {
  display: block;
}
@media screen and (max-width: 600px) {
  #navbar > ul > li.md {
    display: none;
  }
}
#navbar > ul > li.sm {
  display: none;
}
@media screen and (max-width: 600px) {
  #navbar > ul > li.sm {
    display: block;
  }
}
#navbar > ul > li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
  padding: 0.5rem 0.5rem;
  color: #f5f5f5;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 14px;
  font-family: "Source Code Pro", "SF Mono", Monaco, Inconsolata, "Fira Mono", "Droid Sans Mono", monospace, monospace;
}
#navbar > ul > li a img {
  position: relative;
  top: 0;
  max-height: 24px;
  margin-right: 0.5rem;
}
#navbar > ul > li a img.clear {
  margin: 0 !important;
}
#navbar > ul > li:hover > a, #navbar > ul > li > a:hover {
  background: rgba(0, 0, 0, 0.2);
}
#navbar > ul > li#brand a {
  color: dodgerblue;
  text-transform: uppercase;
}
#navbar > ul > li#profile {
  position: static;
}
#navbar > ul > li#profile > a {
  font-size: 14px;
  padding: 1rem 0.5rem;
  border-radius: 0;
}
@media screen and (max-width: 400px) {
  #navbar > ul > li#profile > a img {
    margin: 0;
  }
}
#navbar > ul > li#profile > a > span {
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 400px) {
  #navbar > ul > li#profile > a > span {
    display: none;
  }
}
#navbar > ul > li#profile .profile {
  position: absolute;
  right: 0;
  top: 56px;
  width: 100%;
  justify-content: center;
  display: none;
  background: #515151;
  box-shadow: -4px 4px 16px -8px #111;
  z-index: 99;
}
#navbar > ul > li#profile .profile.active {
  display: flex !important;
}
@media screen and (min-width: 480px) {
  #navbar > ul > li#profile .profile {
    width: 300px;
    border-bottom-left-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }
}
#navbar > ul > li#profile:hover .profile {
  display: flex !important;
}
#navbar > ul > li#search form {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 600px) {
  #navbar > ul > li#search form {
    display: none;
  }
}
#navbar > ul > li#search form.active {
  position: absolute;
  left: 0;
  top: 56px;
  width: 100%;
  justify-content: center;
  display: flex !important;
  padding: 1rem 0.5rem;
  background: #515151;
  z-index: 99;
}
#navbar > ul > li#search form.active input {
  height: 34px;
  padding: 0.5rem 0.75rem;
}
#navbar > ul > li#search form.active input:last-child {
  color: #aaa;
  padding: 0.5rem 1rem;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
#navbar > ul > li#search form input {
  padding: 0.35rem 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  color: whitesmoke;
  font-weight: bold;
  text-transform: lowercase;
  font-family: Arial, sans-serif;
  font-size: 14px;
  outline: none;
  border: 1px solid #111;
}
#navbar > ul > li#search form input:first-child {
  border-right: none;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
#navbar > ul > li#search form input:last-child {
  color: #aaa;
  padding: 0.35rem 0.75rem;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
#navbar > ul > li#search form input[type=button] {
  cursor: pointer;
}
#navbar > ul > li#search form input[type=button]:hover {
  color: whitesmoke;
  background: rgba(0, 0, 0, 0.1);
}
#navbar > ul > li#search a {
  display: none;
}
@media screen and (max-width: 600px) {
  #navbar > ul > li#search a {
    display: flex;
  }
}
#navbar > ul:first-child li {
  margin-right: 0.25rem;
}
#navbar > ul:last-child li {
  margin-left: 0.25rem;
}
#navbar > ul:last-child li a img {
  position: relative;
  top: 0;
  max-height: 24px;
  margin-right: 0;
  margin-left: 0.5rem;
}
#navbar.centered > ul > li > a > img {
  margin: 0 0.25rem 0 0 !important;
}
#navbar > ul > li#profile > .profile {
  padding: 1rem 1rem;
}
#navbar > ul > li#profile > .profile > ul {
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  width: 100%;
}
#navbar > ul > li#profile > .profile > ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
#navbar > ul > li#profile > .profile > ul li a {
  display: flex;
  padding: 0.75rem 1rem;
  padding-left: 0;
  width: 100%;
  font-family: Arial, sans-serif;
  font-size: 14px;
  text-transform: none !important;
}
#navbar > ul > li#profile > .profile > ul li a:hover {
  background: rgba(0, 0, 0, 0.2);
}
#navbar > ul > li#profile > .profile > ul li:not(.avatar) > a {
  padding-left: 64px;
}
#navbar > ul > li#profile > .profile > ul li.avatar {
  margin-bottom: 0.5rem;
}
#navbar > ul > li#profile > .profile > ul li.avatar a {
  display: flex;
  flex-direction: row;
  background: rgba(0, 0, 0, 0.15);
}
#navbar > ul > li#profile > .profile > ul li.avatar a img {
  height: 48px;
  max-height: 48px;
  margin-right: 0.5rem;
}
#navbar > ul > li#profile > .profile > ul li.avatar a div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  height: 36px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 600 !important;
  text-decoration: none;
  background: #4d4d4d !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border-radius: 0.25rem;
  border: none !important;
}
.btn:hover {
  background: #404040 !important;
  color: rgb(255, 255, 255) !important;
}
.btn:active, .btn.active {
  background: #383838 !important;
}
.btn.info {
  background: dodgerblue !important;
  color: white !important;
}
.btn.info:hover {
  background: #0583ff !important;
  color: rgb(255, 255, 255) !important;
}
.btn.info:active, .btn.info.active {
  background: #007cf4 !important;
}
.btn.success {
  background: #0db158 !important;
  color: white !important;
}
.btn.success:hover {
  background: #0b994c !important;
  color: rgb(255, 255, 255) !important;
}
.btn.success:active, .btn.success.active {
  background: #0a8b45 !important;
}
.btn.error {
  background: #b70a2d !important;
  color: white !important;
}
.btn.error:hover {
  background: #9f0927 !important;
  color: rgb(255, 255, 255) !important;
}
.btn.error:active, .btn.error.active {
  background: #900823 !important;
}
.btn.warning {
  background: darkorange !important;
  color: white !important;
}
.btn.warning:hover {
  background: #e67e00 !important;
  color: rgb(255, 255, 255) !important;
}
.btn.warning:active, .btn.warning.active {
  background: #d67600 !important;
}
.btn.block {
  display: block;
  width: auto;
  margin: 0 auto 0.5rem auto;
  text-align: center;
}
.btn.block.sm {
  width: initial;
  max-width: 480px/4;
}
.btn.mini {
  text-transform: uppercase;
  font-size: 0.9rem;
}
.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}
.btn.disabled, .btn[disabled] {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.pagination {
  display: block;
  margin: 0.25rem 0;
  padding: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}
.pagination ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 420px) {
  .pagination ul {
    flex-direction: column;
  }
}
.pagination ul li {
  display: block;
  list-style: none;
}
@media screen and (max-width: 420px) {
  .pagination ul li {
    width: 100%;
  }
}
.pagination ul li a {
  display: block;
  padding: 0.5rem 1rem;
  background: #222;
  border-radius: 1rem;
  color: #dddddd;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 420px) {
  .pagination ul li a {
    margin: 0.25rem 0 0 0;
    width: auto;
    text-align: center;
  }
}
.pagination ul li a:hover {
  background: #111;
}
.pagination ul li.active a {
  background: dodgerblue;
}
.pagination ul li.active a:hover {
  background: #0077ea;
}

.filter {
  display: block;
  margin: 0.25rem 0;
  padding: 0.5rem 0.5rem 0 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0.25rem;
}
.filter ul {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: start;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.filter ul li {
  display: flex;
  list-style: none;
}
.filter ul li a {
  display: block;
  margin: 0 0.25rem 0.5rem 0;
  padding: 0.25rem 0.75rem;
  font-size: 14px;
  background: #222;
  border-radius: 0.25rem;
  color: #dddddd;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 420px) {
  .filter ul li a {
    margin: 0 0.25rem 0.25rem 0;
    width: auto;
    text-align: center;
  }
}
.filter ul li a.tag {
  color: red;
}
.filter ul li a:hover {
  background: #111;
}
.filter ul li.active a {
  color: black !important;
  background: darkorange;
}
.filter ul li.active a:hover {
  background: #cc7000;
}

.input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: auto;
  max-width: 100%;
}

.input input:not([type=radio]):not([type=checkbox]),
.input select,
.input textarea,
.input .control {
  padding: 0.75rem;
  color: #ddd;
  font-size: 1rem;
  border: 1px solid #262626;
  border-radius: 0.25rem;
  outline: none;
  box-shadow: 0 0 0 0 rgba(76, 63, 157, 0.15);
  background: #2b2b2b;
  width: 100%;
  transition: all 0.22s;
}
.input input:not([type=radio]):not([type=checkbox]):focus, .input input:not([type=radio]):not([type=checkbox]):active,
.input select:focus,
.input select:active,
.input textarea:focus,
.input textarea:active,
.input .control:focus,
.input .control:active {
  border: 1px solid #1f1f1f;
  box-shadow: 0 0 0 4px rgba(100, 149, 237, 0.15);
}
.input input:not([type=radio]):not([type=checkbox]):disabled, .input input:not([type=radio]):not([type=checkbox]).disabled,
.input select:disabled,
.input select.disabled,
.input textarea:disabled,
.input textarea.disabled,
.input .control:disabled,
.input .control.disabled {
  cursor: default;
  background: #3b3b3b;
  opacity: 0.8;
}
.input input:not([type=radio]):not([type=checkbox]).wide,
.input select.wide,
.input textarea.wide,
.input .control.wide {
  max-width: 100%;
}
.input input:not([type=radio]):not([type=checkbox]).heading,
.input select.heading,
.input textarea.heading,
.input .control.heading {
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.input label {
  display: block;
  cursor: pointer;
  color: #ddd;
  padding: 0.5rem;
}

.input.icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.input.icon > label > i[class^=fa-] {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 -1px 0 0;
  height: 44px;
  padding: 0 1rem;
  color: #ddd;
  font-size: 1rem;
  border: 1px solid #262626;
  background: #2b2b2b;
  border-radius: 0.5rem !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.input.icon input {
  border-radius: 0.5rem !important;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.form {
  display: block;
  background: #333333;
  max-width: calc(100% - 2rem);
  width: 460px;
  margin: 1.5rem auto 0 auto;
  border-radius: 0.25rem;
  border: 1px solid #262626;
}

.form > header {
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #2e2e2e;
}

form > section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 2rem 1rem;
}
form > section .txt-center {
  text-align: center;
}
form > section .input, form > section .form-error {
  margin: 0 auto 1rem auto;
  width: 100%;
}
@media screen and (max-width: 400px) {
  form > section .input, form > section .form-error {
    width: 100%;
  }
}
form > section .input .error, form > section .form-error .error {
  margin: 0;
  padding: 0.25rem 0.5rem;
  color: crimson;
  font-size: 0.85rem;
}
form > section .input .help, form > section .form-error .help {
  margin: 0;
  padding: 0.25rem 0.5rem;
  color: #aaa;
  font-size: 0.85rem;
}
form > section .input .help ul, form > section .form-error .help ul {
  margin: 0.5rem 0 0 1rem;
  padding: 0;
}
form > section .form-error {
  padding: 0.5rem;
  background: crimson;
  color: white;
  text-align: center;
  border-radius: 0.25rem;
}

form > footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  padding: 2rem;
  background: #2e2e2e;
}
form > footer .btn {
  width: 100% !important;
  margin-bottom: 0 !important;
  text-decoration: none !important;
}
form > footer > .or {
  display: block;
  margin: 2rem 0 1rem 0;
  overflow: visible;
  text-align: center;
  width: calc(100% + 4rem);
}
form > footer > .or > span {
  position: relative;
  display: inline-block;
  background: #2e2e2e;
  top: -0.55rem;
  padding: 0 0.5rem;
  color: #aaa;
}
form > footer > .or:before {
  display: block;
  width: 100%;
  height: 1px;
  content: " ";
  border-bottom: 1px solid #3b3b3b;
}

.block {
  display: block;
  background: #333333;
  width: auto;
  margin: 0 1rem;
  border-radius: 0.25rem;
  border: 1px solid #262626;
}
.block.small {
  width: 480px;
}
.block.mb {
  margin-bottom: 1rem;
}

.block-nav {
  margin: 0 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 600px) {
  .block-nav {
    margin: 0 1rem 1rem 1rem;
    flex-direction: column;
  }
}
.block-nav li {
  list-style: none;
  margin-right: 0.5rem;
}
@media screen and (max-width: 600px) {
  .block-nav li {
    margin: 0.25rem 0;
  }
}
.block-nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #dddddd;
  background: rgba(0, 0, 0, 0.1);
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
}
@media screen and (max-width: 600px) {
  .block-nav li a {
    border-radius: 0.25rem;
  }
}
.block-nav li a:hover, .block-nav li a.active {
  background: rgba(0, 0, 0, 0.2);
}

.block > header {
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #2e2e2e;
}

.block > .expand {
  width: 100%;
  padding: 1rem 1rem 0.5rem 1rem;
}

.block > section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 1rem 1rem;
  font-size: 1.1rem;
}
.block > section h1 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem 0;
}
.block > section h1:first-child {
  margin-top: 0;
}
.block > section h2 {
  font-size: 1.35rem;
  margin: 1.5rem 0 0.5rem 0;
}
.block > section h2:first-child {
  margin-top: 0;
}
.block > section h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem 0;
}
.block > section h3:first-child {
  margin-top: 0;
}
.block > section p {
  color: #aaaaaa;
  line-height: 1.75rem;
  margin: 0 0 0.5rem 0;
}
.block > section p strong, .block > section p b {
  color: #acc !important;
}
.block > section ul {
  margin: 0.5rem 0 0.75rem 0;
}
.block > section ul > li {
  margin: 0.5rem 0;
}
.block > section ul > li:first-child {
  margin-top: 0;
}
.block > section ul > li:last-child {
  margin-bottom: 0;
}
.block > section .txt-center {
  text-align: center;
}
.block > section .error {
  padding: 0.5rem;
  background: crimson;
  color: white;
  text-align: center;
  border-radius: 0.25rem;
}
.block > section .balance {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  padding: 0.75rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.05);
  max-width: 320px;
}
.block > section .balance img {
  margin-right: 0.75rem;
  height: 48px;
}
.block > section .balance .value {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.block > section .balance .value strong {
  display: flex;
  align-items: center;
  margin: 0 0 0.5rem;
}
.block > section .payment {
  display: flex;
  flex-direction: row;
  align-items: start;
}
@media screen and (max-width: 920px) {
  .block > section .payment {
    flex-direction: column;
  }
}
.block > section .payment .code {
  display: flex;
  flex-direction: column;
  max-width: 256px;
  margin: 0 1rem 1rem 0;
}
@media screen and (max-width: 920px) {
  .block > section .payment .code {
    margin: 0 auto 2rem auto;
  }
}
.block > section .payment .code img {
  max-width: 100%;
  border-radius: 0.5rem;
}
.block > section .payment .info {
  width: 100%;
}
.block > section .payment .info .help {
  font-size: 14px;
  color: #aaaaaa;
  padding: 0.5rem 0.5rem 1.5rem 0.5rem;
}

.block > footer {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: stretch;
  padding: 2rem;
  background: #2e2e2e;
}
.block > footer.space {
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .block > footer {
    flex-direction: column;
  }
}
.block > footer .btn {
  margin-right: 0.5rem;
  text-decoration: none !important;
}
@media screen and (max-width: 600px) {
  .block > footer .btn {
    margin-bottom: 0.5rem !important;
  }
}
.block > footer .btn:last-child {
  margin-right: 0;
}
@media screen and (max-width: 600px) {
  .block > footer .btn:last-child {
    margin-bottom: 0;
  }
}
.block > footer > .or {
  display: block;
  margin: 2rem 0 1rem 0;
  overflow: visible;
  text-align: center;
  width: 480px;
}
@media screen and (max-width: 480px) {
  .block > footer > .or {
    width: 100%;
  }
}
.block > footer > .or > span {
  position: relative;
  display: inline-block;
  background: #2e2e2e;
  top: -0.66rem;
  padding: 0 0.5rem;
  color: #aaa;
}
.block > footer > .or:before {
  display: block;
  width: 100%;
  height: 1px;
  content: " ";
  border-bottom: 1px solid #3b3b3b;
}

@keyframes show-tooltip {
  0% {
    opacity: 0;
    transform: translate(-50%, 0) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}
[data-tooltip] {
  position: relative;
}
[data-tooltip]:before {
  position: absolute;
  content: attr(data-tooltip);
  top: calc(100% + 0.5rem);
  left: 50%;
  padding: 0.5rem;
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: normal;
  background-color: #1a1a1a;
  border-radius: 0.25rem;
  border: 1px solid #000;
  transform: translate(-50%, 0) scale(0.8);
  transform-origin: 50% 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 999999;
}
[data-tooltip]:hover:before {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  animation: show-tooltip;
  animation-play-state: running;
  animation-iteration-count: 1;
  animation-duration: 0.25s;
}

.video-list {
  padding: 1rem;
}
.video-list .header {
  display: flex;
  flex-direction: column;
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 0.75rem;
  width: auto;
  border-bottom: 4px solid dodgerblue;
  word-break: break-all;
}

.video-list > .video-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: start;
  justify-content: flex-start;
}
.video-list > .video-items > .video-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.5rem;
  max-width: 25%;
  min-width: 25%;
  background: rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 980px) {
  .video-list > .video-items > .video-item {
    max-width: 33.33%;
    min-width: 33.33%;
  }
}
@media screen and (max-width: 720px) {
  .video-list > .video-items > .video-item {
    max-width: 50%;
    min-width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .video-list > .video-items > .video-item {
    max-width: 100%;
    min-width: 100%;
  }
}
.video-list > .video-items > .video-item:hover {
  background: rgba(0, 0, 0, 0.2);
}
.video-list > .video-items > .video-item > .poster {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111111;
  height: 200px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0.25rem;
}
.video-list > .video-items > .video-item > .poster:after {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  content: " XEN ";
  position: absolute;
  left: auto;
  top: auto;
  filter: grayscale(1);
  opacity: 0.25;
  width: 64px;
  height: 64px;
  color: white;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  transition: opacity 0.25s;
  z-index: 1;
}
.video-list > .video-items > .video-item > .poster:hover:after {
  opacity: 0.8;
}
.video-list > .video-items > .video-item > .poster.video:after {
  background-image: url(../icon/logo.png);
}
.video-list > .video-items > .video-item > .poster.actor:after {
  background-image: url(../icon/actor.png);
}
.video-list > .video-items > .video-item > .poster.album:after {
  background-image: url(../icon/folder.png);
}
.video-list > .video-items > .video-item > .poster.photo {
  cursor: zoom-in;
}
.video-list > .video-items > .video-item > .poster.photo:after {
  background-image: url(../icon/image.png);
}
.video-list > .video-items > .video-item > .poster img {
  max-width: 100%;
  max-height: 100%;
}
.video-list > .video-items > .video-item > .poster > .attrs, .video-list > .video-items > .video-item > .poster > .meta {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.video-list > .video-items > .video-item > .poster > .attrs > *, .video-list > .video-items > .video-item > .poster > .meta > * {
  display: block;
  background: #333333;
  color: #dddddd;
  font-weight: bold;
  font-size: 12px;
  padding: 0.25rem;
}
.video-list > .video-items > .video-item > .poster > .attrs > *:first-child, .video-list > .video-items > .video-item > .poster > .meta > *:first-child {
  border-top-right-radius: 0.25rem;
}
.video-list > .video-items > .video-item > .poster > .attrs > *.trial, .video-list > .video-items > .video-item > .poster > .meta > *.trial {
  background-color: green;
  color: white;
}
.video-list > .video-items > .video-item > .poster > .meta {
  bottom: initial;
  top: 0;
}
.video-list > .video-items > .video-item > .poster > .meta > *:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0.25rem;
}
.video-list > .video-items > .video-item > .poster > .meta > *:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0.25rem;
}
.video-list > .video-items > .video-item > .title {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-weight: bold;
  color: #aaaaaa;
  text-decoration: none;
  padding: 0.25rem 0;
}
.video-list > .video-items > .video-item > .meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.7;
}
.video-list > .video-items > .video-item > .meta a {
  color: deepskyblue;
  text-decoration: none;
}
.video-list > .video-items > .video-item > .meta a:hover {
  color: dodgerblue;
}
.video-list > .video-items > .video-item > .meta .favourite a {
  color: gold;
}
.video-list > .video-items > .video-item > .meta a.active {
  color: deepskyblue;
}

.video-view {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0.5rem;
  margin: 5rem 0 0 0;
  width: 100%;
  max-width: 100%;
}
.video-view > .title {
  color: #dddddd;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 0.5rem;
}
.video-view > .quality-choice {
  margin: 0;
  padding: 0 0 0 1rem;
  display: flex;
  flex-direction: row;
  justify-content: end;
}
.video-view > .quality-choice li {
  display: block;
  list-style: none;
}
.video-view > .quality-choice li a {
  display: block;
  margin: 0 0.25rem 0 0;
  padding: 0.25rem 0.75rem;
  background: rgba(0, 0, 0, 0.1);
  color: whitesmoke;
  text-decoration: none;
  font-weight: bold;
  font-size: 12px;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.video-view > .quality-choice li.high a {
  color: greenyellow;
}
.video-view > .quality-choice li.low a {
  color: coral;
}
.video-view > .poster {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111111;
  height: 560px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0.25rem;
}
@media screen and (max-width: 1080px) {
  .video-view > .poster {
    height: 480px;
  }
}
@media screen and (max-width: 820px) {
  .video-view > .poster {
    height: 360px;
  }
}
@media screen and (max-width: 560px) {
  .video-view > .poster {
    height: 240px;
  }
}
.video-view > .poster > a {
  display: block;
  height: 100%;
  max-width: 100%;
}
.video-view > .poster img, .video-view > .poster video {
  width: auto;
  max-height: 100%;
  height: 100%;
}
.video-view > .poster video {
  width: 100%;
}
.video-view > .poster .error {
  z-index: 1;
  padding: 0 1rem;
}
.video-view > .poster .error a {
  font-weight: bold;
  color: dodgerblue;
  text-decoration: none;
}
.video-view > .poster .error a:hover {
  color: cornflowerblue;
}
.video-view > .poster .attrs {
  position: absolute;
  left: 0;
  top: 0;
  background: #333333;
  color: #dddddd;
  font-weight: bold;
  font-size: 12px;
  padding: 0.25rem;
}
.video-view > .poster .attrs.error {
  color: red;
}
.video-view > .poster .attrs.success {
  color: lightgreen;
}
.video-view > .poster > .preview {
  position: absolute;
  content: " ";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: blur(5px) grayscale(1);
  opacity: 0.4;
  z-index: 0;
}
.video-view > .navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.video-view > .navigation > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 0.25rem 0 0;
  width: 50%;
  height: 100px;
  max-width: 50%;
  color: whitesmoke;
  text-decoration: none;
  border-radius: 0.5rem;
  background: #111111;
  overflow: hidden;
}
.video-view > .navigation > a img {
  max-width: 100%;
  max-height: 100px;
  margin: 0 1rem;
}
.video-view > .navigation > a:first-child {
  justify-content: start;
}
.video-view > .navigation > a:last-child {
  justify-content: end;
  margin-right: 0;
  text-align: right;
}
.video-view > .preview {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 0 0.5rem 0;
}
.video-view > .preview .thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.25rem 0.25rem 0 0;
  width: 16.6666666667%;
  height: 80px;
  max-width: 16.6666666667%;
  border-radius: 0.5rem;
  background: #111111;
  overflow: hidden;
}
.video-view > .preview .thumb:last-child {
  margin-right: 0;
}
.video-view > .preview .thumb img {
  max-width: 100%;
  max-height: 100%;
}
.video-view > .meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  opacity: 1;
  margin-top: 0.25rem;
  padding: 0.5rem 0.5rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 400px) {
  .video-view > .meta {
    flex-direction: column;
    align-items: start;
  }
}
.video-view > .meta .author {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 400px) {
  .video-view > .meta .author {
    align-items: center;
    justify-content: start;
  }
}
.video-view > .meta .author img {
  max-height: 48px;
  margin-right: 0.5rem;
}
.video-view > .meta .author .profile {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-view > .meta .author .profile .title {
  font-weight: bold;
  margin: 0 0 0.25rem;
  color: #eee;
}
.video-view > .meta .author .profile .title a {
  color: deepskyblue;
  text-decoration: none;
}
.video-view > .meta .author .profile .title a:hover {
  color: dodgerblue;
}
.video-view > .meta .author .profile .subtitle {
  font-size: 12px;
}
.video-view > .meta .counters {
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  margin: 0 0.5rem;
}
@media screen and (max-width: 400px) {
  .video-view > .meta .counters {
    align-items: start;
    justify-content: start;
    margin: 0.5rem 0 0.5rem 0;
  }
}
.video-view > .meta .counters span:first-child {
  margin-bottom: 0.5rem;
}
.video-view .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: start;
  justify-content: start;
  margin: 0.25rem 0;
}
.video-view .tags a {
  display: block;
  padding: 0.5rem 0.5rem;
  margin: 0.25rem 0.25rem;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  color: #dddddd;
  text-decoration: none;
}
.video-view .tags a:first-child {
  margin-left: 0;
}
.video-view .tags a:last-child {
  margin-right: 0;
}
.video-view .tags a.actor {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.video-view .tags a.actor:before {
  display: inline-block;
  content: " ";
  background: url("../icon/actor.png") no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  margin-right: 0.25rem;
}
.video-view .albums {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0.5rem 0;
}
.video-view .albums header {
  font-size: 24px;
  font-weight: bold;
  color: whitesmoke;
  margin: 1rem 0 0.5rem 0.5rem;
}
.video-view .albums .album {
  display: flex;
  flex-direction: row;
  justify-content: start;
  padding: 0.5rem;
  margin: 0 0 1rem 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
@media screen and (max-width: 870px) {
  .video-view .albums .album {
    flex-direction: column;
  }
}
.video-view .albums .album > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0.5rem 0 0;
}
.video-view .albums .album > a > img {
  border-radius: 0.25rem;
  height: 140px;
}
.video-view .albums .album > .about {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 870px) {
  .video-view .albums .album > .about {
    flex-direction: column;
  }
}
.video-view .albums .album > .about > .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 870px) {
  .video-view .albums .album > .about > .content {
    align-items: center;
  }
}
.video-view .albums .album > .about > .content > .title {
  display: block;
  padding: 0.25rem 0 0.5rem 0.25rem;
  font-size: 18px;
  font-weight: bold;
}
.video-view .albums .album > .about > .content > .types {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 420px) {
  .video-view .albums .album > .about > .content > .types {
    flex-direction: column;
  }
}
.video-view .albums .album > .about > .content > .types > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0.25rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  text-decoration: none;
}
.video-view .albums .album > .about > .content > .types > a img {
  margin: 0.25rem 0 0.5rem 0;
}
.video-view .albums .album > .about > .content > .types > a > .count {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
}
.video-view .albums .album > .about > .content > .types > a > .count strong {
  color: whitesmoke;
}
.video-view .albums .album > .about > .content > .types > a > .count span {
  font-size: 14px;
  font-weight: normal;
}
.video-view .albums .album > .about > .option {
  display: flex;
  align-items: start;
  justify-content: start;
}
@media screen and (max-width: 870px) {
  .video-view .albums .album > .about > .option {
    flex-direction: column;
    align-items: stretch;
  }
}
.video-view .albums .album > .about > .option a {
  text-align: center;
}
.video-view .downloads {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0.5rem 0;
}
.video-view .downloads header {
  font-size: 24px;
  font-weight: bold;
  color: whitesmoke;
  margin: 1rem 0 0.5rem 0.5rem;
}
.video-view .downloads .file {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
  margin: 0 0 0.25rem 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.video-view .downloads .file > .preview {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.video-view .downloads .file > .preview > img {
  max-height: 32px;
  margin: 0 0.5rem;
}
.video-view .downloads .file > .preview > strong {
  display: flex;
}

.upload {
  padding: 0;
}
.upload > .header {
  display: flex;
  flex-direction: column;
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 0.75rem;
  width: auto;
  border-bottom: 4px solid dodgerblue;
  word-break: break-all;
}

@keyframes blink-btn {
  0% {
    background: #e60000;
    transform: rotate(5deg);
  }
  100% {
    background: red;
    transform: rotate(-5deg);
  }
}
@keyframes blink-online {
  0% {
    background: lightgreen;
  }
  100% {
    background: green;
  }
}
#support {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 64px;
  height: 64px;
  background: black;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #000000;
  transition: box-shadow 0.25s, width 0.25s, height 0.25s, border-radius 0.25s;
  z-index: 9999;
}
#support:hover {
  box-shadow: 0 0 16px -3px #000000;
}
#support.active {
  width: 320px;
  height: 640px;
  max-height: 80vh;
  max-width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 0 8px 0 #000000;
}
#support.active > .button {
  display: none !important;
}
#support.active > .button:before {
  display: none !important;
}
#support.active > .chat {
  display: flex !important;
}
#support > .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
}
#support > .button img {
  width: 36px;
  height: 36px;
}
#support > .button.online:after {
  position: absolute;
  right: 4px;
  bottom: 4px;
  content: " ";
  width: 12px;
  height: 12px;
  background: lightgreen;
  border-radius: 50%;
  animation: blink-online;
  animation-duration: 1s;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
}
#support > .button:before {
  display: block;
  content: " need help? ";
  position: absolute;
  left: calc(-100% - 3rem);
  top: 14px;
  background: red;
  padding: 0.5rem 0.75rem;
  color: white;
  font-weight: bold;
  border-radius: 0.5rem;
  animation: blink-btn;
  animation-duration: 0.5s;
  animation-direction: alternate-reverse;
  animation-iteration-count: infinite;
}
#support > .chat {
  display: none;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}
#support > .chat > header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
}
#support > .chat > header .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  width: 100%;
}
#support > .chat > header .title > .online {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 0.5rem 0 0;
  background: lightgreen;
  border-radius: 50%;
}
#support > .chat > header a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  color: red;
  font-family: Monospaced, sans-serif;
}
#support > .chat > header a:hover {
  background: rgba(255, 255, 255, 0.05);
}
#support > .chat > .window {
  height: 500px;
  max-height: 500px;
  padding: 0.5rem 0.5rem;
  overflow-y: auto;
  overflow-x: hidden;
}
#support > .chat > .window > .chat-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
#support > .chat > .window > .chat-container > * {
  display: flex;
  width: auto;
  color: #aaaaaa;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.25rem 0;
  padding: 0.5rem 0.5rem;
  border-radius: 0.25rem;
  float: right;
  text-overflow: ellipsis;
  word-break: break-word;
}
#support > .chat > .window > .chat-container > .txt {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
  width: 100%;
  font-size: 0.85rem;
  font-weight: bold;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}
#support > .chat > .window > .chat-container > .msg {
  display: flex;
  flex-direction: column;
  position: relative;
}
#support > .chat > .window > .chat-container > .msg header {
  font-weight: bold;
  padding: 0 0 0.5rem 0;
}
#support > .chat > .window > .chat-container > .msg.from {
  border-top-right-radius: 0;
  margin-left: 3rem;
}
#support > .chat > .window > .chat-container > .msg.from header {
  color: violet;
}
#support > .chat > .window > .chat-container > .msg.to {
  border-bottom-left-radius: 0;
  margin-right: 3rem;
  background: rgba(30, 144, 255, 0.25);
}
#support > .chat > .window > .chat-container > .msg.to header {
  color: cyan;
}
#support > .chat > .window > .chat-container > .msg em {
  position: absolute;
  right: 4px;
  bottom: 3px;
  font-size: 12px;
}
#support > .chat > .msg-form {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 86px;
  min-height: 86px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
#support > .chat > .msg-form .btn {
  width: 100%;
  text-align: center;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
#support > .chat > .msg-form textarea {
  color: whitesmoke;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  width: 100%;
  height: 56px;
  max-height: 56px;
  line-height: 1.2rem;
  background: transparent;
  border: none;
  outline: none;
}

.support-area {
  background: rgb(0, 0, 0);
  border-radius: 0.25rem;
  box-shadow: 0 0 0 0 #000000;
  margin: 0 auto;
  max-width: 600px;
}
.support-area > .chat {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}
.support-area > .chat > .msg-form {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 102px;
  min-height: 102px;
  background: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.support-area > .chat > .msg-form .btn {
  width: 100%;
  text-align: center;
  border-radius: 0;
}
.support-area > .chat > .msg-form textarea {
  color: whitesmoke;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  width: 100%;
  height: 72px;
  max-height: 56px;
  line-height: 1.2rem;
  background: transparent;
  border: none;
  outline: none;
}
.support-area > .chat > header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0;
}
.support-area > .chat > header .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  width: 100%;
}
.support-area > .chat > header .title > .online {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 0.5rem 0 0;
  background: lightgreen;
  border-radius: 50%;
}
.support-area > .chat > header a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  color: red;
  font-family: Monospaced, sans-serif;
}
.support-area > .chat > header a:hover {
  background: rgba(255, 255, 255, 0.05);
}
.support-area > .chat > .window {
  height: 500px;
  max-height: 500px;
  padding: 0.5rem 0.5rem;
  overflow-y: auto;
  overflow-x: hidden;
}
.support-area > .chat > .window > .chat-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.support-area > .chat > .window > .chat-container > * {
  display: flex;
  width: auto;
  color: #aaaaaa;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.25rem 0;
  padding: 0.5rem 0.5rem 0.9rem 0.5rem;
  border-radius: 0.25rem;
  float: right;
  text-overflow: ellipsis;
  word-break: break-word;
}
.support-area > .chat > .window > .chat-container > .txt {
  align-items: center;
  justify-content: center;
  text-align: center;
  background: none;
  width: 100%;
  font-size: 0.85rem;
  font-weight: bold;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
}
.support-area > .chat > .window > .chat-container > .msg {
  display: flex;
  flex-direction: column;
  position: relative;
}
.support-area > .chat > .window > .chat-container > .msg header {
  font-weight: bold;
  padding: 0 0 0.5rem 0;
}
.support-area > .chat > .window > .chat-container > .msg.from {
  border-top-right-radius: 0;
  margin-left: 3rem;
}
.support-area > .chat > .window > .chat-container > .msg.from header {
  color: violet;
}
.support-area > .chat > .window > .chat-container > .msg.to {
  border-bottom-left-radius: 0;
  margin-right: 3rem;
  background: rgba(30, 144, 255, 0.25);
}
.support-area > .chat > .window > .chat-container > .msg.to header {
  color: cyan;
}
.support-area > .chat > .window > .chat-container > .msg em {
  position: absolute;
  right: 4px;
  bottom: 3px;
  font-size: 12px;
}

.table {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 0.5rem;
  overflow: auto;
}
.table .row {
  display: flex;
  flex-direction: row;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 580px;
}
.table .row:nth-child(2n-1) {
  background: rgba(0, 0, 0, 0.1);
}
.table .row .col {
  width: auto;
  padding: 0.75rem 0.5rem;
  font-size: 14px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.table .row .col:first-child {
  border-left: none !important;
}
.table .row .col.title {
  font-weight: bold;
  width: 100%;
}
.table .row .col.label {
  color: lightgreen;
  width: 150px;
  max-width: 150px;
  text-align: center;
}
.table .row .col.label.off {
  color: indianred;
}
.table .row .col.date {
  min-width: 100px;
}
.table .row:first-child > .col:first-child {
  border-top-left-radius: 0.25rem;
}
.table .row:first-child > .col:last-child {
  border-top-right-radius: 0.25rem;
}
.table .row:last-child > .col:first-child {
  border-bottom-left-radius: 0.25rem;
}
.table .row:last-child > .col:last-child {
  border-bottom-right-radius: 0.25rem;
}

.table-container {
  height: fit-content;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow-x: auto;
  overflow-y: auto;
}

table {
  width: 100%;
  min-width: 600px;
  overflow-x: auto;
  overflow-y: visible;
}
table thead {
  background: rgba(0, 0, 0, 0.1);
}
table thead tr > td {
  font-weight: bold;
  color: white;
}
table tr {
  background: rgba(0, 0, 0, 0.25);
}
table tr:nth-child(2n-1) {
  background: rgba(0, 0, 0, 0.2);
}
table tr > td {
  padding: 0.5rem;
}
table tr > td[colspan] {
  text-align: center;
  padding: 2rem 1rem;
}
table tr > td .pending {
  color: orange;
}
table tr > td .success {
  color: green;
}
table tr > td .info {
  color: dodgerblue;
}

.plan-list {
  display: flex;
  flex-direction: row !important;
  flex-wrap: wrap !important;
}
@media screen and (max-width: 600px) {
  .plan-list {
    flex-direction: column !important;
  }
}
.plan-list .plan {
  width: 48%;
  margin: 0 0.25rem;
}
@media screen and (max-width: 600px) {
  .plan-list .plan {
    width: 100%;
    margin: 0;
  }
}

.plan header {
  font-size: 20px;
  color: whitesmoke;
  font-weight: bold;
  margin: 0 0 1rem 0;
}
.plan .option {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  margin: 0 0 0.25rem 0;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.plan .option:before {
  display: block;
  content: " ";
  height: 22px;
  width: 22px;
  min-width: 22px;
  margin: 0 0.5rem 0 0;
  background: url("../icon/check.png") no-repeat;
  background-size: cover;
}
.plan .option.off:before {
  background-image: url("../icon/close.png");
}
.plan .price {
  padding: 0.75rem;
  text-align: center;
  font-weight: bold;
}
.plan .price small {
  display: block;
  margin: 0.5rem 0 0 0;
  color: #aaaaaa;
}
.plan .btn {
  margin: 0.5rem 0 2rem 0;
}


