:root {
  --body-font-family: Poppins, Helvetica, "sans-serif";
  --body-bg-color: #eaf1f7;
  --body-bg-color-dark: #131313;
  --body-color: #111;
  --body-color-dark: #dfdfdf;
  --link-color: #4b6fc4;
  --header-bg-color: #2b354c;
  --header-bg-color-dark: #212121;
}

body {
  background-color: var(--body-bg-color);
  color: var(--body-color);
  font-family: var(--body-font-family);
  font-size: 13px;
  padding-top: 70px;
}

body.night-mode {
  background-color: var(--body-bg-color-dark);
  color: var(--body-color-dark);
}

body.n_activated,
body.n_live {
  padding-top: 120px;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: var(--link-color);
}

a:hover {
  text-decoration: none;
}

pre {
  word-wrap: break-word;
  background-color: #f7f7f7;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  font-size: 13px;
  padding: 15px;
  word-break: break-all;
}

body.night-mode pre {
  background-color: #363636;
  border-color: #121212;
  color: var(--body-color-dark);
}

.svg-container {
  display: inline-block;
}

.svg-container svg {
  height: inherit !important;
  width: inherit !important;
}

@media (max-width: 576px) {
  .col,
  .col-1,
  .col-10,
  .col-11,
  .col-12,
  .col-2,
  .col-3,
  .col-4,
  .col-5,
  .col-6,
  .col-7,
  .col-8,
  .col-9,
  .col-auto,
  .col-lg,
  .col-lg-1,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-auto,
  .col-md,
  .col-md-1,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-auto,
  .col-sm,
  .col-sm-1,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-auto,
  .col-xl,
  .col-xl-1,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-auto,
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }

  .row {
    margin-left: -5px;
    margin-right: -5px;
  }
}

.tooltip-inner {
  border-radius: 2px;
  font-family: var(--body-font-family);
  font-size: 13px;
  max-width: none;
  white-space: nowrap;
}

.badge.badge-lg {
  font-size: 100%;
}

body.night-mode .pagination .page-link {
  background: #212121;
  border-color: #333;
}

body.night-mode .img-thumbnail,
body.night-mode .list-group-item {
  background: #212121;
  border-color: #424242;
}

.nav-pills.nav-search .nav-item,
.nav-pills.nav-started .nav-item {
  margin-bottom: 10px;
  margin-right: 10px;
}

.nav-pills.nav-search .nav-item:last-child,
.nav-pills.nav-started .nav-item:last-child {
  margin-right: 0;
}

.nav-pills.nav-search .nav-link:not(.active) {
  background: #fff;
}

.nav-pills.nav-started .nav-link {
  padding-bottom: 15px;
  padding-top: 15px;
}

.nav-pills.nav-started .nav-link:not(.active) {
  background: #f3f3f3;
}

body.night-mode .nav-pills.nav-search .nav-link:not(.active),
body.night-mode .nav-pills.nav-started .nav-link:not(.active) {
  background: #414141;
  color: #fff;
}

body.night-mode .nav-pills.nav-search .nav-link:not(.active):hover,
body.night-mode .nav-pills.nav-started .nav-link:not(.active):hover {
  background: #555;
}

body.night-mode .nav-tabs {
  border-bottom-color: #363636;
}

body.night-mode .nav-tabs .nav-item.show .nav-link,
body.night-mode .nav-tabs .nav-link.active {
  background-color: #212121;
  border-color: #363636 #363636 #212121;
  color: #fff;
}

body.night-mode .nav-tabs .nav-link:not(.active):hover {
  border-color: #363636;
}

.dropdown-menu {
  border: 0;
  box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
  min-width: 200px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

body.night-mode .dropdown-menu {
  background: var(--header-bg-color-dark);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  color: #e5e5e5;
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 8px 16px;
}

.night-mode .dropdown-item {
  color: #e5e5e5;
}

body.night-mode .dropdown-item:focus,
body.night-mode .dropdown-item:hover {
  background-color: #333;
  color: #e5e5e5;
}

body.night-mode .dropdown-divider {
  border-top-color: #424242;
}

.modal {
  z-index: 999999;
}

body.night-mode .modal-content {
  background-color: #212121;
}

body.night-mode .modal-footer,
body.night-mode .modal-header {
  border-color: #424242;
}

.modal-header.with-nav {
  border-bottom: 0;
  padding-bottom: 0;
}

.alert {
  padding: 16px 24px;
}

.alert-link:hover {
  text-decoration: underline;
}

.alert-dismissible {
  padding-right: 72px;
}

.alert-primary {
  background-color: #7889e8;
  border-color: #7889e8;
  color: #fff;
}

.alert-primary hr {
  border-top-color: #6276e4;
}

.alert-secondary {
  background-color: #f6f7f8;
  border-color: #f6f7f8;
  color: #212529;
}

.alert-secondary hr {
  border-top-color: #e8eaed;
}

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

.alert-success hr {
  border-top-color: #3ad190;
}

.alert-info {
  background-color: #37d5f2;
  border-color: #37d5f2;
  color: #fff;
}

.alert-info hr {
  border-top-color: #1fd0f0;
}

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

.alert-warning hr {
  border-top-color: #fc6846;
}

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

.alert-danger hr {
  border-top-color: #f63e62;
}

.alert-light {
  background-color: #bac1c8;
  border-color: #bac1c8;
  color: #fff;
}

.alert-light hr {
  border-top-color: #acb4bd;
}

.alert-dark {
  background-color: #45484b;
  border-color: #45484b;
  color: #fff;
}

.alert-dark hr {
  border-top-color: #393b3e;
}

.alert-post {
  background: #f8f9fa;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  color: var(--link-color);
  font-weight: 600;
}

.night-mode .alert-post {
  background: #212121;
}

.alert-chat {
  background: #8d8d8d;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  color: #fff;
  margin: 0 auto !important;
  padding: 5px 10px !important;
  width: 75%;
}

body.night-mode .alert-chat {
  background: #000;
}

.alert .title {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 8px;
}

.alert .icon {
  display: table-cell;
  padding-right: 10px;
  vertical-align: middle;
}

.alert .text {
  display: table-cell;
  text-align: left;
  vertical-align: top;
}

.btn {
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 34px;
  white-space: nowrap;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
  outline: 0;
}

.btn.disabled,
.btn:disabled {
  box-shadow: none;
}

.btn-group-lg > .btn,
.btn-lg {
  font-size: 14px;
  padding: 16px 96px;
}

.btn-group-md > .btn,
.btn-md {
  font-size: 12px;
  padding: 16px 56px;
}

.btn-group-sm > .btn,
.btn-sm {
  font-size: 11px;
  padding: 8px 26px;
}

.btn-icon {
  padding: 12px 14px;
}

.btn-lg.btn-icon {
  padding: 19px 22px;
}

.btn-md.btn-icon {
  padding: 17px 20px;
}

.btn-sm.btn-icon {
  padding: 5px 8px;
}

.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  background-color: #5e72e4;
  border-color: #5e72e4;
  color: #fff;
}

.btn-primary {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-primary:hover {
  background-color: #4d61cf;
  border-color: #4d61cf;
  color: #fff;
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 0 0 0 rgba(94, 114, 228, 0.5);
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-secondary,
.btn-secondary.disabled,
.btn-secondary:disabled,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show > .btn-secondary.dropdown-toggle {
  background-color: #f7fafc;
  border-color: #f7fafc;
  color: #212529;
}

.btn-secondary {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
  background-color: #f1f4f6;
  border-color: #f1f4f6;
  color: #212529;
}

.btn-secondary.focus,
.btn-secondary:focus {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 0 0 0 rgba(247, 250, 252, 0.5);
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-success,
.btn-success.disabled,
.btn-success:disabled,
.btn-success:not(:disabled):not(.disabled).active,
.btn-success:not(:disabled):not(.disabled):active,
.show > .btn-success.dropdown-toggle {
  background-color: #2dce89;
  border-color: #2dce89;
  color: #fff;
}

.btn-success {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-success:hover,
.profile-buttons-wrapper .action-btn:hover {
  background-color: #eb3357 !important;
  border-color: #eb3357 !important;
  color: #fff;
}

.profile-buttons-wrapper .action-btn svg {
  margin-top: -5px;
}

.btn-success.focus,
.btn-success:focus {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 0 0 0 rgba(45, 206, 137, 0.5);
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-info,
.btn-info.disabled,
.btn-info:disabled,
.btn-info:not(:disabled):not(.disabled).active,
.btn-info:not(:disabled):not(.disabled):active,
.show > .btn-info.dropdown-toggle {
  background-color: #11cdef;
  border-color: #11cdef;
  color: #fff;
}

.btn-info {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-info:hover {
  background-color: #10bede;
  border-color: #10bede;
  color: #fff;
}

.btn-info.focus,
.btn-info:focus {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 0 0 0 rgba(17, 205, 239, 0.5);
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-warning,
.btn-warning.disabled,
.btn-warning:disabled,
.btn-warning:not(:disabled):not(.disabled).active,
.btn-warning:not(:disabled):not(.disabled):active,
.show > .btn-warning.dropdown-toggle {
  background-color: #fb6340;
  border-color: #fb6340;
  color: #fff;
}

.btn-warning {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-warning:hover {
  background-color: #f0603f;
  border-color: #f0603f;
  color: #fff;
}

.btn-warning.focus,
.btn-warning:focus {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 0 0 0 rgba(251, 99, 64, 0.5);
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-danger,
.btn-danger.disabled,
.btn-danger:disabled,
.btn-danger:not(:disabled):not(.disabled).active,
.btn-danger:not(:disabled):not(.disabled):active,
.show > .btn-danger.dropdown-toggle {
  background-color: #f5365c;
  border-color: #f5365c;
  color: #fff;
}

.btn-danger {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-danger:hover {
  background-color: #eb3357;
  border-color: #eb3357;
  color: #fff;
}

.btn-danger.focus,
.btn-danger:focus {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 0 0 0 rgba(245, 54, 92, 0.5);
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-light,
.btn-light.disabled,
.btn-light:disabled,
.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
  background-color: #adb5bd;
  border-color: #adb5bd;
  color: #fff;
}

.btn-light {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-light:hover {
  background-color: #a5adb4;
  border-color: #a5adb4;
  color: #fff;
}

.btn-light.focus,
.btn-light:focus {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 0 0 0 rgba(173, 181, 189, 0.5);
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-dark,
.btn-dark.disabled,
.btn-dark:disabled,
.btn-dark:not(:disabled):not(.disabled).active,
.btn-dark:not(:disabled):not(.disabled):active,
.show > .btn-dark.dropdown-toggle {
  background-color: #212529;
  border-color: #212529;
  color: #fff;
}

.btn-dark {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-dark:hover {
  background-color: #212529;
  border-color: #212529;
  color: #fff;
}

.btn-dark.focus,
.btn-dark:focus {
  box-shadow:
    0 4px 6px rgba(50, 50, 93, 0.11),
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 0 0 0 rgba(33, 37, 41, 0.5);
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-link {
  background-color: transparent;
  color: #5e72e4;
  font-weight: 400;
}

.btn-link:hover {
  background-color: transparent;
  border-color: transparent;
  color: #233dd2;
  text-decoration: none;
}

.btn-link.focus,
.btn-link:focus {
  border-color: transparent;
  box-shadow: none;
  text-decoration: none;
}

.btn-link.disabled,
.btn-link:disabled {
  color: #8898aa;
  pointer-events: none;
}

.btn-outline-primary {
  background-color: transparent;
  background-image: none;
  border-color: #5e72e4;
  color: #5e72e4;
}

.btn-outline-primary:hover {
  background-color: #5e72e4;
  border-color: #5e72e4;
  color: #fff;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 0 rgba(94, 114, 228, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  background-color: transparent;
  color: #5e72e4;
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle {
  background-color: #5e72e4;
  border-color: #5e72e4;
  color: #fff;
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(94, 114, 228, 0.5);
}

.btn-outline-secondary {
  background-color: transparent;
  background-image: none;
  border-color: #f7fafc;
  color: #f7fafc;
}

.btn-outline-secondary:hover {
  background-color: #f7fafc;
  border-color: #f7fafc;
  color: #212529;
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 0 rgba(247, 250, 252, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  background-color: transparent;
  color: #f7fafc;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show > .btn-outline-secondary.dropdown-toggle {
  background-color: #f7fafc;
  border-color: #f7fafc;
  color: #212529;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(247, 250, 252, 0.5);
}

.btn-outline-success {
  background-color: transparent;
  background-image: none;
  border-color: #2dce89;
  color: #2dce89;
}

.btn-outline-success:hover {
  background-color: #2dce89;
  border-color: #2dce89;
  color: #fff;
}

.btn-outline-success.focus,
.btn-outline-success:focus {
  box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  background-color: transparent;
  color: #2dce89;
}

.btn-outline-success:not(:disabled):not(.disabled).active,
.btn-outline-success:not(:disabled):not(.disabled):active,
.show > .btn-outline-success.dropdown-toggle {
  background-color: #2dce89;
  border-color: #2dce89;
  color: #fff;
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.5);
}

.btn-outline-info {
  background-color: transparent;
  background-image: none;
  border-color: #11cdef;
  color: #11cdef;
}

.btn-outline-info:hover {
  background-color: #11cdef;
  border-color: #11cdef;
  color: #fff;
}

.btn-outline-info.focus,
.btn-outline-info:focus {
  box-shadow: 0 0 0 0 rgba(17, 205, 239, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  background-color: transparent;
  color: #11cdef;
}

.btn-outline-info:not(:disabled):not(.disabled).active,
.btn-outline-info:not(:disabled):not(.disabled):active,
.show > .btn-outline-info.dropdown-toggle {
  background-color: #11cdef;
  border-color: #11cdef;
  color: #fff;
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(17, 205, 239, 0.5);
}

.btn-outline-warning {
  background-color: transparent;
  background-image: none;
  border-color: #fb6340;
  color: #fb6340;
}

.btn-outline-warning:hover {
  background-color: #fb6340;
  border-color: #fb6340;
  color: #fff;
}

.btn-outline-warning.focus,
.btn-outline-warning:focus {
  box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  background-color: transparent;
  color: #fb6340;
}

.btn-outline-warning:not(:disabled):not(.disabled).active,
.btn-outline-warning:not(:disabled):not(.disabled):active,
.show > .btn-outline-warning.dropdown-toggle {
  background-color: #fb6340;
  border-color: #fb6340;
  color: #fff;
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.5);
}

.btn-outline-danger {
  background-color: transparent;
  background-image: none;
  border-color: #f5365c;
  color: #f5365c;
}

.btn-outline-danger:hover {
  background-color: #f5365c;
  border-color: #f5365c;
  color: #fff;
}

.btn-outline-danger.focus,
.btn-outline-danger:focus {
  box-shadow: 0 0 0 0 rgba(245, 54, 92, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  background-color: transparent;
  color: #f5365c;
}

.btn-outline-danger:not(:disabled):not(.disabled).active,
.btn-outline-danger:not(:disabled):not(.disabled):active,
.show > .btn-outline-danger.dropdown-toggle {
  background-color: #f5365c;
  border-color: #f5365c;
  color: #fff;
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(245, 54, 92, 0.5);
}

.btn-outline-light {
  background-color: transparent;
  background-image: none;
  border-color: #adb5bd;
  color: #adb5bd;
}

.btn-outline-light:hover {
  background-color: #adb5bd;
  border-color: #adb5bd;
  color: #fff;
}

.btn-outline-light.focus,
.btn-outline-light:focus {
  box-shadow: 0 0 0 0 rgba(173, 181, 189, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  background-color: transparent;
  color: #adb5bd;
}

.btn-outline-light:not(:disabled):not(.disabled).active,
.btn-outline-light:not(:disabled):not(.disabled):active,
.show > .btn-outline-light.dropdown-toggle {
  background-color: #adb5bd;
  border-color: #adb5bd;
  color: #fff;
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(173, 181, 189, 0.5);
}

.btn-outline-dark {
  background-color: transparent;
  background-image: none;
  border-color: #212529;
  color: #212529;
}

.btn-outline-dark:hover {
  background-color: #212529;
  border-color: #212529;
  color: #fff;
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  background-color: transparent;
  color: #212529;
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle {
  background-color: #212529;
  border-color: #212529;
  color: #fff;
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5);
}

.btn-rounded {
  border: 0 !important;
  border-radius: 50%;
}

.btn-delete:hover {
  background-color: #eb3357;
  border-color: #eb3357;
  color: #fff;
}

.btn-delete:hover .fa:before {
  content: "\f1f8";
}

.btn-payment {
  background: #f7f7f7;
}

.btn-payment:hover {
  background: #f1f1f1;
}

.btn-voice-start,
.btn-voice-stop {
  background: #007bff;
  border-radius: 18px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 4px 14px;
}

.btn-voice-stop {
  background: red;
}

.form-control,
.input-group-text {
  border-color: #ddd;
  border-radius: 2px;
}

.width-fit-content{
  width:fit-content ;
}

body.night-mode .form-control,
body.night-mode .input-group-text {
  background-color: #232323;
  border-color: #363636;
  color: #dfdfdf;
}

.form-control:focus {
  box-shadow: none;
}

.form-control-label {
  color: #525f7f;
  font-weight: 600;
  margin-bottom: 0;
}

body.night-mode .form-control-label {
  color: #a3afce;
}

body.night-mode .form-control-plaintext {
  color: #eee;
}

.input-group .btn {
  padding-bottom: 9px;
  padding-top: 9px;
}

.custom-control-label {
  padding-top: 2px;
}

.form-table-row {
  display: flex;
  margin-bottom: 30px;
}

.form-table-row > div {
  flex: 1;
}

.form-table-row > div:last-child {
  flex-basis: auto;
  flex-grow: 0;
  margin-left: 10px;
}

.form-table-row > div.avatar {
  flex-basis: auto;
  flex-grow: 0;
  margin-right: 10px;
}

.input-money {
  position: relative;
}

.input-money span {
  font-size: 20px;
  left: 0;
  position: absolute;
  text-align: center;
  top: 15px;
  width: 45px;
}

.input-money.right span {
  left: auto;
  right: 0;
}

.input-money input {
  font-family: opensanslight;
  font-size: 40px;
  height: 60px;
  line-height: 40px;
  margin: 0;
  outline: 0;
  padding: 10px 10px 10px 45px;
}

.input-money.right input {
  padding-left: 10px;
  padding-right: 45px;
}

.card {
  border: 1px solid #e6ecf5;
  margin-bottom: 20px;
}

@media(max-width: 767px) {
  .card {
    overflow-x:auto;
  }
}

body.night-mode .card {
  background: #212121;
  border-color: #212121;
}

.card-header {
  background-color: #f6f9fc;
  border-color: #e6ecf5;
}

body.night-mode .card-header {
  background: #212121;
  border-color: #363636;
}

.card-header.with-icon {
  padding-bottom: 20px;
  padding-top: 20px;
}

.card-header.with-nav {
  border-bottom: 0;
  padding-bottom: 0;
}
.modal-body {
  border: 1px solid #e6ecf5 !important;
  border-radius: 5;
}
@media (min-width: 768px) {
  .card-header.with-icon {
    font-size: 14px;
    font-weight: 500;
  }
}

.card-header.block-title {
  background: transparent;
  font-size: 9px;
  font-weight: 600;
  padding: 10px 35px;
  text-transform: uppercase;
}

.card-body.with-form,
.card-body.with-list,
.card-body.with-nav {
  padding: 10px;
}

.card-body .divider,
.modal-body .divider {
  border-top: 2px solid #e6ecf5;
  margin: 25px 0;
}

.card-body .divider.dashed,
.modal-body .divider.dashed {
  border-top-style: dashed;
}

body.night-mode .card-body .divider,
body.night-mode .modal-body .divider {
  border-color: #131313;
}

@media (min-width: 768px) {
  .card-body.page-content {
    padding: 50px;
  }
}

body.night-mode .card-pricing,
body.night-mode .card-pricing .list-group-item {
  background: #292929;
}

.card-footer-fake {
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  margin: 1.25rem -1.25rem -1.25rem;
  padding: 0.75rem 1.25rem;
  text-align: right;
}

.bg-gradient-primary {
  background: linear-gradient(87deg, #5e72e4, #825ee4) !important;
  color: #fff !important;
}

.bg-gradient-secondary {
  background: linear-gradient(87deg, #f7fafc, #f7f8fc) !important;
}

.bg-gradient-success {
  background: linear-gradient(87deg, #2dce89, #2dcecc) !important;
  color: #fff !important;
}

.bg-gradient-info {
  background: linear-gradient(87deg, #11cdef, #1171ef) !important;
  color: #fff !important;
}

.bg-gradient-warning {
  background: linear-gradient(87deg, #fb6340, #fbb140) !important;
  color: #fff !important;
}

.bg-gradient-danger {
  background: linear-gradient(87deg, #f5365c, #f56036) !important;
  color: #fff !important;
}

.bg-gradient-light {
  background: linear-gradient(87deg, #adb5bd, #adaebd) !important;
}

.bg-gradient-dark {
  background: linear-gradient(87deg, #212529, #212229) !important;
  color: #eee;
}

.bg-gradient-default {
  background: linear-gradient(87deg, #172b4d, #1a174d) !important;
  color: #eee;
}

.bg-gradient-neutral {
  background: linear-gradient(87deg, #fff, #fff) !important;
}

.bg-gradient-darker {
  background: linear-gradient(87deg, #000, #000) !important;
  color: #eee;
}

.bg-gradient-blue {
  background: linear-gradient(87deg, #5e72e4, #825ee4) !important;
  color: #fff !important;
}

.bg-gradient-indigo {
  background: linear-gradient(87deg, #5603ad, #9d03ad) !important;
  color: #fff !important;
}

.bg-gradient-purple {
  background: linear-gradient(87deg, #8965e0, #bc65e0) !important;
  color: #fff !important;
}

.bg-gradient-pink {
  background: linear-gradient(87deg, #f3a4b5, #f3b4a4) !important;
  color: #fff !important;
}

body.night-mode .form-control,
body.night-mode .input-group-text::placeholder {
  color: #dfdfdf;
}

.bg-gradient-red {
  background: linear-gradient(87deg, #f5365c, #f56036) !important;
  color: #fff !important;
}

.bg-gradient-orange {
  background: linear-gradient(87deg, #fb6340, #fbb140) !important;
  color: #fff !important;
}

.bg-gradient-yellow {
  background: linear-gradient(87deg, #ffd600, #beff00) !important;
  color: #666;
}

.bg-gradient-green {
  background: linear-gradient(87deg, #2dce89, #2dcecc) !important;
  color: #fff !important;
}

.bg-gradient-teal {
  background: linear-gradient(87deg, #11cdef, #1171ef) !important;
  color: #fff !important;
}

.bg-gradient-cyan {
  background: linear-gradient(87deg, #2bffc6, #2be0ff) !important;
  color: #fff !important;
}

.bg-gradient-white {
  background: linear-gradient(87deg, #fff, #fff) !important;
}

.bg-gradient-gray {
  background: linear-gradient(87deg, #8898aa, #888aaa) !important;
  color: #fff !important;
}

.bg-gradient-gray-dark {
  background: linear-gradient(87deg, #32325d, #44325d) !important;
  color: #fff !important;
}

.bg-gradient-light {
  background: linear-gradient(87deg, #ced4da, #cecfda) !important;
}

.bg-gradient-lighter {
  background: linear-gradient(87deg, #e9ecef, #e9eaef) !important;
}

.bs-callout {
  background: #fff;
  border-left: 5px solid #eee;
  border-radius: 3px;
  margin: 20px 0;
  padding: 20px;
}

body.night-mode .bs-callout {
  background: #212121;
}

.bs-callout h4 {
  margin-bottom: 5px;
  margin-top: 0;
}

.bs-callout p:last-child {
  margin-bottom: 0;
}

.bs-callout code {
  border-radius: 3px;
}

.bs-callout + .bs-callout {
  margin-top: -5px;
}

.bs-callout-default {
  border-left-color: #777;
}

.bs-callout-default h4 {
  color: #777;
}

.bs-callout-primary {
  border-left-color: #428bca;
}

.bs-callout-primary h4 {
  color: #428bca;
}

.bs-callout-success {
  border-left-color: #5cb85c;
}

.bs-callout-success h4 {
  color: #5cb85c;
}

.bs-callout-danger {
  border-left-color: #d9534f;
}

.bs-callout-danger h4 {
  color: #d9534f;
}

.bs-callout-warning {
  border-left-color: #f0ad4e;
}

.bs-callout-warning h4 {
  color: #f0ad4e;
}

.bs-callout-info {
  border-left-color: #5bc0de;
}

.bs-callout-info h4 {
  color: #5bc0de;
}

.bootstrap-select:not(.input-group-btn) {
  height: 100%;
}

.bootstrap-select .dropdown-toggle .filter-option {
  display: inline-block !important;
  padding: 0 !important;
  position: static !important;
}

.bootstrap-select .btn-outline-light {
  border-color: #ddd;
  color: #495057;
}

.bootstrap-select .option .icon {
  display: table-cell;
  padding-right: 10px;
  vertical-align: middle;
}

.bootstrap-select .option .text {
  display: table-cell;
  text-align: left;
  vertical-align: top;
}

div.mce-fullscreen {
  z-index: 99999;
}

.ui-autocomplete {
  cursor: default;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 9999;
}

.ui-widget-content {
  background: #fff;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  color: #444;
  padding: 10px;
  z-index: 99999;
}

body.night-mode .ui-widget-content {
  background: var(--header-bg-color-dark);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.ui-menu-item {
  border-radius: 3px;
  cursor: pointer;
  margin: 0;
  padding: 5px 0;
  position: relative;
}

.ui-menu-item:hover {
  background: #efefef;
}

body.night-mode .ui-menu-item:hover {
  background: #424242;
}

.ui-menu-item a {
  color: #444;
}

body.night-mode .ui-menu-item a {
  color: #e5e5e5;
}

.ui-menu-item img {
  border-radius: 50%;
  margin: 5px;
  width: 30px;
}

.ui-menu-item span {
  font-size: 13px;
}

.ui-helper-hidden-accessible {
  display: none;
}

.tagify {
  width: 100%;
}

body.night-mode .tagify {
  border-color: #363636;
}

body.night-mode .tagify__dropdown {
  background-color: #424242;
  border-color: #363636;
}

body.night-mode .tagify__dropdown__item--active {
  background-color: #212121;
}

.video-js:hover {
  cursor: pointer;
}

.video-js .vjs-big-play-button {
  background: #3367d6 !important;
  border-color: #3367d6 !important;
  border-radius: 50% !important;
  height: 1.6em !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 1.6em !important;
}

.video-js .vjs-big-play-button:focus,
.video-js:hover .vjs-big-play-button {
  background: #2850a7 !important;
  border-color: #2850a7 !important;
}

.bootstrap-datetimepicker-widget th {
  color: #333 !important;
  background: transparent !important;
}

body.night-mode .bootstrap-datetimepicker-widget * {
  color: #fff !important;
}

.bootstrap-datetimepicker-widget td,
.bootstrap-datetimepicker-widget th {
  border: none !important;
}

body.night-mode .bootstrap-datetimepicker-widget table td span:hover,
body.night-mode .bootstrap-datetimepicker-widget table td.day:hover,
body.night-mode .bootstrap-datetimepicker-widget table td.hour:hover,
body.night-mode .bootstrap-datetimepicker-widget table td.minute:hover,
body.night-mode .bootstrap-datetimepicker-widget table td.second:hover,
body.night-mode
  .bootstrap-datetimepicker-widget
  table
  thead
  tr:first-child
  th:hover {
  background: #313131;
}

body.night-mode .bootstrap-datetimepicker-widget table td.new,
body.night-mode .bootstrap-datetimepicker-widget table td.old {
  color: #999 !important;
}

.main-wrapper {
  min-width: 260px;
  width: 100%;
}

.top-bar {
  background: #fff2cc;
  color: #333;
  font-size: 12px;
  height: 50px;
  left: 0;
  line-height: 50px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1001;
}

@media (min-width: 768px) {
  .top-bar {
    font-size: 13px;
  }

  .top-bar .col-sm-5 {
    text-align: right;
  }
}

.top-bar.danger {
  background: #ce3426;
  color: #fff;
}

.top-bar.danger a {
  color: #fff200;
}

.top-bar.danger a:hover {
  text-decoration: underline;
}

.main-header {
  background: var(--header-bg-color);
  height: 70px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1001;
}

body.night-mode:not(.visitor) .main-header {
  background: var(--header-bg-color-dark);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

body.modal-open .main-header,
body.modal-open .top-bar {
  padding-right: 17px !important;
}

@media (min-width: 768px) {
  body.modal-open:not(.n_chat) .main-header,
  body.modal-open:not(.n_chat) .top-bar {
    padding-right: 0px !important;
  }
}

@media (min-width: 1200px) {
  .main-header,
  .main-wrapper,
  .top-bar {
    padding-right: 210px;
  }

  body.n_chat .main-header,
  body.n_chat .main-wrapper,
  body.n_chat .top-bar {
    padding-right: 0;
  }
}

body.n_activated .main-header,
body.n_live .main-header {
  top: 50px;
}

.main-header .logo-wrapper {
  height: 70px;
  overflow: hidden;
  padding-left: 15px;
  padding-right: 20px;
  word-break: break-all;
}

.main-header .logo {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 600;
  line-height: 70px;
  opacity: 1;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .card-body {
    gap: 10px;
  }
  .main-header .logo.with-menu-icon {
    margin-left: 40px;
  }
}

.main-header .logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.main-header .logo img {
  max-height: 40px;
}

.main-header .home-icon,
.main-header .menu-icon {
  border-radius: 4px;
  color: #fff;
  display: block;
  height: 50px;
  line-height: 100%;
  padding: 15px 14px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 10px;
}

.main-header .home-icon:hover,
.main-header .menu-icon:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
}

.main-header .menu-icon {
  left: 5px;
  right: auto;
}

.main-header .search-wrapper {
  position: relative;
}

.main-header .search-input-icon {
  color: #96aad4;
  left: 12px;
  position: absolute;
  top: 25px;
}

.main-header .search-wrapper .form-control {
  background: #161d2a;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  color: #fff;
  height: 44px;
  margin-bottom: 8px;
  margin-top: 13px;
  padding-left: 34px;
}

body.night-mode:not(.visitor) .main-header .search-wrapper .form-control {
  background: var(--body-bg-color-dark);
}

.main-header .search-wrapper .form-control::-webkit-input-placeholder {
  color: #96aad4;
}

.main-header .search-wrapper .form-control:-moz-placeholder {
  color: #96aad4;
  opacity: 1;
}

.main-header .search-wrapper .form-control:-ms-input-placeholder {
  color: #96aad4;
}

@media (min-width: 768px) {
  .navbar-wrapper {
    float: right;
  }
}

.navbar-wrapper > ul > li {
  display: block;
  float: left;
  width: 14.28571428571429%;
}

@media (min-width: 768px) {
  .navbar-wrapper > ul > li {
    margin-right: 2px;
    /* width: auto !important; */
  }

  .navbar-wrapper > ul > li:last-child {
    margin-right: 0;
  }
}

body.visitor .navbar-wrapper > ul > li {
  width: auto;
}

.navbar-wrapper > ul > li > a {
  border-radius: 4px;
  color: #fff;
  display: block;
  height: 50px;
  line-height: 50px;
  margin-top: 10px;
  padding: 0 8px;
  position: relative;
  text-align: center;
}

.navbar-wrapper > ul > li > a:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
}

body.night-mode .navbar-wrapper > ul > li > a:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.navbar-wrapper > ul > li.dropdown.show > a {
  background-color: hsla(0, 0%, 100%, 0.1);
}

body.night-mode .navbar-wrapper > ul > li.dropdown.show > a {
  background-color: #494c62;
}

@media (min-width: 992px) {
  .navbar-wrapper > ul > li > a {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 1200px) and (max-width: 1338px) {
  .navbar-wrapper > ul > li > a,
  .navbar-wrapper > ul > li > a.user-menu {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.navbar-wrapper .counter {
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 14px;
  padding: 2px 4px;
  position: absolute;
  right: 0;
  top: 5px;
}

.navbar-wrapper .counter.red {
  background: #ff5e3a;
}

.navbar-wrapper .counter.blue {
  background: #38a9ff;
}

.navbar-wrapper .counter.purple {
  background: #7c5ac2;
}

.navbar-wrapper .user-menu > img {
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  margin-top: -5px;
  width: 20px;
}

@media (min-width: 768px) {
  .navbar-wrapper .user-menu > img {
    height: 25px;
    width: 25px;
  }
}

@media (min-width: 1400px) {
  .navbar-wrapper .user-menu > span {
    display: inline-block !important;
    max-width: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.navbar-wrapper > ul > li.dropdown {
  position: static;
}

@media (min-width: 768px) {
  .navbar-wrapper > ul > li.dropdown {
    position: relative;
  }
}

.dropdown-widget {
  padding-bottom: 0;
  padding-top: 0;
  width: 100%;
}

.dropdown-widget-header {
  border-bottom: 1px solid #e4e4e4;
  font-size: 11px;
  padding: 10px;
}

body.night-mode .dropdown-widget-header {
  border-color: #424242;
}

.dropdown-widget-header .title {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.dropdown-widget-header a:hover {
  text-decoration: underline;
}

.dropdown-widget-body {
  font-size: 12px;
  padding: 0;
}

.dropdown-widget-body .title {
  border-bottom: 1px solid #e4e4e4;
  border-top: 1px solid #e4e4e4;
  color: #9a9fbf;
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 16px;
  padding: 8px;
}

body.night-mode .dropdown-widget-body .title {
  border-color: #424242;
}

.dropdown-widget-footer {
  background: #f6f9fc;
  border-bottom: 0;
  border-radius: 0 0 4px 4px;
  border-top: 1px solid #e5e5e5;
  display: block;
  font-size: 11px;
  padding: 10px 0;
  text-align: center;
}

body.night-mode .dropdown-widget-footer {
  background: #1b1b1b;
  border-color: #424242;
}

.dropdown-widget-footer:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .dropdown-widget {
    min-width: 380px !important;
  }

  .dropdown-widget.dropdown-search {
    border-radius: 2px 2px 0 0;
  }
}

.section-title {
  background: #f5f5f5;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  text-align: center;
}

body.night-mode .section-title {
  background-color: #111;
  color: #5e72e4;
}

.heading-small {
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 4px 0;
  text-transform: uppercase;
}

.hr-heading {
  display: block;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.hr-heading-text {
  color: #999;
  display: inline-block;
  position: relative;
}

.hr-heading-text:after,
.hr-heading-text:before {
  background: #ddd;
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  width: 9999px;
}

body.night-mode .hr-heading-text:after,
body.night-mode .hr-heading-text:before {
  background: #323232;
}

.hr-heading-text:before {
  margin-right: 15px;
  right: 100%;
}

.hr-heading-text:after {
  left: 100%;
  margin-left: 15px;
}

.user-box {
  display: block;
  text-align: center;
  text-decoration: none;
}

.circled-user-box,
.user-box {
  margin: 5px;
}

.circled-user-box .user-box {
  margin: 0 0 20px;
  padding-top: 100%;
  position: relative;
}

.pro-box-wrapper .user-box {
  float: left;
  opacity: 0.55;
  width: 71px;
}

.pro-box-wrapper.full-opacity .user-box {
  opacity: 1;
}

.pro-box-wrapper .user-box.slick-center {
  font-weight: 600;
  opacity: 1;
  transform: scale(1.1);
}

.user-box img {
  border-radius: 50%;
  height: 100%;
  margin: 0 auto;
  width: 100%;
}

.circled-user-box .user-box img {
  bottom: 0;
  left: 0;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
}

.pro-box-wrapper .user-box img {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  height: 60px;
  width: 60px;
}

.user-box .name {
  font-size: 11px;
  margin-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-word;
}

.circled-user-box .user-box .name {
  left: 0;
  position: absolute;
  right: 0;
}

.ui-box {
  background: #f6f9fc;
  border-radius: 4px;
  margin-bottom: 20px;
  margin-top: 50px;
  padding: 50px 15px 15px;
  position: relative;
  text-align: center;
}

body.night-mode .ui-box {
  background: #292929;
}

.ui-box .img {
  background: #fff;
  border-radius: 50%;
  left: 50%;
  margin: 0 auto;
  padding: 4px;
  position: absolute;
  top: -50px;
  transform: translate(-50%);
}

body.night-mode .ui-box .img {
  background: #212121;
}

.ui-box img {
  border-radius: 50%;
  height: 92px;
  width: 92px;
}

.ui-box .btn {
  box-shadow: none;
}

.stat-panel {
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.stat-panel.border {
  border: 1px solid #e6ecf5;
}

body.night-mode .stat-panel.border {
  border-color: #363636 !important;
}

.stat-cell {
  padding: 20px;
  position: relative;
}

.stat-cell .icon {
  background: #fff;
  border-radius: 50%;
  font-size: 20px;
  height: 48px;
  padding: 14px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 48px;
}

.stat-cell .bg-icon {
  bottom: 0;
  font-size: 100px;
  opacity: 0.25;
  position: absolute;
  right: 0;
}

.stat-cell a {
  color: #fff;
  font-size: 12px;
}

.stat-cell a:hover {
  text-decoration: underline;
}

.main-side-nav-card {
  background: transparent !important;
  border: 0;
}

.main-side-nav {
  z-index: 2;
}

.main-side-nav img {
  height: 24px;
  margin-right: 10px;
  width: 24px;
}

.main-side-nav .static,
.main-side-nav a {
  color: #5a5a5a;
  display: block;
  font-weight: 500;
  padding: 8px 16px;
  width: 100%;
}

.night-mode .main-side-nav .static,
.night-mode .main-side-nav a {
  color: #bfbfbf;
}

.main-side-nav a[data-toggle="collapse"]:after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #5e72e4;
  content: "\f107";
  display: inline-block;
  float: right;
  font-family: Font Awesome\5 Free;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  transition: all 0.15s ease;
}

.main-side-nav a[data-toggle="collapse"][aria-expanded="true"]:after {
  content: "\f106";
}

/* .main-side-nav a:hover {
  color: #5e72e4;
} */

.main-side-nav a.no-border {
  border-bottom: 0;
}

.main-side-nav > li.active > a {
  background-color: #e5eaef;
  border-radius: 5px;
  color: #5e72e4;
}

body.night-mode .main-side-nav > li.active > a {
  background-color: #2b2b2b;
}

.main-side-nav ul > li.active > a {
  color: #5e72e4;
}

.main-side-nav ul a {
  border-left: 1px solid #e4e4e4;
  color: #5a5a5a;
  font-size: 11px;
  margin-left: 32px;
  padding: 10px 20px;
}

body.night-mode .main-side-nav ul a {
  border-left-color: #363636;
  color: #bfbfbf;
}

.side-nav .static,
.side-nav a {
  color: #919191;
  display: block;
  font-weight: 500;
  padding: 15px 25px;
}

.side-nav a:hover {
  color: #5e72e4;
}

.side-nav a[data-toggle="collapse"]:after {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #ced4da;
  content: "\f105";
  display: inline-block;
  float: right;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  transition: all 0.15s ease;
}

.side-nav a[data-toggle="collapse"][aria-expanded="true"]:after {
  color: #5e72e4;
  transform: rotate(90deg);
}

.side-nav > li.active > a {
  background-color: #f6f9fc;
  border-radius: 5px;
  color: #5e72e4;
}

body.night-mode .side-nav > li.active > a {
  background-color: #111;
}

.side-nav ul > li.active > a {
  color: #5e72e4;
}

.side-nav ul a {
  border-left: 1px solid #eee;
  color: #888da8;
  font-size: 11px;
  margin-left: 32px;
  padding: 10px 20px;
}

body.night-mode .side-nav ul a {
  border-left-color: #363636;
}

.content-tabs {
  background: #fff;
  margin-bottom: 20px;
  padding: 0 5px;
}

body.night-mode .content-tabs {
  background: #212121;
}

@media (min-width: 768px) {
  .content-tabs {
    padding: 0 10px;
  }
}

.content-tabs > ul > li {
  float: left;
}

.content-tabs > ul > li > a {
  color: #666;
  display: block;
  font-size: 12px;
  line-height: 20px;
  padding: 12px 14px;
  transition: all 0.2s ease;
}

body.night-mode .content-tabs > ul > li > a {
  color: #eee;
}

@media (min-width: 768px) {
  .content-tabs > ul > li > a {
    font-size: 13px;
    padding: 14px 24px;
  }
}

.content-tabs > ul > li.active > a {
  border-bottom: 2px solid var(--link-color);
  color: var(--link-color);
  font-weight: 600;
}

.see-more {
  margin: 10px 0 0;
  padding: 10px;
  text-align: center;
}

.see-more:hover {
  cursor: pointer;
  text-decoration: underline;
}

.see-more.loading:hover {
  cursor: default;
  text-decoration: none;
}

.see-more.done:hover {
  cursor: text;
  text-decoration: underline;
}

.feeds-item {
  border-bottom: 1px solid #e6ecf5;
}

body.night-mode .feeds-item {
  border-color: #323232;
}

.feeds-item:last-child {
  border-bottom: 0;
}

.feeds-item.unread {
  background: #e9eaed;
}

body.night-mode .feeds-item.unread {
  background: #2b2b2b;
}

.data-container {
  display: block;
  min-height: 56px;
  padding: 8px;
  width: 100%;
}

.data-container.small {
  min-height: 46px;
}

.data-container.clickable:hover,
a.data-container:hover {
  background: #f6f7f8;
  cursor: pointer;
  text-decoration: none;
}

body.night-mode .data-container.clickable:hover,
body.night-mode a.data-container:hover {
  background: #424242;
}

.data-avatar {
  display: block;
  float: left;
  position: relative;
}

.data-avatar img {
  border-radius: 50%;
  height: 30px;
  text-align: center;
  width: 30px;
}

@media (min-width: 768px) {
  .data-avatar img {
    border-radius: 50%;
    height: 40px;
    width: 40px;
  }

  .data-container.small .data-avatar img {
    height: 30px;
    width: 30px;
  }
}

.data-avatar .left-avatar,
.data-avatar .right-avatar {
  background-position: 50%;
  background-size: cover;
  border-radius: 20px 0 0 20px;
  float: left;
  height: 30px;
  margin-right: 1px;
  overflow: hidden;
  width: 14px;
}

.data-avatar .right-avatar {
  border-radius: 0 20px 20px 0;
  margin-right: 0;
  width: 15px;
}

@media (min-width: 768px) {
  .data-avatar .left-avatar,
  .data-avatar .right-avatar {
    border-radius: 20px 0 0 20px;
    height: 40px;
    width: 19px;
  }

  .data-avatar .right-avatar {
    border-radius: 0 20px 20px 0;
    width: 20px;
  }

  .data-container.small .data-avatar .left-avatar,
  .data-container.small .data-avatar .right-avatar {
    height: 30px;
    width: 14px;
  }

  .data-container.small .data-avatar .right-avatar {
    width: 15px;
  }
}

.data-reaction {
  bottom: -4px;
  position: absolute;
  right: -6px;
}

.data-content {
  color: #818181;
  font-size: 11px;
  padding-left: 38px;
}

@media (min-width: 768px) {
  .data-content {
    word-wrap: break-word;
    padding-left: 48px;
  }

  .data-container.small .data-content {
    padding-left: 38px;
  }
}

.data-content .data-img {
  background-color: #fff;
  border: 1px solid #ddd;
  height: 48px;
  object-fit: cover;
  padding: 1px;
  width: 48px;
}

.data-content .btn {
  font-size: 10px;
  padding: 2px 6px;
}

@media (min-width: 576px) {
  .data-content .btn {
    font-size: 12px;
    padding: 4px 12px;
  }
}

.data-content .name {
  font-weight: 700;
}

.data-content .time {
  color: #bbb;
  font-size: 10px;
}

.data-content .text {
  word-break: break-all;
}

.x-form {
  position: relative;
}

.x-form-tools {
  color: #afafaf;
  position: absolute;
}

.x-form-tools > li {
  border-radius: 50%;
  float: left;
  margin-left: 4px;
  padding: 4px 2px;
}

.x-form-tools > li:first-child {
  margin-left: 0;
}

.x-form-tools > li:hover {
  background: #f3f3f3;
  cursor: pointer;
}

body.night-mode .x-form-tools > li:hover {
  background: #333;
}

.x-form-tools-attach,
.x-form-tools-emoji,
.x-form-tools-post,
.x-form-tools-voice {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  .x-form-tools-post {
    display: none;
  }
}

.x-form-tools-attach input[type="file"] {
  background: #fff;
  cursor: inherit;
  display: block;
  filter: alpha(opacity=0);
  font-size: 100px;
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  outline: none;
  position: absolute;
  right: 0;
  text-align: right;
  top: 0;
}

.attachments li {
  float: left;
  height: 64px;
  margin-bottom: 5px;
  margin-right: 5px;
  transition: padding 0.5s;
  width: 64px;
}

@media (min-width: 768px) {
  .attachments li {
    height: 96px;
    width: 96px;
  }
}

.attachments li.item {
  border: 1px solid #eee;
  cursor: pointer;
  position: relative;
}

body.night-mode .attachments li.item {
  border-color: #424242;
}

.attachments li.item img {
  height: 64px;
  width: 64px;
}

@media (min-width: 768px) {
  .attachments li.item img {
    height: 94px;
    width: 94px;
  }
}

.attachments li.item .name {
  background: #fafafa;
  color: #999;
  font-size: 10px;
  height: 100%;
  padding: 10px;
  width: 100%;
  word-break: break-all;
}

.attachments li.item.deletable:before {
  background: rgba(0, 0, 0, 0.6);
  content: "";
  display: none;
  height: 64px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
}

@media (min-width: 768px) {
  .attachments li.item.deletable:before {
    height: 94px;
    width: 94px;
  }
}

.attachments li.item.deletable:hover:before {
  display: block;
}

.attachments li.item button {
  color: #fff;
  display: none;
  filter: alpha(opacity=40);
  opacity: 0.4;
  position: absolute;
  right: 5px;
  text-shadow: 0 1px 0 #000;
  top: 0;
}

.attachments li.item.deletable:hover button {
  display: block;
}

.attachments li.item.deletable button:hover {
  filter: alpha(opacity=80);
  opacity: 0.8;
}

.attachments li.loading {
  background: #f3f3f3;
  border: 1px solid #eee;
  display: none;
  padding-top: 22px;
}

@media (min-width: 768px) {
  .attachments li.loading {
    padding-top: 45px;
  }
}

body.night-mode .attachments li.loading {
  background: #212121;
  border-color: #424242;
}

.attachments li.add {
  border: 2px dashed #cecece;
  border-radius: 4px;
  color: #ddd;
  cursor: pointer;
  font-size: 16px;
  overflow: hidden;
  padding: 20px 0 0 25px;
  position: relative;
}

@media (min-width: 768px) {
  .attachments li.add {
    font-size: 24px;
    padding: 30px 0 0 35px;
  }
}

.x-uploader {
  overflow: hidden;
}

.x-uploader input[type="file"] {
  background: #fff;
  cursor: pointer;
  display: block;
  font-size: 100px;
  min-height: 100%;
  min-width: 100%;
  opacity: 0;
  outline: none;
  position: absolute;
  right: 0;
  text-align: right;
  top: 0;
}

.x-uploader .fa {
  cursor: pointer;
}

.x-image {
  background-color: #eee;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px dashed #ccc;
  border-radius: 10px;
  display: block;
  height: 96px;
  overflow: hidden;
  position: relative;
  width: 96px;
}

body.night-mode .x-image {
  background-color: #333;
  border: 2px dashed #222;
}

.x-image.full {
  width: 100%;
}

.x-image.sm {
  height: 48px;
  width: 48px;
}

.x-image:before {
  background: #000;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.x-image:hover.x-image:before {
  opacity: 0.2;
}

.x-image-success {
  color: #fff;
  font-size: 12px;
  padding-top: 30%;
  text-align: center;
}

.x-image-loader,
.x-image-success {
  background: #000;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  transition: all 0.5s;
  width: 100%;
}

.x-image-loader {
  padding-top: 50%;
}

.x-image.full .x-image-loader {
  padding-top: 20%;
}

.x-image .x-uploader {
  bottom: 0;
  left: 0;
  padding: 37px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}

.x-image.full .x-uploader {
  padding-top: 35px;
}

.x-image button {
  position: absolute;
  right: 5px;
  top: 0;
  z-index: 2;
}

.x-progress {
  border-radius: 25px;
  height: 5px;
  margin: 0 1.5rem;
}

.tbl-image {
  border-radius: 50%;
  float: left;
  height: 24px;
  margin-right: 5px;
  width: 24px;
}

.tbl-image.app-icon {
  border-radius: 4px;
  height: 34px;
  width: 34px;
}

.verified-badge {
  color: #55acee;
}

.pro-badge {
  color: #e13c4c;
}

.privacy-badge {
  color: #fff;
  font-size: 16px;
}

.privacy-badge:hover,
.pro-badge:hover,
.verified-badge:hover {
  cursor: pointer;
}

.ads-title {
  font-size: 14px;
  margin: 0;
  padding: 5px 0;
  word-break: break-all;
}

.ads-descrition {
  font-size: 12px;
  word-break: break-word;
}

.adblock-warning-message {
  border-radius: 2px;
  padding: 20px;
}

.adblock-detector,
.adblock-warning-message {
  background: #d30000;
  color: #fff;
  display: none;
  text-align: center;
}

.adblock-detector {
  font-weight: 700;
  left: 0;
  margin-bottom: 30px;
  padding: 40px 10px;
  position: fixed;
  right: 0;
  top: 70px;
}

@media (min-width: 768px) {
  .user-popover {
    position: relative;
  }

  .user-popover-wrapper {
    min-height: 180px;
    width: 400px;
    z-index: 99999;
  }

  .user-popover-content {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
    left: 0;
    position: absolute;
    top: 5px;
    width: 400px;
    z-index: 999999;
  }

  body.night-mode .user-popover-content {
    background: #212121;
  }

  .user-card {
    position: relative;
  }

  .user-card-cover {
    background-color: #424242;
    background-position: 50%;
    background-size: cover;
    border-radius: 6px 6px 0 0;
    height: 60px;
    width: 100%;
  }

  .user-card-avatar {
    background: #fff;
    border-radius: 50%;
    bottom: -15px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
    left: 15px;
    padding: 2px;
    position: absolute;
  }

  body.night-mode .user-card-avatar {
    background: #212121;
  }

  .user-card-avatar img {
    border-radius: 50%;
    height: 55px;
    width: 55px;
  }

  .user-card-info {
    bottom: 2px;
    color: #fff;
    left: 96px;
    position: absolute;
  }

  .user-card-info a {
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
  }

  .user-card-info a:hover {
    text-decoration: underline;
  }

  .user-card-info a.name {
    font-size: 20px;
    font-weight: 600;
  }

  .user-card-info .info {
    font-size: 12px;
    line-height: 15px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
  }

  .user-card-meta .mb10 {
    margin-bottom: 5px !important;
  }

  .user-card-meta {
    color: #000;
    font-size: 14px;
    padding-left: 96px;
    padding-top: 7px;
  }

  body.night-mode .user-card-meta {
    color: #fff;
  }

  .user-card-meta .fa {
    color: #666;
  }

  .user-popover-content .popover-footer {
    border-radius: 0 0 6px 6px;
    padding: 6px;
    text-align: center;
  }

  .user-popover-content .popover-footer .btn {
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 6px 12px;
  }
}

.trending-item {
  display: block;
  font-size: 13px;
  padding: 5px 0;
  word-break: break-word;
}

.trending-item .hash {
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.trending-item .frequency {
  color: #ffeb00;
  font-size: 12px;
}

.trending-item:hover .hash {
  text-decoration: underline;
}

.sticker {
  display: block;
  margin: 0 auto;
  max-height: 100px;
}

.publisher-overlay {
  background: #000;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1002;
}

body.publisher-focus .publisher-overlay {
  bottom: 0;
  opacity: 0.6;
}

.publisher {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

body.night-mode .publisher {
  background: #212121;
}

body.publisher-focus .publisher {
  z-index: 1003;
}

.publisher.mini {
  border-radius: 0;
  margin-bottom: 0;
}

.publisher-loader {
  display: none;
}

.publisher-close,
.publisher-loader {
  position: absolute;
  right: 10px;
  top: 5px;
  z-index: 1;
}

.publisher-message {
  padding: 15px 15px 20px 65px;
  position: relative;
}

.post-colored,
.post-colored-preview,
.publisher-message.colored {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height: 300px;
  padding: 30px;
}

.publisher-message.colored {
  border-radius: 2px 2px 0 0;
}

.post-colored-preview {
  border-radius: 2px;
}

.post-colored-preview.small {
  height: 180px;
}

.post-colored-preview h2 {
  padding-top: 100px;
  text-align: center;
}

.post-colored-preview h4 {
  padding-top: 50px;
  text-align: center;
}

.post-colored-text-wrapper,
.publisher-message.colored .colored-text-wrapper {
  display: flex;
  height: 240px;
  text-align: center;
}

.publisher-message.colored .colored-text-wrapper {
  overflow-x: auto;
}

.publisher-avatar {
  border: 1px solid #efefef;
  border-radius: 50%;
  height: 40px;
  left: 15px;
  padding: 2px;
  position: absolute;
  top: 15px;
  width: 40px;
}

body.night-mode .publisher-avatar {
  border-color: #424242;
}

.publisher-message.colored .publisher-avatar {
  display: none;
}

.publisher textarea {
  background: transparent;
  border: 0;
  direction: ltr;
  font-size: 15px;
  height: 24px;
  line-height: 24px;
  margin-top: 5px;
  outline: none;
  padding: 0;
  resize: none;
  width: 100%;
}

body.night-mode .publisher textarea {
  color: #eee;
}

.publisher textarea::placeholder {
  color: inherit;
  opacity: 0.65;
}

.publisher textarea:-ms-input-placeholder {
  color: inherit;
  opacity: 0.65;
}

.publisher textarea::-ms-input-placeholder {
  color: inherit;
  opacity: 0.65;
}

.post-colored .post-text,
.publisher-message.colored textarea {
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  margin: auto;
  text-align: center;
}

.publisher-message.colored textarea {
  min-height: 60px;
}

.post-colored .post-text a {
  color: inherit !important;
  text-decoration: underline !important;
}

.post-colored .post-text a:hover {
  text-decoration: none !important;
}

.publisher-emojis {
  bottom: 5px;
  display: none;
  position: absolute;
  right: 10px;
}

.publisher-emojis .far {
  color: #999;
  cursor: pointer;
}

.publisher-slider {
  display: none;
}

.publisher-scraper {
  display: none;
  padding: 10px;
  position: relative;
}

.publisher-scraper-remover {
  background: #fbfbfb;
  border: 1px solid #eaeaea;
  border-radius: 50%;
  height: 26px;
  padding-right: 4px;
  position: absolute;
  right: 20px;
  top: 15px;
  width: 26px;
  z-index: 1;
}

.publisher-scraper-remover:hover {
  background: #fff;
}

.publisher-scraper-remover button.close {
  opacity: 0.5;
}

.publisher-attachments {
  padding: 10px 10px 5px;
}

.publisher-meta {
  border-top: 1px dashed #eee;
  display: none;
  font-weight: 600;
  margin: 0 15px;
  padding: 8px 0;
  position: relative;
}

body.night-mode .publisher-meta {
  border-color: #424242;
}

.publisher-meta.top {
  border-bottom: 1px dashed #eee;
  border-top: 0;
}

.publisher-meta .svg-container {
  left: 15px;
  position: absolute;
  top: 18px;
}

.publisher-meta .svg-container.static {
  position: static;
}

.publisher-meta input,
.publisher-meta select {
  background: #f3f3f3;
  border: 0;
  border-radius: 18px;
  color: #5e72e4;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  outline: 0 none;
  padding: 8px 16px 8px 40px;
  width: 100%;
}

.publisher-meta input.no-icon {
  padding: 8px 16px;
}

body.night-mode .publisher-meta input,
body.night-mode .publisher-meta select {
  background: #121212;
  color: #b6c1ff;
}

.publisher-meta select {
  color: #9c9c9c;
}

.publisher-meta select:focus {
  color: #4e5665;
}

.publisher-meta input::-webkit-input-placeholder {
  color: #9c9c9c;
}

.publisher-meta input:-moz-placeholder {
  color: #9c9c9c;
  opacity: 1;
}

.publisher-meta input:-ms-input-placeholder {
  color: #9c9c9c;
}

.publisher-custom-thumbnail {
  border-top: 1px dashed #eee;
  display: none;
  margin: 10px 15px;
  overflow: hidden;
  padding: 8px 0;
  position: relative;
}

body.night-mode .publisher-custom-thumbnail {
  border-color: #424242;
}

.publisher-custom-thumbnail .x-image {
  height: 160px;
  margin-top: 5px;
  width: 100%;
}

.publisher-custom-thumbnail .x-image-loader {
  padding-top: 80px;
}

#feelings-menu-toggle {
  background: #f3f3f3;
  border-radius: 18px;
  color: #6f6f6f;
  cursor: pointer;
  font-weight: 600;
  padding: 8px 18px;
  white-space: nowrap;
}

body.night-mode #feelings-menu-toggle {
  background: #121212;
}

#feelings-menu-toggle.active {
  background: #e2e8f6;
  display: table-cell;
}

body.night-mode #feelings-menu-toggle.active {
  background: #121212;
}

#feelings-data {
  display: table-cell;
  padding-left: 5px;
  width: 100%;
}

#feelings-data span {
  background: #5e72e4;
  border-radius: 18px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  padding: 10px 14px;
  white-space: nowrap;
}

#feelings-data span .twa {
  vertical-align: middle;
}

.feeling-item {
  color: #666;
  cursor: pointer;
  padding: 5px;
}

body.night-mode .feeling-item {
  color: #cacaca;
}

.feeling-item:hover {
  background: var(--header-bg-color);
  color: #fff !important;
}

.feeling-item .icon {
  display: table-cell;
  padding-right: 5px;
  vertical-align: top;
}

.feeling-item .data {
  display: table-cell;
  font-size: 1.2em;
  font-weight: 600;
  vertical-align: middle;
  width: 100%;
}

.colored-pattern-item {
  background-size: cover;
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  height: 36px;
  padding: 0;
  width: 36px;
}

body.night-mode .colored-pattern-item {
  border-color: #212121;
}

.colored-pattern-item.active {
  box-shadow: 0 0 0 2px rgba(51, 103, 214, 0.65);
}

.dropdown-menu.gif-search {
  border: 1px solid #efefef;
  border-radius: 2px;
  box-shadow: none;
  display: none;
  left: 0;
  margin-top: 0;
  padding: 5px;
}

body.night-mode .dropdown-menu.gif-search {
  border-color: #424242;
}

.gif-search .item {
  float: left;
  margin-bottom: 1px;
  margin-right: 1px;
  width: 33%;
}

.gif-search .item > img {
  cursor: pointer;
  height: fit-content;
  width: 100%;
}

.publisher-tools-tabs {
  border-bottom: 1px solid #e6ecf5;
  border-top: 1px solid #e6ecf5;
  margin: 0 15px;
  padding-top: 15px;
}

body.night-mode .publisher-tools-tabs {
  border-color: #424242;
}

.publisher-tools-tabs .divider {
  border-top: 1px solid #e6ecf5;
  margin-bottom: 15px;
}

body.night-mode .publisher-tools-tabs .divider {
  border-top-color: #424242;
}

.publisher-tools-tab {
  background: #f7f7f7;
  border-radius: 25px;
  color: #7f838a;
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 7px 14px;
}

body.night-mode .publisher-tools-tab {
  background: #424242;
  color: #d5d5d5;
}

.publisher-tools-tab:hover {
  background: #f3f3f3;
  color: #7f838a;
  cursor: pointer;
}

body.night-mode .publisher-tools-tab:hover {
  background: #525252;
  color: #d5d5d5;
}

.publisher-tools-tab.active,
body.night-mode .publisher-tools-tab.active {
  color: #5e72e4;
}

.publisher-tools-tab.activated {
  background: #d2e0ff;
}

body.night-mode .publisher-tools-tab.activated {
  background: #111;
}

.publisher-tools-tab[data-tab="audio"].activated:after,
.publisher-tools-tab[data-tab="file"].activated:after,
.publisher-tools-tab[data-tab="video"].activated:after {
  background: transparent;
  bottom: 0;
  content: "";
  cursor: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.publisher-tools-tab.disabled {
  position: relative;
}

.publisher-tools-tab.disabled:hover {
  background: #f7f7f7;
  color: #7f838a;
  cursor: auto;
}

body.night-mode .publisher-tools-tab.disabled:hover {
  background: #424242;
  color: #d5d5d5;
}

.publisher-tools-tab.disabled:after {
  background: #fff;
  border-radius: 25px;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0.6;
  position: absolute;
  right: 0;
  top: 0;
}

body.night-mode .publisher-tools-tab.disabled:after {
  background: #000;
}

.publisher-tools-tab.attach {
  overflow: hidden;
  position: relative;
}

.publisher-tools-tab.attach form {
  display: initial;
}

.publisher-tools-tab img {
  height: 24px;
  margin-right: 5px;
  width: 24px;
}

.publisher-footer {
  padding: 15px;
  text-align: right;
}

.publisher-anonymous-lable {
  background: #f7f7f7;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  padding: 8px 10px;
}

body.night-mode .publisher-anonymous-lable {
  background: #121212;
}

.posts-filter {
  border-bottom: 1px solid #dfdfdf;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

body.night-mode .posts-filter {
  border-bottom-color: #212121;
}

.posts-filter .btn-group .btn,
.posts-filter .btn-group .btn-default.active,
.posts-filter .btn-group .btn-default:active,
.posts-filter .btn-group .open .btn-default.dropdown-toggle,
.posts-filter .btn-group .open .btn.dropdown-toggle {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.night-mode .posts-filter .btn-group .btn,
body.night-mode .posts-filter .btn-group .btn-default.active,
body.night-mode .posts-filter .btn-group .btn-default:active,
body.night-mode .posts-filter .btn-group .open .btn-default.dropdown-toggle,
body.night-mode .posts-filter .btn-group .open .btn.dropdown-toggle {
  color: var(--body-color-dark);
}

.posts-filter .dropdown-menu:not(.countries-dropdown) {
  min-width: 100%;
}

.posts-filter .dropdown-menu .dropdown-item {
  padding: 2px 16px;
}

.add-job-question {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  margin: 10px 0;
  padding: 10px;
  text-align: center;
}

.add-job-question:hover {
  background: #f3f3f3;
}

body.night-mode .add-job-question {
  background: #333;
  border-color: #555;
}

body.night-mode .add-job-question:hover {
  background: #212121;
}

.job-question {
  background: #f7f7f7;
  border-radius: 4px;
  margin: 10px 0;
  padding: 10px;
}

body.night-mode .job-question {
  background: #121212;
}

.job-question .question {
  font-size: 16px;
  font-weight: 700;
}

.job-question .answer {
  font-size: 14px;
}

.job-candidate-wrapper {
  border: 1px solid #f1f1f1;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  padding: 15px;
}

body.night-mode .job-candidate-wrapper {
  border-color: #000;
}

.job-candidate-avatar {
  display: table-cell;
  padding-right: 10px;
  position: relative;
  vertical-align: top;
}

.job-candidate-info {
  display: table-cell;
  font-size: 14px;
  vertical-align: top;
  width: 100%;
  word-break: break-word;
}

.job-candidate-info .name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.posts-staging-btn {
  display: none;
  left: 50%;
  position: fixed;
  top: 150px;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
  z-index: 99;
}

.post {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 30px 0 rgb(82 63 105/5%);
  margin-bottom: 20px;
  position: relative;
}

body.night-mode .post {
  background: #212121;
  border-color: #000;
}

.post.flagged {
  background: #f6f7f8;
  padding: 15px;
}

.post .pin-icon {
  color: #f9b340;
  font-size: 25px;
  position: absolute;
  right: 18px;
  top: -10px;
  width: auto;
}

.post.boosted,
body.night-mode .post.boosted {
  border: 2px solid #ffa412;
}

.post .boosted-icon {
  background: #ffa412;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  left: -5px;
  padding: 3px 6px;
  position: absolute;
  top: -15px;
  -ms-transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  width: auto;
}

.post.pending,
body.night-mode .post.pending {
  border: 1px dashed #9b9b9b;
}

.post .pending-icon {
  color: #f9b340;
  font-size: 25px;
  position: absolute;
  right: 18px;
  top: -18px;
  width: auto;
}

.post.highlighted {
  border: 1px solid #4083a9;
  box-shadow: inset 0 0 0 1px #4083a9;
}

.post.is_hidden,
body.night-mode .post.is_hidden {
  border: 2px dashed #aeaeae;
  filter: grayscale(1);
  z-index: 1;
}

.post a:not(.dropdown-item):hover {
  text-decoration: underline;
}

.post-memory-header {
  border-bottom: 1px solid #f4f4f4;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  text-transform: capitalize;
}

body.night-mode .post-memory-header {
  border-color: #424242;
}

.post-body.with-loader {
  padding: 16px;
}

.post-top-alert {
  background: repeating-linear-gradient(
    45deg,
    #606dbc,
    #606dbc 10px,
    #465298 0,
    #465298 20px
  );
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-weight: 500;
  padding: 10px 0;
  text-align: center;
}

.post-header {
  margin-bottom: 10px;
  padding: 16px 16px 0;
}

.post-avatar {
  display: table-cell;
  padding-right: 10px;
  position: relative;
  vertical-align: top;
}

.post-avatar-anonymous {
  background: #17a2b8;
  border-radius: 50%;
  overflow: hidden;
  padding: 5px;
}

.post-avatar-picture {
  background-color: #eee;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  display: block;
  height: 100%;
  min-height: 40px;
  min-width: 40px;
  overflow: hidden;
  padding-top: 100%;
  width: 100%;
}

.post-avatar-picture.small {
  min-height: 25px;
  min-width: 25px;
}

.post-avatar-picture.large {
  min-height: 60px;
  min-width: 60px;
}

.post-avatar-picture.rounded {
  border-radius: 50%;
}

.post-avatar .online-dot {
  border: 2px solid #fff;
  border-radius: 50%;
  color: #65a830;
  font-size: 9px;
  margin-right: 3px;
  position: absolute;
  right: 2px;
  top: 25px;
}

.night-mode .post-avatar .online-dot {
  border-color: #212121;
}

.post-meta {
  word-wrap: break-word;
  display: table-cell;
  vertical-align: top;
  width: 100%;
  word-break: break-word;
}

.post-meta .dropdown .dropdown-toggle {
  border-radius: 50%;
  color: #d3d3d3;
  padding: 5px;
}

.post-meta .dropdown .dropdown-toggle:hover {
  background: #e9eaee;
  color: #b3b3b3;
  cursor: pointer;
}

body.night-mode .post-meta .dropdown .dropdown-toggle:hover {
  background: #333;
}

.post-meta .dropdown-toggle:after {
  display: none !important;
}

.post-author {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.post-time {
  color: #999;
  font-size: 11px;
  line-height: 16px;
}

.post-time a {
  color: #999;
}

.post-time .fa:hover {
  cursor: pointer;
}

.post-time .btn-group,
.post-time .btn-group .btn {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #999 !important;
  padding: 2px 4px !important;
}

.post-time .btn-group .btn:hover {
  background: #f3f3f3 !important;
}

.post-text {
  word-wrap: break-word;
  margin-bottom: 10px;
  overflow: hidden;
  padding: 0 16px;
  text-align: initial;
  transition: height 0.2s;
  word-break: normal;
}

.post-media-meta .post-text,
.post-product-container .post-text {
  padding: 0;
}

.post-replace {
  font-size: 15px;
  line-height: 22px;
}

.post-replace > a[data-readmore-toggle] {
  margin-left: 16px;
}

.post-product-container .post-replace > a[data-readmore-toggle] {
  margin-left: 0;
}

.post-text-translation {
  border-left: 2px solid #e9eaee;
  margin-top: 10px;
  padding-left: 10px;
}

.post-text .twa {
  background-size: 1.6em 1.6em !important;
  height: 1.6em !important;
  margin: 0 0.0665em 0 0.15em !important;
  vertical-align: -0.15em !important;
  width: 1.6em !important;
}

.post-snippet {
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  margin: 16px;
}

body.night-mode .post-snippet {
  border-color: #424242;
}

.post-snippet-toggle {
  border-radius: 4px;
  padding: 6px;
  text-align: center;
}

.post-edit,
.post-stats {
  padding: 0 16px;
}

.post-stats {
  color: #999;
  font-size: 11px;
  margin-bottom: 10px;
  margin-top: 15px;
}

.post-actions {
  border-top: 1px solid #f4f4f4;
  margin-top: 10px;
  padding: 6px 16px;
}

body.night-mode .post-actions {
  border-color: #424242;
}

.post-actions .action-btn {
  border-radius: 2px;
  color: #555;
  float: left;
  font-size: 13px;
  font-weight: 700;
  line-height: 14px;
  padding: 10px;
  text-align: center;
  transition: all 0.1s ease-in-out;
  width: 33.3%;
}
@media (max-width: 376px) {
  .post-actions .action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .post-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: auto;
    padding: 6px 10px;
  }
}

body.night-mode .post-actions .action-btn {
  color: #bfbfbf;
}

.post-actions .action-btn:hover {
  background: #f7f7f7;
  cursor: pointer;
}

body.night-mode .post-actions .action-btn:hover {
  background: #333;
}

.post-actions .action-btn svg {
  fill: #555;
}

body.night-mode .post-actions .action-btn svg {
  fill: #bfbfbf;
}

.post-footer {
  background: #f9f9f9;
  border-radius: 0 0 4px 4px;
  border-top: 1px solid #eee;
  padding: 0 15px;
}

.night-mode .post-footer {
  background: #212121;
  border-top-color: #363636;
}

.post-approval {
  background: #f9f9f9;
  border-top: 1px solid #eee;
  padding: 15px;
  text-align: right;
}

.night-mode .post-approval {
  background: #212121;
  border-top-color: #363636;
}

.post-social-share {
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 20px;
  padding-bottom: 15px;
  text-align: center;
}

body.night-mode .post-social-share {
  border-color: #424242;
}

.post-comments {
  padding-top: 10px;
}

.comments-filter {
  border-bottom: 1px solid #e6ecf5;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

body.night-mode .comments-filter {
  border-bottom-color: #363636;
}

.comments-filter .btn-group .btn,
.comments-filter .btn-group .btn-default.active,
.comments-filter .btn-group .btn-default:active,
.comments-filter .btn-group .open .btn-default.dropdown-toggle,
.comments-filter .btn-group .open .btn.dropdown-toggle {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--link-color) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.comments-filter .dropdown-menu {
  min-width: 100%;
}

.comments-filter .dropdown-menu .dropdown-item {
  padding: 4px 16px;
}

.pg_wrapper a {
  background-color: #f5f5f5;
  background-position: 50%;
  background-size: cover;
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}

body.night-mode .pg_wrapper a {
  background-color: #414141;
}

.pg_wrapper .more {
  background: rgba(0, 0, 0, 0.3);
  bottom: 0;
  color: #fff;
  font-size: 2em;
  font-weight: 600;
  left: 0;
  line-height: 100%;
  padding-top: 40%;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}

.pg_1x {
  text-align: center;
}

.pg_1x img {
  max-height: 400px;
  max-width: 100%;
}

.pg_2x {
  float: left;
  padding-right: 1px;
  width: 50%;
}

.pg_2x > a {
  padding-bottom: 100%;
}

.pg_1o3,
.pg_2o3 {
  float: left;
  margin-right: 1px;
}

.pg_1o3 {
  margin-right: -1px;
}

.pg_2o3 .pg_2o3_in {
  margin-bottom: 1px;
}

.pg_2o3 .pg_2o3_in:last-child {
  margin-bottom: 0;
}

.pg_1o3 .pg_1o3_in {
  margin-bottom: 1px;
}

.pg_1o3 .pg_1o3_in:last-child {
  margin-bottom: 0;
}

.post-media {
  background: #f3f3f3;
}

.post-snippet .post-media {
  border-radius: 4px;
}

body.night-mode .post-media {
  background: #2f2f2f;
}

.post-media.list {
  background: #fff;
  border: 0;
  box-shadow: none;
  margin-bottom: 15px;
}

body.night-mode .post-media.list {
  background: #212121;
}

.post-media img.img-fluid {
  max-height: 350px;
  width: 100%;
}

.post-media-image-wrapper {
  position: relative;
}

.post-media-image-meta {
  bottom: 15px;
  left: 15px;
  position: absolute;
}

.post-media-image {
  display: block;
  position: relative;
}

.post-media-image .image {
  background-color: #eee;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 100px;
  min-width: 100px;
  overflow: hidden;
  padding-top: 50%;
  width: 100%;
}

body.night-mode .post-media-image .image {
  background-color: transparent;
}

.post-media-image .source {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 3px;
  bottom: 10px;
  color: #fff;
  font-size: 13px;
  left: 10px;
  padding: 6px;
  position: absolute;
  text-transform: uppercase;
}

.post-media-image .icon {
  background: #fff;
  border-radius: 50%;
  bottom: -31px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  left: 50%;
  margin-left: -31px;
  padding: 15px;
  position: absolute;
}

body.night-mode .post-media-image .icon {
  background: #131313;
}

.embed-ifram-wrapper {
  padding: 0 16px;
}

.embed-ifram-wrapper * {
  width: 100% !important;
}

.embed-ifram-wrapper iframe {
  min-height: 400px;
}

.post-media-meta {
  padding: 15px;
  transition: all 0.2s;
  width: 100%;
}

.post-media-meta .title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  word-break: break-word;
}

.post-media-meta .title:hover {
  text-decoration: none;
}

.post-media-meta .text {
  max-height: 100px;
  overflow: hidden;
}

.post-media-meta .info {
  color: #999;
  font-size: 11px;
}

.post-funding-meta,
.post-job-meta {
  padding: 15px 15px 0;
  text-align: center;
}

.post-funding-meta .funding-title,
.post-job-meta .job-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  word-break: break-word;
}

.post-funding-meta .funding-completion {
  text-align: left;
}

.post-funding-meta .funding-completion,
.post-funding-meta .funding-description,
.post-job-meta .job-description {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-top: 10px;
  padding: 10px;
}

body.night-mode .funding-completion,
body.night-mode .funding-description,
body.night-mode .job-description {
  background: #1d1d1d;
  border-color: #424242;
}

.post-downloader {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  margin-top: 10px;
  padding: 10px 16px;
}

body.night-mode .post-downloader {
  border-color: #323232;
}

.post-downloader .icon {
  background-color: #f9f9f9;
  border-radius: 2px;
  display: table-cell;
  padding: 10px 20px;
  vertical-align: middle;
}

.night-mode .post-downloader .icon {
  background-color: #131313;
}

.post-downloader .info {
  display: table-cell;
  padding-left: 10px;
  vertical-align: top;
  width: 100%;
}

.post-product-container {
  padding: 0 16px;
}

.post-product-wrapper {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  display: flex;
  font-size: 14px;
  padding: 10px 5px;
}

body.night-mode .post-product-wrapper {
  background: #1d1d1d;
  border-color: #424242;
}

.post-product-details {
  border-right: 1px solid #e5e5e5;
  flex: 1;
  text-align: center;
  vertical-align: middle;
}

body.night-mode .post-product-details {
  border-color: #424242;
}

.post-product-details:last-child {
  border-right: 0;
}

.post-product-details .title {
  font-weight: 600;
  margin-bottom: 3px;
}

.post-product-details .description {
  color: #555;
}

.post-product-details .description .badge {
  font-size: 13px;
  padding: 4px 12px;
}

body.night-mode .post-product-details .description {
  color: #adadad;
}

.post-dropdown-menu {
  width: 240px;
}

.post-dropdown-menu .fa {
  color: #8b8b8b;
  margin-right: 10px;
}

.post-dropdown-menu .action {
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
}

.post-dropdown-menu .action.no-icon {
  font-weight: 400;
  padding-left: 22px;
}

.post-dropdown-menu .action.no-desc {
  font-weight: 400;
}

.post-dropdown-menu .action-desc {
  color: #999;
  font-size: 11px;
  line-height: 16px;
  padding-left: 30px;
}

.poll-options {
  padding: 0 16px;
}

.poll-option {
  background-color: #ebebeb;
  border-radius: 12px;
  display: table-cell;
  font-weight: 600;
  padding: 8px 12px;
  position: relative;
  vertical-align: top;
  width: 100%;
}

body.night-mode .poll-option {
  background-color: #323232;
}

.poll-option:hover {
  background: #d4d4d4;
  cursor: pointer;
}

.poll-option .percentage-bg {
  background-color: #89a8e8;
  border-radius: 12px;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
}

body.night-mode .poll-option .percentage-bg {
  background-color: #121212;
}

.poll-option .custom-control-input:checked + .custom-control-label {
  color: #fff;
}

.poll-voters {
  display: table-cell;
  padding-left: 5px;
  vertical-align: top;
}

.poll-voters .more {
  background-color: #ebebeb;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  height: 35px;
  padding: 8px 0;
  text-align: center;
  width: 35px;
}

body.night-mode .poll-voters .more {
  background-color: #323232;
}

.youtube-player {
  background: #000;
  height: 0;
  max-width: 100%;
  overflow: hidden;
  padding-top: 56%;
  position: relative;
}

.youtube-player iframe {
  background: transparent;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.youtube-player img {
  bottom: 0;
  cursor: pointer;
  display: block;
  height: auto;
  left: 0;
  margin: auto;
  max-width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.4s;
  width: 100%;
}

.youtube-player img:hover {
  filter: brightness(75%);
}

.youtube-player .play {
  background-image: url(../images/youtube.png);
  height: 72px;
  margin-left: -36px;
  margin-top: -36px;
  width: 72px;
}

.youtube-player .play,
.youtube-player.with-live .play {
  background-size: contain;
  cursor: pointer;
  left: 50%;
  position: absolute;
  top: 50%;
}

.youtube-player.with-live .play {
  background-image: url(../images/play-button.png);
  height: 52px;
  margin-left: -26px;
  margin-top: -26px;
  width: 52px;
}

.who-shares {
  background: #f3f3f3;
}

body.night-mode .who-shares {
  background: #131313;
}

.post-custom-fileds-wrapper {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 14px;
  padding: 10px 20px;
  text-align: left;
}

body.night-mode .post-custom-fileds-wrapper {
  background: #1d1d1d;
  border-color: #424242;
}

.post-custom-fileds-wrapper div:not(:last-child) {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

body.night-mode .post-custom-fileds-wrapper div:not(:last-child) {
  border-color: #424242;
}

.comment {
  padding-bottom: 10px;
}

.comment-avatar {
  float: left;
}

.comment-avatar-picture {
  background-color: #eee;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  display: block;
  height: 100%;
  min-height: 36px;
  min-width: 36px;
  overflow: hidden;
  padding-top: 100%;
  width: 100%;
}

.comment-data,
.comment-edit {
  margin-left: 46px;
}

.comment-data .img-fluid {
  margin: 5px 0;
  max-height: 100px;
  max-width: 30%;
}

.comment-inner-wrapper {
  display: flex;
  margin-bottom: 5px;
}

.comment-inner {
  background-color: #fff;
  border-radius: 18px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
  position: relative;
}

body.night-mode .comment-inner {
  background-color: #121212;
}

.comment-inner:before {
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  border-width: 8px 8px 8px 0;
  content: "";
  cursor: default;
  display: block;
  filter: drop-shadow(-1px 1px 0 rgba(0, 0, 0, 0.02));
  height: 0;
  left: -6px;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
}

body.night-mode .comment-inner:before {
  border-right-color: #121212;
}

.comment-author {
  font-weight: 500;
}

.comment-text {
  word-wrap: break-word;
  margin-bottom: 5px;
  overflow: hidden;
  text-align: initial;
  word-break: break-word;
}

.comment-text .twa {
  font-size: 1.4em;
}

.comment-actions > li {
  float: left;
  margin-right: 8px;
}

.comment-replies {
  padding-top: 10px;
}

.comment-replies > ul {
  width: 100%;
}

.comment-form textarea {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 18px;
  direction: ltr;
  display: block;
  font-size: 13px;
  height: 36px;
  line-height: 18px;
  margin: 0;
  outline: none;
  padding: 8px 128px 8px 16px;
  resize: none;
  width: 100%;
}

body.night-mode .comment-form textarea {
  background: #121212;
  border-color: #424242;
  color: #eee;
}

@media (min-width: 992px) {
  .comment-form textarea {
    padding-right: 100px;
  }
}

.comment-form .x-form-tools {
  bottom: 4px;
  right: 14px;
}

.comment-attachments,
.comment-voice-notes {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  margin-top: 5px;
  padding: 10px 14px 4px;
}

.comment-voice-notes {
  display: none;
  padding: 10px;
}

body.night-mode .comment-attachments,
body.night-mode .comment-voice-notes {
  background: transparent;
  border-color: #424242;
}

.comment .comment-btn {
  display: none;
  float: right;
}

.comment:hover .comment-btn {
  display: block;
}

.live-comments .comment:hover .comment-btn {
  display: none;
}

.comment-btn button.close {
  font-size: 1.4em;
}

.comment .dropdown-toggle-icon {
  border-radius: 50%;
  color: #999;
  padding: 5px;
}

.comment .dropdown-toggle-icon:hover {
  background: #e9eaee;
  cursor: pointer;
}

body.night-mode .comment .dropdown-toggle-icon:hover {
  background: #333;
}

.blog-container {
  background: #fff;
  border-radius: 4px;
  color: inherit;
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.night-mode .blog-container {
  background: #212121;
}

@media (min-width: 768px) {
  .blog-container {
    height: 410px;
  }

  .blog-container.primary {
    background: var(--header-bg-color);
  }
}

.blog-image {
  min-height: 150px;
}

@media (min-width: 576px) {
  .blog-image {
    height: 150px;
    overflow: hidden;
  }
}

.blog-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@media (min-width: 768px) {
  .blog-container.primary .blog-image {
    display: inline-block;
    height: 100%;
    max-height: 100%;
    width: 50%;
  }

  .blog-container.primary .blog-image img {
    max-width: inherit;
    width: auto;
  }
}

.blog-source {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 3px;
  color: #fff;
  font-size: 13px;
  left: 10px;
  padding: 6px;
  position: absolute;
  text-transform: uppercase;
  top: 110px;
}

.blog-container.primary .blog-source {
  bottom: 10px;
  top: auto;
}

.blog-content {
  padding: 10px;
}

@media (min-width: 768px) {
  .blog-container.primary .blog-content {
    color: #fff;
    display: inline-block;
    vertical-align: top;
    width: 49%;
  }
}

.blog-content h3 {
  font-size: 20px;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .blog-container .blog-content h3 {
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: 24px;
    max-height: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 768px) {
  .blog-container.primary .blog-content h3 {
    -webkit-line-clamp: 6;
    font-size: 26px;
    line-height: 30px;
    max-height: 180px;
  }
}

.blog-content .text {
  font-size: 13px;
  margin: 12px 0;
}

@media (min-width: 576px) {
  .blog-container .blog-content .text {
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: 18px;
    max-height: 108px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (min-width: 768px) {
  .blog-container.primary .blog-content .text {
    -webkit-line-clamp: 7;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    margin: 13px 0;
    max-height: 140px;
  }

  .blog-container.primary .text-link {
    color: #eee;
  }
}

.blog-content .post-avatar {
  padding-right: 5px;
  padding-top: 3px;
}

.blog-more {
  background-color: var(--header-bg-color);
  color: #aaa;
  height: 100%;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 0;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  width: 0;
}

.blog-more span {
  border: 1px solid #fff;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  left: calc(50% - 45px);
  padding: 10px 30px;
  position: absolute;
  top: calc(50% - 22px);
}

.blog-container:hover .blog-more {
  opacity: 0.95;
  width: 100%;
}

.article-wrapper {
  background: #fff;
  border-radius: 3px 3px 0 0;
  padding: 25px;
}

.night-mode .article-wrapper {
  background: #212121;
}

.article-wrapper h3 {
  margin-bottom: 20px;
  margin-top: 0;
}

.article-meta-counter {
  background: #f5f5f5;
  border-radius: 2px;
  color: #999;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 5px;
  padding: 4px 12px;
}

.article-meta-counter:hover {
  background: #e1e1e1;
  color: #999;
  cursor: pointer;
}

.article-text {
  word-wrap: break-word;
  font-size: 1.2em;
  line-height: 1.6em;
  word-break: normal;
}

.article-text img {
  max-width: 100% !important;
}

.article-text iframe {
  width: 100% !important;
}

.article-tags {
  margin-top: 20px;
}

.article-tags ul > li {
  display: inline-block;
  margin-right: 4px;
  margin-top: 4px;
}

.article-tags ul > li > a {
  word-wrap: break-word;
  background: #f5f5f5;
  border-radius: 2px;
  color: #999;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
  padding: 0 12px;
  text-align: center;
  text-transform: uppercase;
  word-break: break-all;
}

.article-tags ul > li > a:hover {
  background: var(--header-bg-color);
  color: #fff;
}

.articles-widget-header {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 20px;
}

.night-mode .articles-widget-header {
  border-color: #212121;
}

.articles-widget-title {
  border-bottom: 1px solid #aaa;
  color: #999;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  line-height: 40px;
  margin: 0 0 -1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.article-categories {
  margin-bottom: 15px;
}

.article-categories li {
  float: left;
  margin-bottom: 5px;
  margin-right: 5px;
}

.article-category {
  background: #777;
  border-radius: 12px;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 24px;
  padding: 0 12px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.article-category.small {
  font-size: 9px;
}

.article-category:hover {
  background: var(--header-bg-color);
  color: #fff;
}

.dropdown-menu.auto-complete {
  border-radius: 0;
  box-shadow: none;
  display: none;
  left: 0;
  margin-top: 0;
}

.typeahead {
  float: left;
  position: relative;
}

.typeahead input {
  background: transparent;
  border: 0;
  color: #4e5665;
  font-size: 13px;
  line-height: 20px;
  outline: 0 none;
  width: 100%;
}

body.night-mode .typeahead input {
  color: #fff;
}

.tags li {
  background: #eef2f5;
  border-radius: 3px;
  color: #245774;
  float: left;
  font-size: 11px;
  line-height: 16px;
  margin: 0 3px 3px 0;
  padding: 2px 4px;
}

.tags button {
  filter: alpha(opacity=50);
  font-size: 16px;
  margin-left: 4px;
  opacity: 0.5;
}

.tags button:hover {
  filter: alpha(opacity=80);
  opacity: 0.8;
}

.pac-container {
  z-index: 999999;
}

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  background: rgba(0, 0, 0, 0.75);
  bottom: 0;
  height: 100%;
  left: 0;
  overflow-y: scroll;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 99999;
}

@media (min-width: 992px) {
  .lightbox {
    overflow-y: none;
  }
}

.lightbox-container {
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  display: table;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

@media (min-width: 992px) {
  .lightbox-container {
    height: 100%;
  }
}

.lightbox-preview {
  background: #000;
  display: block;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

@media (min-width: 992px) {
  .lightbox-preview {
    display: table-cell;
    max-width: 800px;
    width: 60%;
  }
}

@media (min-width: 1200px) {
  .lightbox-preview {
    width: 70%;
  }
}

.lightbox-preview.nodata {
  width: 100%;
}

.lightbox-preview.with-live {
  padding: 25px;
}

.lightbox-preview.with-live video {
  left: 0 !important;
  top: 0 !important;
}

.lightbox-exit {
  color: #fff;
  opacity: 0.5;
  position: absolute;
  right: 2%;
  top: 4%;
}

.lightbox-exit:hover {
  cursor: pointer;
  opacity: 1;
}

.lightbox-next,
.lightbox-prev {
  opacity: 0.5;
  position: absolute;
  top: 50%;
}

.lightbox-next {
  right: 2%;
}

.lightbox-prev {
  left: 2%;
}

.lightbox-next:hover,
.lightbox-prev:hover {
  cursor: pointer;
  opacity: 1;
}

.lightbox-next .fa,
.lightbox-prev .fa {
  color: #fff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.lightbox-download {
  bottom: 4%;
  left: 2%;
  position: absolute;
}

.lightbox-download a {
  color: #fff;
  opacity: 0.5;
}

.lightbox-download a:hover {
  opacity: 0.75;
}

.lightbox-preview img {
  margin: 0 auto;
  max-height: calc(100vh - 92px);
  max-width: 100%;
}

.lightbox-data {
  background: #fff;
  display: block;
  vertical-align: top;
  width: 100%;
}

@media (min-width: 992px) {
  .lightbox-data {
    display: table-cell;
    width: 40%;
  }
}

@media (min-width: 1200px) {
  .lightbox-data {
    width: 30%;
  }
}

body.night-mode .lightbox-data {
  background: #212121;
}

.lightbox-data .lightbox-close {
  border-radius: 4px;
  padding: 4px 8px;
}

.lightbox-data .lightbox-close:hover {
  background: #e9eaee;
  color: #666;
  cursor: pointer;
}

.lightbox-post {
  height: calc(100vh - 113px);
  padding: 0 8px;
}

.stories-wrapper {
  margin-bottom: 5px;
  overflow: auto;
  padding-bottom: 0;
}

.stories.carousel {
  overflow: unset !important;
}

.add-story {
  cursor: pointer;
  display: inline-block;
  height: 12vw;
  margin-bottom: 22px;
  max-height: 60px;
  max-width: 60px;
  position: relative;
  width: 12vw;
}

.add-story .img {
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  display: block;
  height: 100%;
  width: 100%;
}

.add-story .add {
  background: #fff;
  border-radius: 50%;
  bottom: 0;
  color: var(--header-bg-color);
  font-size: 14px;
  padding: 1px 3px 0;
  position: absolute;
  right: 0;
}

body.night-mode .add-story .add {
  background: #212121;
}

.stories.sngine.carousel .story {
  max-width: 60px;
  width: 12vw;
}

.stories.sngine.carousel .story > .item-link > .item-preview {
  height: 12vw;
  max-height: 60px;
}

.stories.sngine .story > a > .item-preview > img {
  border: 2px solid var(--header-bg-color);
  border-radius: 50%;
  padding: 2px;
}

.stories.sngine .story.seen {
  opacity: 0.5;
}

.chat-sidebar {
  background: #fefefe;
  bottom: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  display: none;
  position: fixed;
  right: 0;
  top: 70px;
  width: 210px;
}

body.night-mode .chat-sidebar {
  background: #212121;
  box-shadow: -6px 0 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 1200px) {
  .chat-sidebar {
    display: block;
  }
}

.chat-sidebar-header {
  line-height: 20px;
  padding: 10px;
  position: absolute;
  top: 0;
  width: 100%;
}

.chat-sidebar-header .fa {
  color: #c2c2c2;
}

.chat-sidebar-header .fa:hover {
  color: #999;
  cursor: pointer;
}

.chat-sidebar-content {
  border-top: 1px solid #ededed;
  bottom: 34px;
  position: absolute;
  top: 40px;
  width: 100%;
}

body.night-mode .chat-sidebar-content {
  border-color: #363636;
}

.chat-sidebar-content .offline,
.chat-sidebar-content .online {
  font-size: 9px;
  margin-right: 3px;
}

.chat-sidebar .online {
  color: #65a830;
}

.chat-sidebar.disabled .chat-sidebar-content {
  opacity: 0.3;
}

.chat-sidebar.disabled .chat-sidebar-content .offline,
.chat-sidebar.disabled .chat-sidebar-content .online {
  display: none;
}

.chat-sidebar-footer {
  bottom: 0;
  padding: 10px;
  position: absolute;
  width: 100%;
}

.chat-sidebar-footer .form-control {
  background: #ebebeb;
  border: 0;
  border-radius: 4px;
  box-shadow: none;
}

body.night-mode .chat-sidebar-footer .form-control {
  background: #010101;
  border: 1px solid #999;
}

.chat-widget {
  bottom: 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  display: none;
  position: fixed;
  right: 10px;
  width: 260px;
  z-index: 1000;
}

@media (min-width: 992px) {
  .chat-widget {
    display: block;
  }
}

.chat-widget-head {
  background: var(--header-bg-color);
  border-radius: 4px 4px 0 0;
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  line-height: 44px;
  padding: 0 8px;
  position: relative;
  width: 100%;
}

.chat-widget-head .fa-circle {
  color: #65a830;
  font-size: 9px;
}

.chat-widget-head .fa-circle.offline {
  color: #ccc;
  font-size: 9px;
}

.chat-widget-head a {
  color: #fff;
}

.chat-widget-head a:hover {
  text-decoration: underline;
}

.chat-head-label {
  display: none;
  position: absolute;
  right: 5px;
  top: -15px;
}

.chat-widget.chat-box.new .chat-head-label {
  display: block;
}

.chat-widget-content {
  background: var(--body-bg-color);
  display: none;
  padding: 0;
  position: relative;
}

body.night-mode .chat-widget-content {
  background: #212121;
  box-shadow: 0 1px 1px #000;
}

.chat-to {
  background: #fff;
  border-bottom: 1px solid #e6ecf5;
  color: #cdcdcd;
  left: 0;
  padding: 5px 10px 5px 38px;
  position: absolute;
  right: 0;
  top: 0;
}

body.night-mode .chat-to {
  background: #212121;
  border-color: #121212;
}

.chat-to .to {
  left: 10px;
  position: absolute;
  top: 5px;
}

.panel-messages .chat-to {
  padding-bottom: 10px;
  padding-top: 10px;
}

.panel-messages .chat-to .to {
  top: 10px;
}

.chat-conversations {
  padding: 0 7px;
}

.chat-typing {
  display: none;
  padding: 10px;
}

body.night-mode .chat-typing {
  background: #212121;
  border-color: #121212;
}

.loading-dots:after {
  animation: dots 1s steps(5) infinite;
  content: " .";
}

@keyframes dots {
  0%,
  20% {
    color: transparent;
    text-shadow:
      0.25em 0 0 transparent,
      0.5em 0 0 transparent;
  }

  40% {
    color: var(--body-color);
    text-shadow:
      0.25em 0 0 transparent,
      0.5em 0 0 transparent;
  }

  60% {
    text-shadow:
      0.25em 0 0 var(--body-color),
      0.5em 0 0 transparent;
  }

  80%,
  to {
    text-shadow:
      0.25em 0 0 var(--body-color),
      0.5em 0 0 var(--body-color);
  }
}

.chat-voice-notes {
  display: none;
}

.chat-attachments,
.chat-voice-notes {
  background: #fff;
  border-top: 1px solid #dfe8f5;
  padding: 10px;
}

body.night-mode .chat-attachments,
body.night-mode .chat-voice-notes {
  background: #212121;
  border-color: #121212;
}

.chat-form {
  background: #fff;
}

body.night-mode .chat-form {
  background: #212121;
}

.chat-form-message {
  background: transparent;
  border-top: 1px solid #dfe8f5;
  max-height: 69px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 7px;
}

body.night-mode .chat-form-message {
  border-color: #121212;
}

.chat-form-message input[type="text"],
.chat-form-message textarea {
  background: transparent;
  border: 0;
  box-shadow: none;
  direction: ltr;
  display: block;
  font-size: 13px;
  height: 18px;
  line-height: 18px;
  margin: 0;
  outline: none;
  overflow: hidden;
  padding: 0;
  resize: none;
  width: 100%;
}

body.night-mode .chat-form-message input[type="text"],
body.night-mode .chat-form-message textarea {
  color: #fff;
}

.chat-form .x-form-tools {
  padding: 0 7px 7px;
  position: static;
}

.chat-form ul.x-form-tools > li.x-form-tools-colors {
  color: #597ba5;
}

.chat-form .emoji-menu {
  bottom: 40px;
  left: 2px;
  right: 100%;
}

.chat-form .emoji-menu:before {
  left: 38px;
  right: auto;
}

.chat-form .emoji-menu:after {
  left: 39px;
  right: auto;
}

.chat-colors-menu {
  background-color: #fff;
  border: 1px solid #d4d5d6;
  border-radius: 2px;
  bottom: 40px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  display: none;
  font-size: 13px;
  left: 28px;
  line-height: 100%;
  margin: 0;
  padding: 6px;
  position: absolute;
  width: 189px;
  z-index: 99999;
}

.chat-colors-menu:before {
  border: 8px solid transparent;
  border-top-color: #d4d5d6;
  content: "";
  left: 42px;
  position: absolute;
  top: 100%;
}

.chat-colors-menu:after {
  border: 7px solid transparent;
  border-top-color: #fff;
  content: "";
  left: 43px;
  position: absolute;
  top: 100%;
}

.chat-colors-menu .item {
  float: left;
  margin-bottom: 1px;
  margin-right: 1px;
  padding: 4px;
}

.chat-colors-menu .item:hover {
  background: #f3f3f3;
  border-radius: 4px;
  cursor: pointer;
}

.conversation {
  margin-bottom: 20px;
  padding-top: 10px;
}

.conversation-user {
  border-radius: 50%;
  float: left;
  margin-right: 10px;
  overflow: hidden;
}

.conversation-user,
.conversation-user img {
  height: 30px;
  width: 30px;
}

.conversation-body {
  float: left;
  max-width: -moz-calc(100% - 40px);
  max-width: -webkit-calc(100% - 40px);
  max-width: -o-calc(100% - 40px);
  max-width: calc(100% - 40px);
  position: relative;
}

.conversation.right .conversation-body,
.conversation.right .conversation-user {
  float: right;
}

.conversation-body .text {
  word-wrap: break-word;
  background: #fff;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  font-size: 13px;
  padding: 6px 8px;
  word-break: normal;
}

body.night-mode .conversation-body .text {
  background: #121212;
}

.conversation.right .conversation-body .text {
  background: #3367d6;
  border-radius: 12px;
  border-bottom-right-radius: 0;
  color: #fff;
}

.conversation.right .conversation-body .text a {
  color: #fff;
}

.conversation-body .text a {
  text-decoration: underline;
}

.conversation-body .text a:hover {
  text-decoration: none;
}

.conversation-body .text .twa {
  font-size: 2em;
}

.conversation-body .attachments li {
  float: left;
  height: 64px;
  margin-bottom: 5px;
  margin-right: 5px;
  width: 64px;
}

.conversation-body .attachments li.item {
  border: 1px solid #eee;
  cursor: pointer;
}

.conversation-body .attachments li.item img {
  height: 64px;
  width: 64px;
}

.conversation-body .attachments li.loading {
  background: #f3f3f3;
  border: 1px solid #eee;
  padding-top: 22px;
}

.conversation-body .time {
  color: #605f5f;
  font-size: 10px;
  left: 0;
  margin-top: 2px;
  position: absolute;
  top: 100%;
  width: 204px;
}

body.night-mode .conversation-body .time {
  color: #999;
}

.conversation.right .conversation-body .time {
  left: auto;
  right: 0;
  text-align: right;
}

.conversation-body .time:before {
  content: "\f017";
  font-family: "Font Awesome\ 5 Free";
  font-size: 0.875em;
  font-style: normal;
  font-weight: 400;
  margin-top: 4px;
  padding-right: 2px;
  text-decoration: inherit;
}

.conversation-body .seen {
  color: var(--header-bg-color);
  font-size: 10px;
  margin-bottom: 4px;
  margin-top: 18px;
  position: absolute;
  right: 0;
  text-align: right;
  top: 100%;
  width: 204px;
}

.conversation-body .seen:before {
  content: "\f00c";
  font-family: "Font Awesome\ 5 Free";
  font-size: 0.875em;
  font-style: normal;
  font-weight: 900;
  margin-top: 4px;
  padding-right: 4px;
  text-decoration: inherit;
}

.twilio-stream-wrapper {
  border-radius: 8px;
  position: relative;
}

@media (min-width: 992px) {
  .twilio-stream-wrapper {
    background: #222;
  }
}

.twilio-stream video {
  border-radius: 8px;
  width: 100%;
}

.twilio-stream-local {
  border-radius: 8px;
  display: none;
}

.twilio-stream-local video {
  border-radius: 8px;
  height: 100%;
  width: 100%;
}

@media (min-width: 992px) {
  .twilio-stream-local {
    background: #000;
    border: 1px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .twilio-stream-local,
  .twilio-stream-local div {
    height: 240px;
    width: 180px;
  }
}

.emoji-menu {
  background-color: #fff;
  border: 1px solid #d4d5d6;
  border-radius: 2px;
  bottom: 30px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  display: none;
  font-size: 13px;
  line-height: 100%;
  margin: 0;
  min-width: 252px;
  padding: 6px 2px 0 6px;
  position: absolute;
  right: 0;
  z-index: 99999;
}

body.night-mode .emoji-menu {
  background-color: #212121;
  border-color: #424242;
}

.emoji-menu:before {
  border: 8px solid transparent;
  border-top-color: #d4d5d6;
  content: "";
  position: absolute;
  right: 3px;
  top: 100%;
}

body.night-mode .emoji-menu:before {
  border-color: #424242 transparent transparent;
}

.emoji-menu:after {
  border: 7px solid transparent;
  border-top-color: #f6f7f9;
  content: "";
  position: absolute;
  right: 4px;
  top: 100%;
}

body.night-mode .emoji-menu:after {
  border-color: #212121 transparent transparent;
}

.publisher .emoji-menu {
  bottom: auto;
  right: -4px;
  top: 25px;
}

.publisher .emoji-menu:before {
  border-color: transparent transparent #d4d5d6;
  bottom: 100%;
  top: auto;
}

body.night-mode .publisher .emoji-menu:before {
  border-color: transparent transparent #424242;
}

.publisher .emoji-menu:after {
  border-color: transparent transparent #fff;
  bottom: 100%;
  top: auto;
}

body.night-mode .publisher .emoji-menu:after {
  border-color: transparent transparent #212121;
}

.lightbox .emoji-menu {
  bottom: auto;
  right: -7px;
  top: 27px;
}

.lightbox .emoji-menu:before {
  border-color: transparent transparent #d4d5d6;
  bottom: 100%;
  top: auto;
}

body.night-mode .lightbox .emoji-menu:before {
  border-color: transparent transparent #424242;
}

.lightbox .emoji-menu:after {
  border-color: transparent transparent #fff;
  bottom: 100%;
  top: auto;
}

body.night-mode .lightbox .emoji-menu:after {
  border-color: transparent transparent #212121;
}

.emoji-menu .item {
  float: left;
  margin-bottom: 3px;
  margin-right: 3px;
  padding: 3px;
}

.emoji-menu .item:hover {
  background: #f3f3f3;
  border-radius: 4px;
  cursor: pointer;
}

body.night-mode .emoji-menu .item:hover {
  background: #111;
}

.emoji-menu .item > img {
  height: 65px;
  width: 65px;
}

.emoji-menu .nav-tabs {
  border-bottom: 0;
  border-top: 1px solid #dddfe2;
  margin: 0 -2px 0 -6px;
  padding: 0 10px;
}

body.night-mode .emoji-menu .nav-tabs {
  border-color: #424242;
}

.emoji-menu .nav-tabs > li > .nav-link {
  border: 0;
  border-radius: 0;
  border-top: 2px solid transparent;
  color: #555;
  margin: 0;
  padding: 12px 16px;
}

.emoji-menu .nav-tabs > li > .nav-link:hover {
  background: transparent;
  border-color: transparent;
  border-bottom: 0;
  color: var(--link-color);
}

.emoji-menu .nav-tabs > li > .nav-link.active,
.emoji-menu .nav-tabs > li > .nav-link.active:focus,
.emoji-menu .nav-tabs > li > .nav-link.active:hover {
  background: transparent;
  border: 0;
  border-top: 2px solid var(--link-color);
  color: var(--link-color);
}

.reactions-stats {
  cursor: pointer;
  display: flex;
  line-height: 24px;
}

.reactions-stats > .reactions-stats-item {
  background: #fff;
  border-radius: 50%;
  margin: 0 0 0 -6px;
  padding: 3px;
}

body.night-mode .reactions-stats > .reactions-stats-item {
  background: #212121;
}

.reactions-stats > .reactions-stats-item:first-child {
  z-index: 3;
}

.reactions-stats > .reactions-stats-item:nth-child(2) {
  z-index: 2;
}

.reactions-stats > .reactions-stats-item:nth-child(3) {
  z-index: 1;
}

.reactions-wrapper {
  position: relative;
}

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

.reaction-btn .reaction-btn-icon {
  display: inline-block;
}

.reaction-btn .reaction-btn-name {
  margin-left: 5px;
  text-transform: capitalize;
}

.reaction-btn .reaction-btn-name.blue {
  color: #1e8bd2;
}

.reaction-btn .reaction-btn-name.red {
  color: #f25268;
}

.reaction-btn .reaction-btn-name.yellow {
  color: #f3b715;
}

.reaction-btn .reaction-btn-name.orange {
  color: #f7806c;
}

.reactions-container {
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  display: none;
  position: fixed;
  width: 336px;
  z-index: 4;
}

body.night-mode .reactions-container {
  background: #424242;
}

@media (max-width: 480px) {
  .reactions-container {
    border-radius: 20px;
    width: 144px;
  }
}

.reactions_item {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: slideUp cubic-bezier(0.49, 0, 0.46, 1);
  animation: slideUp cubic-bezier(0.49, 0, 0.46, 1);
  float: left;
  height: 48px;
  transform: scale(1);
  transition: transform 0.25s ease;
  width: 48px;
}

.reactions_item.duration-1 {
  -webkit-animation-duration: 0.1s;
  animation-duration: 0.1s;
}

.reactions_item.duration-2 {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

.reactions_item.duration-3 {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

.reactions_item.duration-4 {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}

.reactions_item.duration-5 {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.reactions_item.duration-6 {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}

.reactions_item.duration-7 {
  -webkit-animation-duration: 0.7s;
  animation-duration: 0.7s;
}

.reactions_item:hover {
  transform: scale(1.25) translateY(-3px);
}

.reactions_item:after {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 16px;
  box-sizing: border-box;
  color: #fff;
  content: attr(data-title);
  display: inline-block;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  left: 50%;
  line-height: 16px;
  opacity: 0;
  overflow: hidden;
  padding: 0 8px;
  position: absolute;
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: capitalize;
  top: 0;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  transition: opacity 50ms ease;
  -webkit-user-select: none;
  visibility: hidden;
}

.reactions_item:hover:after {
  opacity: 1;
  visibility: visible;
}

@-webkit-keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inline-emoji {
  height: 18px;
  width: 18px;
}

.inline-emoji .emoji {
  right: 285%;
  top: -285%;
  transform: scale(0.15);
}

.no_animation *,
.no_animation :after,
.no_animation :before {
  animation: none !important;
}

.emoji {
  border-radius: 50%;
  display: inline-block;
  position: relative;
  right: 76%;
  top: -76%;
  transform: scale(0.325);
}

.emoji,
.emoji img {
  height: 120px;
  width: 120px;
}

.reaction img {
  animation-duration: 1.3s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}

.reaction.reaction-1 img {
  animation-name: bounce;
  transform-origin: center bottom;
}

.reaction.reaction-2 img {
  animation-name: heartBeat;
  animation-timing-function: ease-in-out;
}

.reaction.reaction-3 img {
  animation-name: swing;
  transform-origin: top center;
}

.reaction.reaction-4 img {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}

.reaction.reaction-5 img {
  animation-name: fadeInDown;
}

.reaction.reaction-6 img {
  animation-name: swing;
  animation-timing-function: ease-in-out;
}

.reaction.reaction-7 img {
  animation-name: headShake;
  animation-timing-function: ease-in-out;
}

@keyframes bounce {
  0%,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }

  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -2px, 0) scaleY(1.1);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -1px, 0) scaleY(1.05);
  }

  80% {
    transform: translateZ(0) scaleY(0.95);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  90% {
    transform: translate3d(0, -1px, 0) scaleY(1.02);
  }
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.05);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.05);
  }

  70% {
    transform: scale(1);
  }
}

@keyframes swing {
  20% {
    transform: rotate(2deg);
  }

  40% {
    transform: rotate(-2deg);
  }

  60% {
    transform: rotate(0deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes pulse {
  0% {
    transform: scaleX(1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 1;
    transform: translate3d(0, -5%, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-2px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(1px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-1px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(1px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.page-header {
  background: #667db6;
  background: linear-gradient(90deg, #667db6, #0082c8, #0082c8, #667db6);
  color: #fff;
  overflow: hidden;
  padding: 70px 15px;
  position: relative;
  text-align: center;
  z-index: auto;
}

.page-header.mini {
  padding: 35px 15px;
}

@media (min-width: 768px) {
  .page-header {
    padding: 90px 15px;
  }

  .page-header.mini {
    padding: 45px 15px;
  }
}

.page-header.bank-transfer {
  background-color: #2196f3;
  background: linear-gradient(90deg, #03a9f4, #2196f3 35%, #3f51b5);
  padding: 20px;
  z-index: 1;
}

.page-header .floating-img {
  bottom: 10px;
  left: 10%;
  opacity: 0.5;
  position: absolute;
  width: 300px;
}

.page-header .circle-1 {
  background-image: radial-gradient(
    circle 800px at 75% -25%,
    #000 0,
    hsla(0, 0%, 100%, 0) 100%
  );
  border-radius: 50%;
  height: 290px;
  left: -180px;
  opacity: 0.05;
  position: absolute;
  top: 60px;
  width: 290px;
}

.page-header .circle-2 {
  height: 500px;
  opacity: 0.03;
  right: -242px;
  top: 17px;
  width: 500px;
}

.page-header .circle-2,
.page-header .circle-3 {
  background-image: radial-gradient(
    circle 800px at 10% -25%,
    #000 0,
    hsla(0, 0%, 100%, 0) 100%
  );
  border-radius: 50%;
  position: absolute;
}

.page-header .circle-3 {
  height: 200px;
  opacity: 0.04;
  right: 78px;
  top: -73px;
  width: 200px;
}

.page-header .inner {
  z-index: 999;
}
@media (max-width: 600px) {
  .page-header .inner {
    margin-top: 50px;
  }
}

.page-header.bank-transfer .inner {
  border: 6px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 5px;
  padding: 20px;
}

.page-header.bank-transfer .bank-info-meta {
  font-size: 18px;
}

.page-header.bank-transfer .bank-info-help {
  color: #eee;
  font-size: 12px;
  text-transform: uppercase;
}

.footer {
  border-top: 1px solid #e6ecf5;
  margin-bottom: 5px;
  margin-top: 25px;
  padding-bottom: 10px;
  padding-top: 10px;
}

@media (max-width: 576px) {
  .footer {
    width: 100%;
  }
  .footer-first-line {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-wrapper .row.footer .col-sm-6.links {
    justify-content: center !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .footer_container_for_leage {
    padding-right: 158px;
  }
}

.night-mode .footer {
  border-top: 1px solid #212121;
}

@media (min-width: 768px) {
  /* .footer .links {
        text-align: right
    } */
}

.mini-footer {
  font-size: 12px;
}

.mini-footer .copyrights {
  align-items: center;
  border-bottom: 1px solid #e9e9e9;
  color: #858585;
  display: flex;
  font-weight: 500;
  justify-content: space-between;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.night-mode .mini-footer .copyrights {
  border-bottom-color: #212121;
}

.mini-footer .links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}

.mini-footer .links li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

.language-dropdown {
  border-radius: 4px;
  padding: 8px 12px;
}

.language-dropdown:hover {
  background: #f3f6f9;
}

.notfound-wrapper {
  min-height: 560px;
  position: relative;
}

.notfound {
  left: 50%;
  line-height: 1.1;
  max-width: 560px;
  padding-left: 160px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.notfound .notfound-circle {
  font-size: 140px;
  height: 140px;
  left: 0;
  position: absolute;
  top: 0;
  width: 140px;
}

.notfound .notfound-circle:before {
  background-color: #f2f5f8;
  border-radius: 50%;
  content: "";
  height: 100%;
  position: absolute;
  -webkit-transform: scale(2.4);
  -ms-transform: scale(2.4);
  transform: scale(2.4);
  width: 100%;
  z-index: -1;
}

body.night-mode .notfound .notfound-circle:before {
  background-color: #212121;
}

@media only screen and (max-width: 767px) {
  .notfound {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 110px;
  }

  .notfound .notfound-circle {
    font-size: 110px;
    height: 110px;
    width: 110px;
  }
}

.notfound h1 {
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}

.notfound h1,
.notfound h2 {
  color: #151723;
  font-family: Nunito, sans-serif;
  text-transform: uppercase;
}

.notfound h2 {
  font-size: 21px;
  font-weight: 400;
  margin: 0;
}

body.night-mode .notfound h1,
body.night-mode .notfound h2 {
  color: #fff;
}

.card-ouath-overlay {
  background: #000;
  bottom: 0;
  left: 0;
  opacity: 0.6;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.5s;
  z-index: 1002;
}

.card-ouath {
  background: #fff;
  border: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  z-index: 1003;
}

body.index-body {
  background-color: #f9f9f9;
  background-image: url(../images/home/dots.png);
  background-size: contain;
}

body.night-mode.index-body {
  background-color: var(--body-bg-color-dark);
  background-image: url(../images/home/dots-night.png);
}

.card-register {
  background: #fff;
  border: 0;
  box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card-register .card-header {
  background: transparent;
  border: 0;
  padding: 0 0 15px;
}

.card-register .card-header img {
  border-radius: 20%;
  left: 0;
  margin-left: -50px;
  margin-top: -150px;
  position: absolute;
  top: -135px;
  width: 350px;
}

.card-register .card-header .card-title {
  color: #eee;
  font-size: 2em;
  padding-top: 20px;
  font-weight: 900;
  margin-left: 25px;
  position: relative;
  text-transform: lowercase;
}

body.night-mode .card-register .card-header .card-title {
  color: #d8e2ff;
}

.card-register .form-control {
  background: #f7f7f7;
  border-radius: 18px;
}

.card-register .input-group > .input-group-prepend > .input-group-text {
  background: #f7f7f7;
  border-radius: 18px 0 0 18px;
}

body.night-mode .card-register .form-control {
  background: #232323;
  border-color: #363636;
}

body.night-mode
  .card-register
  .input-group
  > .input-group-prepend
  > .input-group-text {
  background: #232323;
  border-color: #363636;
  color: #dfdfdf;
}

.index-intro {
  margin-bottom: 20px;
  text-align: center;
}

.index-intro h1 {
  color: #4d4d4d;
  font-size: 28px;
  font-weight: 100;
}

@media (min-width: 768px) {
  .index-intro h1 {
    font-size: 32px;
  }
}

body.night-mode .index-intro h1 {
  color: #fff;
}

.index-intro p {
  color: #6a6a6a;
  font-size: 18px;
  font-weight: 100;
  line-height: 24px;
}

body.night-mode .index-intro p {
  color: #ccc;
}

.daytime_message {
  border-left: 2px solid #fba540 !important;
  display: none;
  margin-bottom: 20px;
  padding: 15px;
}

.daytime_message button {
  font-size: 18px;
  margin-top: 4px;
}

.forum-breadcrumb {
  margin-bottom: 0;
  padding: 16px 20px;
  word-break: break-all;
}

.forum-breadcrumb,
.forum-title {
  word-wrap: break-word;
  margin-top: 20px;
}

.forum-title {
  margin-bottom: 20px;
}

.forum-title h1 {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 0;
}

.forum-title p {
  margin-bottom: 0;
}

.forum-category {
  background-color: var(--header-bg-color);
  border-radius: 2px 2px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-top: 20px;
  padding: 15px 20px;
}

.forum-category a {
  color: #fff;
}

.forum-category a:hover {
  text-decoration: underline;
}

.forum-head {
  margin-left: 0;
  margin-right: 0;
}

.forum-head > .column {
  background-color: #16232d;
  border-left: 1px solid #161e27;
  border-right: 1px solid #192534;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  padding: 20px;
  text-align: center;
}

body.night-mode .forum-head > .column {
  background: #000;
  border-left-color: #121212;
  border-right-color: #151515;
}

.forum-head.threads > .column {
  background-color: #576c7c;
  border-left: 1px solid #6d8292;
  border-right: 1px solid #374855;
}

body.night-mode .forum-head.threads > .column {
  background: #121212;
}

.forum-head > .column:first-child {
  border-left: none;
  text-align: left;
}

.forum-head > .column:last-child {
  border-right: none;
}

.forum-row {
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}

.forum-row,
.forum-row > .column {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
}

.forum-row > .column {
  word-wrap: break-word;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  color: grey;
  flex-direction: column;
  font-size: 12px;
  padding: 20px;
}

body.night-mode .forum-row > .column {
  background: #212121;
  border-color: #323232;
}

.forum-row > .column.icon {
  color: #999;
  text-align: center;
}

.forum-row .sub-forums li {
  float: left;
  margin-right: 10px;
}

.forum-meta-head {
  background-color: #16232d;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  padding: 15px 20px;
}

body.night-mode .forum-meta-head {
  background: #000;
}

.forum-meta-conent {
  background-color: #fff;
  color: grey;
  font-size: 12px;
  padding: 15px 20px;
}

body.night-mode .forum-meta-conent {
  background-color: #212121;
}

.forum-thread {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  margin-top: 10px;
  padding: 20px 10px;
}

body.night-mode .forum-thread {
  background: #212121;
  border-color: #323232;
}

.forum-thread .row {
  margin-left: 0;
  margin-right: 0;
}

.forum-thread .avatar {
  border-radius: 50%;
  height: 80px;
  width: 80px;
}

.forum-thread .time {
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

body.night-mode .forum-thread .time {
  border-color: #323232;
}

.forum-thread .text {
  word-wrap: break-word;
}

.forum-thread .text iframe,
.forum-thread .text img {
  max-width: 100%;
}

.forum-thread ul {
  list-style: initial;
  margin: initial;
  padding-inline-start: 40px;
}

.forum-result {
  margin-top: 20px;
}

.forum-result .head {
  background-color: #576c7c;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  padding: 10px 20px;
}

body.night-mode .forum-result .head {
  background-color: #000;
}

.forum-result .head a {
  color: #fff;
}

.forum-result .head a:hover {
  text-decoration: underline;
}

.forum-result .content {
  background-color: #f5f5f5;
  color: grey;
  font-size: 12px;
  padding: 10px 20px;
}

body.night-mode .forum-result .content {
  background-color: #212121;
}

.forum-result .title {
  font-size: 14px;
}

.forum-result .snippet {
  word-wrap: break-word;
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 8px 10px;
}

body.night-mode .forum-result .snippet {
  background: #121212;
  border-color: #323232;
}

.directory-card {
  background: #f6f7f9;
  border-radius: 4px;
  color: #898f9c;
  display: block;
  font-size: 14px;
  height: 100%;
  line-height: 20px;
  padding: 25px;
  text-align: center;
  width: 100%;
}

body.night-mode .directory-card {
  background: #292929;
}

.directory-card:hover {
  background: #eee;
  color: #898f9c;
}

body.night-mode .directory-card:hover {
  background: #333;
}

.directory-card .title {
  color: #4b4f56;
  margin-top: 15px;
}

body.night-mode .directory-card .title {
  color: #9a9fbf;
}

.directory-card p {
  margin-bottom: 0;
}

.panel-messages .card-header .fa-circle {
  color: #65a830;
  font-size: 9px;
}

.panel-messages .card-body {
  padding: 0;
}

.panel-messages.fresh .card-body {
  position: relative;
}

.panel-messages .conversation-user,
.panel-messages .conversation-user img {
  height: 50px;
  width: 50px;
}

.panel-messages .conversation-body {
  max-width: -moz-calc(100% - 120px);
  max-width: -webkit-calc(100% - 120px);
  max-width: -o-calc(100% - 120px);
  max-width: calc(100% - 120px);
}

.panel-messages .conversation-body .text {
  background: #e9eaee;
}

.live-stream-wrapper {
  background: #323232;
  border-radius: 4px;
  padding: 20px;
}

@media (min-width: 992px) {
  .live-stream-wrapper {
    padding: 50px;
  }
}

.live-stream-title {
  color: #fff;
  font-size: 34px;
  line-height: 50px;
  margin-bottom: 10px;
}

.live-stream-video {
  height: 500px;
  position: relative;
}

.live-stream-video .live-counter {
  left: 20px;
  position: absolute;
  top: 20px;
  z-index: 2;
}

.live-stream-video .live-counter .status {
  background: #dc3545;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
  padding: 5px 15px;
  text-transform: uppercase;
}

.live-stream-video .live-counter .status.offline {
  background: #383838;
}

.live-stream-video .live-counter .number {
  background: #383838;
  border-radius: 4px;
  color: #fff;
  margin-left: 4px;
  padding: 5px 10px;
  text-transform: uppercase;
}

.live-stream-video .live-status {
  background: #383838;
  border-radius: 4px;
  bottom: 30px;
  color: #fff;
  left: 50%;
  padding: 10px 25px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  z-index: 4;
}

.live-stream-video .live-status.info {
  background: #17a2b8;
}

.live-stream-video .live-status.success {
  background: #28a745;
}

.live-stream-video .live-status.error {
  background: #dc3545;
}

.live-stream-video .live-recording {
  background: #383838;
  border-radius: 4px;
  color: red;
  display: none;
  font-weight: 600;
  padding: 5px 10px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}

.live-stream-video .live-comments {
  background-image: linear-gradient(transparent, #000);
  bottom: 0;
  height: 200px;
  left: 0;
  padding: 20px;
  position: absolute;
  right: 0;
  z-index: 3;
}

.live-stream-video video {
  background: #000;
  border-radius: 4px;
}

.live-stream-buttons {
  display: none;
  margin-top: 20px;
  text-align: center;
}

.profile-header {
  border: 1px solid #e6ecf5;
  border-top: 0;
  margin-bottom: 20px;
  position: relative;
}

body.night-mode .profile-header {
  border-color: #424242;
}

@media (min-width: 992px) {
  .profile-header {
    margin-bottom: 40px;
  }
}

.profile-cover-wrapper {
  background: #424242;
  border-radius: 0 0 2px 2px;
  height: 180px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 576px) {
  .profile-cover-wrapper {
    height: 240px;
  }
}

@media (min-width: 768px) {
  .profile-cover-wrapper {
    height: 300px;
  }
}

@media (min-width: 992px) {
  .profile-cover-wrapper {
    height: 360px;
  }
}

.profile-cover-wrapper img.js_position-cover-cropped {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.profile-cover-wrapper img.js_lightbox:hover {
  cursor: pointer;
}

.profile-cover-wrapper img.js_position-cover-full {
  cursor: move;
  height: auto;
  width: 100%;
}

.profile-cover-buttons {
  color: #fff;
  font-size: 12px;
  left: 10px;
  opacity: 0.4;
  position: absolute;
  top: 10px;
  transition: all 0.5s;
}

@media (min-width: 768px) {
  .profile-cover-buttons {
    font-size: 16px;
    left: 50px;
    top: 15px;
  }
}

.profile-cover-buttons > div {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  float: left;
  margin-right: 5px;
  padding: 4px 8px;
  text-align: center;
  transition: all 0.5s;
}

.profile-cover-buttons > div:hover {
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.profile-cover-wrapper:hover .profile-cover-buttons {
  opacity: 1;
}

.profile-cover-buttons form.x-uploader {
  position: relative;
}

.profile-cover-buttons > div.profile-cover-position-buttons {
  display: none;
  padding: 4px 6px;
}

.profile-cover-change-loader {
  background: #000;
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0.5;
  padding-top: 20%;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.5s;
  width: 100%;
}

@media (min-width: 768px) {
  .profile-cover-change-loader {
    padding-top: 15%;
  }
}

.profile-cover-position-loader {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  color: #fff;
  display: none;
  font-size: 11px;
  left: 50%;
  padding: 8px 10px;
  position: absolute;
  top: 15px;
  transform: translate(-50%);
}

@media (min-width: 768px) {
  .profile-cover-position-loader {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 24px;
  }
}

.profile-avatar-wrapper {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
  left: 50%;
  padding: 2px;
  position: absolute;
  top: 112px;
  transform: translate(-50%);
}

@media (min-width: 576px) {
  .profile-avatar-wrapper {
    top: 140px;
  }
}

@media (min-width: 768px) {
  .profile-avatar-wrapper {
    top: 170px;
  }
}

body.night-mode .profile-avatar-wrapper {
  background: #121212;
}

.profile-avatar-wrapper.static {
  top: 0;
}

@media (min-width: 992px) {
  .profile-avatar-wrapper {
    padding: 4px;
  }

  .profile-avatar-wrapper:not(.static) {
    bottom: 50px;
    left: 55px;
    top: auto;
    transform: none;
  }
}

.profile-avatar-wrapper img {
  border-radius: 50%;
  height: 90px;
  transition: all 0.5s;
  width: 90px;
}

.profile-avatar-wrapper img.js_lightbox:hover {
  cursor: pointer;
}

@media (min-width: 576px) {
  .profile-avatar-wrapper img {
    height: 120px;
    width: 120px;
  }
}

@media (min-width: 768px) {
  .profile-avatar-wrapper img {
    height: 150px;
    width: 150px;
  }
}

@media (min-width: 992px) {
  .profile-avatar-wrapper img {
    height: 160px;
    width: 160px;
  }
}

.profile-avatar-change,
.profile-avatar-crop,
.profile-avatar-delete {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  bottom: 5px;
  color: #fff;
  display: block;
  font-size: 12px;
  opacity: 0.4;
  padding: 4px 8px;
  position: absolute;
  right: 5px;
  text-align: center;
  transition: all 0.5s;
}

.profile-avatar-change:hover,
.profile-avatar-crop:hover,
.profile-avatar-delete:hover {
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.profile-avatar-crop {
  bottom: 35px;
  right: -15px;
}

.profile-avatar-delete {
  bottom: 75px;
  right: 5px;
}

.profile-avatar-change form.x-uploader {
  position: relative;
}

@media (min-width: 576px) {
  .profile-avatar-delete {
    bottom: 75px;
    right: -15px;
  }
}

@media (min-width: 768px) {
  .profile-avatar-change,
  .profile-avatar-crop,
  .profile-avatar-delete {
    bottom: 10px;
    font-size: 16px;
    right: 10px;
  }

  .profile-avatar-crop {
    bottom: 45px;
    right: -10px;
  }

  .profile-avatar-delete {
    bottom: 85px;
    right: -15px;
  }
}

.profile-avatar-wrapper:hover .profile-avatar-change,
.profile-avatar-wrapper:hover .profile-avatar-crop,
.profile-avatar-wrapper:hover .profile-avatar-delete {
  opacity: 1;
}

.profile-avatar-change-loader {
  background: #000;
  border-radius: 50%;
  bottom: 0;
  display: none;
  height: 100%;
  left: 0;
  opacity: 0.5;
  padding-top: 50%;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.5s;
  width: 100%;
}

.profile-name-wrapper {
  background: #fff;
  font-size: 1.2em;
  font-weight: 600;
  padding-bottom: 10px;
  padding-top: 30px;
  text-align: center;
}

.profile-name-wrapper .text_wrap:nth-of-type(1) a {
  font-size: 1.9em;
}

.profile-name-wrapper .text_wrap:nth-of-type(2) a {
  font-size: 20px;
}

body.night-mode .profile-name-wrapper {
  background: #212121;
}

@media (min-width: 992px) {
  .profile-name-wrapper .text_wrap {
    font-weight: 500;
    font-size: 15px;
  }

  .profile-name-wrapper {
    background: transparent !important;
    bottom: 50px;
    font-size: 20px;
    left: 250px;
    padding-bottom: 0;
    padding-top: 0;
    position: absolute;
    right: auto;
    text-align: left;
    color: #fff;
    /* text-shadow: 0 0 3px rgba(0, 0, 0, 0.9); */
  }

  .no-avatar .profile-name-wrapper {
    bottom: 70px;
    left: 85px;
  }
}

.profile-name-wrapper a {
  color: #333;

  font-size: 24.7px;
}

.profile-name-wrapper a.badge,
body.night-mode .profile-name-wrapper a {
  color: #fff;
}

@media (min-width: 992px) {
  .profile-name-wrapper a {
    color: #fff;
  }

  .profile-name-wrapper a.badge {
    font-size: 14px;
  }
}

.profle-date-wrapper {
  background: rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  left: 10px;
  padding: 20px 6px;
  position: absolute;
  text-align: center;
  top: 120px;
  transition: all 0.5s;
  width: 45px;
}

@media (min-width: 576px) {
  .profle-date-wrapper {
    top: 180px;
  }
}

@media (min-width: 768px) {
  .profle-date-wrapper {
    top: 240px;
  }
}

@media (min-width: 992px) {
  .profle-date-wrapper {
    bottom: 50px;
    font-size: 14px;
    left: 15px;
    top: auto;
    width: 55px;
  }
}

.profle-meta-wrapper {
  color: #e9e9e9;
  font-size: 12px;
  left: 65px;
  position: absolute;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.9);
  top: 140px;
}

@media (min-width: 576px) {
  .profle-meta-wrapper {
    top: 200px;
  }
}

@media (min-width: 768px) {
  .profle-meta-wrapper {
    top: 260px;
  }
}

@media (min-width: 992px) {
  .profle-meta-wrapper {
    bottom: 50px;
    left: 85px;
    top: auto;
  }
}

.profile-buttons-wrapper {
  background: #fff;
  padding-bottom: 20px;
  text-align: center;
  overflow: hidden;
}

body.night-mode .profile-buttons-wrapper {
  background: #212121;
}

@media (min-width: 992px) {
  .profile-buttons-wrapper {
    background: transparent !important;
    bottom: 50px;
    padding-bottom: 0;
    position: absolute;
    right: 15px;
    text-align: left;
  }
}

@media (max-width: 992px) {
  .profile-buttons-wrapper .btn {
    box-shadow: none;
    margin-left: 10px;
  }
}

.profile-tabs-wrapper {
  background: #fff;
  border-radius: 0 0 2px 2px;
  border-top: 1px solid #e6ecf5;
  box-shadow: 0 1px 13px rgba(0, 0, 0, 0.08);
  padding: 0 5px;
}

body.night-mode .profile-tabs-wrapper {
  background: #212121;
  border-color: #323232;
}

@media (min-width: 992px) {
  .profile-tabs-wrapper {
    border-radius: 2px;
    bottom: -25px;
    box-shadow: none;
    left: 15px;
    padding: 0;
    position: absolute;
    right: 15px;
  }

  .no-avatar .profile-tabs-wrapper {
    left: 15px;
  }
}

.profile-tabs-wrapper > ul {
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

.profile-tabs-wrapper > ul > li {
  display: inline-block;
}

.profile-tabs-wrapper > ul > li > a {
  color: #666;
  display: block;
  font-weight: 600;
  line-height: 20px;
  padding: 18px 25px;
  transition: all 0.2s ease;
}

.profile-tabs-wrapper.narrow > ul > li > a {
  padding: 18px 28px;
}

body.night-mode .profile-tabs-wrapper > ul > li > a {
  color: #eee;
}

.profile-tabs-wrapper > ul > li > a:hover,
body.night-mode .profile-tabs-wrapper > ul > li > a:hover {
  color: var(--link-color);
}

.profile-tabs-wrapper > ul > li > a.active,
body.night-mode .profile-tabs-wrapper > ul > li > a.active {
  border-bottom: 2px solid var(--link-color);
  color: var(--link-color);
}

@media (max-width: 559px) {
  .panel-mutual-friends {
    display: none;
  }
}

.panel-mutual-friends li {
  float: left;
  height: 40px;
  margin-right: -8px;
  width: 40px;
}

.about-bio {
  word-wrap: break-word;
  border-bottom: 1px solid #eee;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-align: center;
}

body.night-mode .about-bio {
  border-color: #424242;
}

.about-bio a {
  display: inline-block;
  margin-top: 10px;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-list li {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: 8px;
  padding-bottom: 5px;
  position: relative;
}

.about-list li.package {
  background: #597ba5;
  color: #fff;
  margin-bottom: 15px;
  margin-left: -20px;
  margin-right: -20px;
  padding: 10px 15px;
  text-align: center;
}

.about-list li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-list-item {
  padding-left: 30px;
  word-break: break-word;
}

.about-list-item a:hover {
  text-decoration: underline;
}

.about-list-item .fa {
  color: #a5a9b3;
  left: 0;
  position: absolute;
  top: 4px;
}

.about-list-item .details {
  color: #b2b2b2;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  padding-top: 2px;
}

.panel-photos div[class*=" col-"],
.panel-photos div[class^="col-"] {
  padding: 1px 1px 0;
}

.panel-photos .main-table-header tr th {
  border: none;
  width: 6%;
  padding: 0;
}

.pg_photo {
  background-color: #eee;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1px;
  display: block;
  height: 100%;
  margin-bottom: 2px;
  min-height: 40px;
  min-width: 40px;
  padding-top: 100%;
  position: relative;
  width: 100%;
}

.pg_photo.large {
  min-height: 100px;
  min-width: 100px;
}

.pg_photo-btn {
  position: absolute;
  right: 5px;
  top: 5px;
}

.panel-videos div[class*=" col-"],
.panel-videos div[class^="col-"] {
  padding: 1px 1px 0;
}

.pg_video {
  background: #eee;
  display: block;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
}

.pg_video video {
  bottom: 0;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.pg_video .play-button {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: #f5f5f5;
  display: block;
  height: 50px;
  left: calc(50% - 25px);
  padding-left: 6px;
  padding-top: 11px;
  position: absolute;
  text-align: center;
  top: calc(50% - 25px);
  transition: all 0.3s ease;
  width: 50px;
}

.pg_video:hover .play-button {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 10px #ffff64;
}

.album-card {
  border: 1px solid #ededed;
  border-radius: 1px;
  margin-bottom: 10px;
}

body.night-mode .album-card {
  border-color: #121212;
}

.album-cover {
  background-color: #eee;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  min-height: 40px;
  min-width: 40px;
  overflow: hidden;
  padding-top: 100%;
  width: 100%;
}

.album-details {
  font-size: 11px;
  padding: 10px;
}

.album-details .fa {
  cursor: pointer;
}

.album-details .tooltip {
  font-size: 11px;
  min-width: 110px;
  width: auto;
}

.album-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
}

.album-meta {
  margin-bottom: 40px;
  text-align: center;
}

.admin-chart {
  border: 1px solid #e6ecf5;
  height: 400px;
  margin: 0 auto;
  min-width: 100%;
}

body.night-mode .admin-chart {
  border-color: #424242;
}

.table-img-thumbnail {
  max-width: 100px;
}

.change-log-list {
  margin-left: 30px;
}

.change-log-list > li {
  list-style-type: disc;
  margin-left: 30px;
}

.add-auto-connect-node {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  margin: 10px 0;
  padding: 10px;
  text-align: center;
}

.add-auto-connect-node :hover {
  background: #f3f3f3;
}

body.night-mode .add-auto-connect-node {
  background: #333;
  border-color: #555;
}

body.night-mode .add-auto-connect-node :hover {
  background: #212121;
}

.auto-connect-node {
  border: 1px solid #ddd;
  border-radius: 4px;
  margin: 10px 0;
  padding: 20px 30px 0;
}

body.night-mode .auto-connect-node {
  border-color: #555;
}

.product {
  border-radius: 4px;
  position: relative;
}

.product:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.product.boosted {
  border: 2px solid #f9b340;
}

.product .boosted-icon {
  background: #f9b340;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  left: -15px;
  padding: 3px 6px;
  position: absolute;
  top: -15px;
  -ms-transform: rotate(-20deg);
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  width: auto;
  z-index: 2;
}

.product-image {
  border-radius: 4px 4px 0 0;
  height: 250px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-price {
  background: rgba(0, 0, 0, 0.65);
  border-radius: 6px;
  bottom: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  left: 10px;
  line-height: 1;
  padding: 6px 10px;
  position: absolute;
}

.product-price.with-offer {
  font-size: 14px;
  font-weight: 400;
}

.product-overlay {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  height: 100%;
  left: 0;
  opacity: 0;
  padding-top: 100px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  transition: all 0.3s;
  width: 100%;
}

.product:hover .product-overlay {
  opacity: 1;
}

.product-info {
  padding: 10px;
}

.product-meta {
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
}

.product-meta .title {
  font-size: 14px;
  font-weight: 500;
}

.movie-card {
  margin-bottom: 20px;
}

.movie-card-top {
  border: 5px solid #fff;
  border-radius: 4px;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

body.night-mode .movie-card-top {
  border-color: #212121;
}

.movie-picture {
  background-color: #fff;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 330px;
  width: 100%;
}

.movie-info {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  height: 100%;
  left: 0;
  opacity: 0;
  padding-top: 70px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  transition: all 0.3s;
  transition-delay: 0.1s;
  width: 100%;
}

.movie-info .meta {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.movie-card-top:hover .movie-info {
  opacity: 1;
}

.movie-card-bottom {
  margin: 0 auto;
  padding: 0 5px;
  text-align: left;
}

.movie-title {
  display: block;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s ease-in-out;
  white-space: nowrap;
}

.movie-title,
.movie-year {
  font-size: 14px;
}

.noty_theme__mint.noty_type__info,
.noty_theme__mint.noty_type__information {
  background-color: rgba(51, 103, 214, 0.8) !important;
  border-bottom: 1px solid #3367d6 !important;
}

.noty_bar {
  margin-bottom: 5px !important;
}

.noty_body {
  padding: 5px !important;
}

.noty_body,
.noty_body .data-content,
.noty_close_button {
  color: #fff !important;
}

.translator-language {
  border: 1px solid #eee;
  border-radius: 1px;
  display: block;
  font-size: 15px;
  line-height: 100%;
  margin-bottom: 5px;
  padding: 15px;
}

.translator-language:hover {
  background: #f3f3f3;
  cursor: pointer;
}

.big-icon {
  border: 4px solid hsla(0, 0%, 50%, 0.15);
  border-radius: 50%;
  height: 80px;
  margin: 20px auto;
  position: relative;
  width: 80px;
}

.big-icon.success {
  border-color: rgba(76, 174, 76, 0.15);
}

.big-icon.error {
  border-color: rgba(217, 83, 79, 0.15);
}

.big-icon.warning {
  border-color: rgba(255, 153, 0, 0.21);
}

.big-icon .fa {
  padding-left: 3px;
  padding-top: 17px;
}

.big-icon.success .fa {
  color: #4cae4c;
}

.big-icon.error .fa {
  color: #d9534f;
}

.big-icon.warning .fa {
  color: #d9954f;
}

.x-loader {
  text-align: center;
}

.loader {
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 5px 0;
  width: 100%;
}

.loader:after {
  -webkit-animation: rotate 0.6s linear infinite;
  -moz-animation: rotate 0.6s linear infinite;
  -ms-animation: rotate 0.6s linear infinite;
  -o-animation: rotate 0.6s linear infinite;
  animation: rotate 0.6s linear infinite;
  border-color: #545a6a #d4d4db #d4d4db #545a6a;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border-style: solid;
  border-width: 1px;
  content: "";
  display: block;
  height: 20px;
  opacity: 0.5;
  position: relative;
  width: 20px;
}

.loader.loader_large:after {
  height: 40px;
  width: 40px;
}

.loader.loader_medium:after {
  height: 25px;
  width: 25px;
}

.loader.loader_small:after {
  height: 20px;
  width: 20px;
  border-color: #0048ff #d4d4db #d4d4db #0048ff;
  border-width: 3px;
}

.loader.loader_green:after {
  border-color: #42a26e #fff #fff #42a26e;
  border-style: solid;
  border-width: 1px;
  opacity: 1;
}

keyframes rotate {
  0% {
    transform: rotate(-1turn);
    -webkit-transform: rotate(-1turn);
    -moz-transform: rotate(-1turn);
    -o-transform: rotate(-1turn);
  }

  to {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(-1turn);
    -webkit-transform: rotate(-1turn);
    -moz-transform: rotate(-1turn);
    -o-transform: rotate(-1turn);
  }

  to {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}

@-moz-keyframes rotate {
  0% {
    transform: rotate(-1turn);
    -webkit-transform: rotate(-1turn);
    -moz-transform: rotate(-1turn);
    -o-transform: rotate(-1turn);
  }

  to {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}

@-o-keyframes rotate {
  0% {
    transform: rotate(-1turn);
    -webkit-transform: rotate(-1turn);
    -moz-transform: rotate(-1turn);
    -o-transform: rotate(-1turn);
  }

  to {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
}

@keyframes anim {
  0% {
    background-position: -468px 0;
  }

  to {
    background-position: 468px 0;
  }
}

@-o-keyframes anim {
  0% {
    background-position: -468px 0;
  }

  to {
    background-position: 468px 0;
  }
}

@-ms-keyframes anim {
  0% {
    background-position: -468px 0;
  }

  to {
    background-position: 468px 0;
  }
}

@-moz-keyframes anim {
  0% {
    background-position: -468px 0;
  }

  to {
    background-position: 468px 0;
  }
}

@-webkit-keyframes anim {
  0% {
    background-position: -468px 0;
  }

  to {
    background-position: 468px 0;
  }
}

.panel-effect {
  -moz-animation: anim 1s linear infinite forwards;
  -webkit-animation: anim 1s linear infinite forwards;
  animation: anim 1s linear infinite forwards;
  background: #f6f7f8 no-repeat 800px 104px;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2ZjdmOCIvPjxzdG9wIG9mZnNldD0iMjAlIiBzdG9wLWNvbG9yPSIjZWRlZWYxIi8+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiNmNmY3ZjgiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNmY3ZjgiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=");
  background-image: -webkit-gradient(
    linear,
    0 50%,
    100% 50%,
    color-stop(0, #f6f7f8),
    color-stop(20%, #edeef1),
    color-stop(40%, #f6f7f8),
    color-stop(100%, #f6f7f8)
  );
  background-image: -moz-linear-gradient(
    left,
    #f6f7f8 0,
    #edeef1 20%,
    #f6f7f8 40%,
    #f6f7f8 100%
  );
  background-image: -webkit-linear-gradient(
    left,
    #f6f7f8,
    #edeef1 20%,
    #f6f7f8 40%,
    #f6f7f8
  );
  background-image: linear-gradient(
    90deg,
    #f6f7f8 0,
    #edeef1 20%,
    #f6f7f8 40%,
    #f6f7f8
  );
  background-size: 100%;
  height: 104px;
  position: relative;
}

.fake-effect {
  background: #fff;
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
}

.fe-0 {
  height: 40px;
  left: 40px;
  width: 8px;
}

.fe-1 {
  height: 8px;
  left: 48px;
  right: 0;
  top: 0;
}

.fe-2 {
  left: 136px;
  top: 8px;
}

.fe-3 {
  height: 12px;
  left: 48px;
  top: 14px;
}

.fe-4 {
  left: 100px;
  top: 26px;
}

.fe-5 {
  height: 10px;
  left: 48px;
  top: 32px;
}

.fe-6 {
  height: 20px;
  top: 40px;
}

.fe-7 {
  left: 410px;
  top: 60px;
}

.fe-8 {
  height: 13px;
  top: 66px;
}

.fe-9 {
  left: 440px;
  top: 79px;
}

.fe-10 {
  height: 13px;
  top: 85px;
}

.fe-11 {
  left: 178px;
  top: 98px;
}

.switch {
  display: inline-block;
  height: 34px;
  margin: 0;
  position: relative;
  width: 60px;
}

.switch.sm {
  height: 17px;
  width: 30px;
}

.switch input {
  display: none;
}

.switch .slider {
  background-color: #ccc;
  bottom: 0;
  cursor: pointer;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.4s;
}

body.night-mode .switch .slider {
  background-color: #666;
}

.switch .slider:before {
  background-color: #fff;
  bottom: 4px;
  content: "";
  height: 26px;
  left: 4px;
  position: absolute;
  transition: 0.4s;
  width: 26px;
}

.switch.sm .slider:before {
  bottom: 2px;
  height: 13px;
  left: 2px;
  width: 13px;
}

.switch input:checked + .slider {
  background-color: var(--link-color);
}

.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.switch.sm input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

.switch .slider.round {
  border-radius: 34px;
}

.switch .slider.round:before {
  border-radius: 50%;
}

.button-label {
  border-radius: 6px;
  box-shadow: 0 0 0 1px #e6e6e6;
  color: #6c6c6c;
  cursor: pointer;
  display: inline-block;
  margin: 0.5em;
  min-width: 115px;
  padding: 1em 2em;
  transition: 0.3s;
}

.button-label.small {
  min-width: 100px;
}

body.night-mode .button-label {
  box-shadow: 0 0 0 1px #424242;
}

.button-label-image {
  border-radius: 2px;
  box-shadow: none;
  cursor: pointer;
  display: block;
  height: 100%;
  margin: 0;
  padding: 5px;
  transition: 0.3s;
  width: 100%;
}

.button-label .icon {
  align-items: center;
  background: #f3f3f3;
  border-radius: 50%;
  display: flex;
  filter: grayscale(1);
  height: 60px;
  justify-content: center;
  margin: 0 auto;
  opacity: 0.75;
  transition: all 0.2s;
  width: 60px;
}

.button-label.small .icon {
  height: 30px;
  width: 30px;
}

.button-label .icon img {
  height: 32px;
  width: 32px;
}

.button-label-image img {
  border-radius: 2px;
  height: 100%;
  width: 100%;
}

.button-label .title {
  font-size: 14px;
  font-weight: 500;
  margin-top: 15px;
  text-align: center;
  text-transform: capitalize;
}

.button-label-image:hover,
.button-label:hover,
.input-label:checked + .button-label,
.input-label:checked + .button-label-image {
  box-shadow: 0 0 0 2px rgba(51, 103, 214, 0.65);
}

.input-label:checked + .button-label .icon {
  filter: grayscale(0);
  opacity: 1;
}

.btn-social,
.btn-social-icon {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-adn.active,
.btn-adn:active,
.btn-bitbucket.active,
.btn-bitbucket:active,
.btn-dropbox.active,
.btn-dropbox:active,
.btn-facebook.active,
.btn-facebook:active,
.btn-flickr.active,
.btn-flickr:active,
.btn-foursquare.active,
.btn-foursquare:active,
.btn-github.active,
.btn-github:active,
.btn-google.active,
.btn-google:active,
.btn-instagram.active,
.btn-instagram:active,
.btn-microsoft.active,
.btn-microsoft:active,
.btn-openid.active,
.btn-openid:active,
.btn-pinterest.active,
.btn-pinterest:active,
.btn-reddit.active,
.btn-reddit:active,
.btn-soundcloud.active,
.btn-soundcloud:active,
.btn-tumblr.active,
.btn-tumblr:active,
.btn-twitch.active,
.btn-twitch:active,
.btn-twitter.active,
.btn-twitter:active,
.btn-vimeo.active,
.btn-vimeo:active,
.btn-vk.active,
.btn-vk:active,
.btn-yahoo.active,
.btn-yahoo:active,
.open > .dropdown-toggle.btn-adn,
.open > .dropdown-toggle.btn-bitbucket,
.open > .dropdown-toggle.btn-dropbox,
.open > .dropdown-toggle.btn-facebook,
.open > .dropdown-toggle.btn-flickr,
.open > .dropdown-toggle.btn-foursquare,
.open > .dropdown-toggle.btn-github,
.open > .dropdown-toggle.btn-google,
.open > .dropdown-toggle.btn-instagram,
.open > .dropdown-toggle.btn-microsoft,
.open > .dropdown-toggle.btn-openid,
.open > .dropdown-toggle.btn-pinterest,
.open > .dropdown-toggle.btn-reddit,
.open > .dropdown-toggle.btn-soundcloud,
.open > .dropdown-toggle.btn-tumblr,
.open > .dropdown-toggle.btn-twitch,
.open > .dropdown-toggle.btn-twitter,
.open > .dropdown-toggle.btn-vimeo,
.open > .dropdown-toggle.btn-vk,
.open > .dropdown-toggle.btn-yahoo {
  background-image: none;
}

.btn-social {
  padding-left: 44px;
  position: relative;
  text-align: left;
}

.btn-social > :first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  bottom: 0;
  font-size: 1.6em;
  left: 0;
  line-height: 34px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 32px;
}

.btn-social.btn-lg {
  padding-left: 61px;
}

.btn-social.btn-lg > :first-child {
  font-size: 1.8em;
  line-height: 45px;
  width: 45px;
}

.btn-social.btn-sm {
  padding-left: 38px;
}

.btn-social.btn-sm > :first-child {
  font-size: 1.4em;
  line-height: 28px;
  width: 28px;
}

.btn-social.btn-xs {
  padding-left: 30px;
}

.btn-social.btn-xs > :first-child {
  font-size: 1.2em;
  line-height: 20px;
  width: 20px;
}

.btn-social-icon {
  height: 34px;
  padding: 0;
  position: relative;
  text-align: left;
  width: 34px;
}

.btn-social-icon > :first-child {
  bottom: 0;
  font-size: 1.6em;
  left: 0;
  line-height: 34px;
  position: absolute;
  top: 0;
}

.btn-social-icon.btn-lg > :first-child {
  font-size: 1.8em;
  line-height: 45px;
  width: 45px;
}

.btn-social-icon.btn-sm > :first-child {
  font-size: 1.4em;
  line-height: 30px;
  width: 28px;
}

.btn-social-icon.btn-xs > :first-child {
  font-size: 1.2em;
  line-height: 20px;
  width: 20px;
}

.btn-social-icon > :first-child {
  border: none;
  text-align: center;
  width: 100% !important;
}

.btn-social-icon.btn-lg {
  height: 45px;
  padding-left: 0;
  padding-right: 0;
  width: 45px;
}

.btn-social-icon.btn-sm {
  height: 30px;
  padding-left: 0;
  padding-right: 0;
  width: 30px;
}

.btn-social-icon.btn-xs {
  height: 22px;
  padding-left: 0;
  padding-right: 0;
  width: 22px;
}

.btn-adn {
  background-color: #d87a68;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

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

.btn-adn .badge {
  background-color: #fff;
  color: #d87a68;
}

.btn-bitbucket {
  background-color: #205081;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

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

.btn-bitbucket .badge {
  background-color: #fff;
  color: #205081;
}

.btn-dropbox {
  background-color: #1087dd;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

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

.btn-dropbox .badge {
  background-color: #fff;
  color: #1087dd;
}

.btn-facebook {
  background-color: #3b5998;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-facebook.active,
.btn-facebook:active,
.btn-facebook:focus,
.btn-facebook:hover,
.open > .dropdown-toggle.btn-facebook {
  background-color: #2d4373;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

.btn-facebook .badge {
  background-color: #fff;
  color: #3b5998;
}

.btn-flickr {
  background-color: #ff0084;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

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

.btn-flickr .badge {
  background-color: #fff;
  color: #ff0084;
}

.btn-foursquare {
  background-color: #f94877;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

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

.btn-foursquare .badge {
  background-color: #fff;
  color: #f94877;
}

.btn-github {
  background-color: #444;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-github.active,
.btn-github:active,
.btn-github:focus,
.btn-github:hover,
.open > .dropdown-toggle.btn-github {
  background-color: #2b2b2b;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

.btn-github .badge {
  background-color: #fff;
  color: #444;
}

.btn-google {
  background-color: #dd4b39;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

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

.btn-google .badge {
  background-color: #fff;
  color: #dd4b39;
}

.btn-instagram {
  background-color: #3f729b;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

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

.btn-instagram .badge {
  background-color: #fff;
  color: #3f729b;
}

.btn-twitch {
  background-color: #9146ff;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-twitch.active,
.btn-twitch:active,
.btn-twitch:focus,
.btn-twitch:hover,
.open > .dropdown-toggle.btn-twitch {
  background-color: #552a93;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

.btn-twitch .badge {
  background-color: #fff;
  color: #3f729b;
}

.btn-linkedin {
  background-color: #007bb6;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

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

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

.btn-linkedin .badge {
  background-color: #fff;
  color: #007bb6;
}

.btn-microsoft {
  background-color: #2672ec;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-microsoft.active,
.btn-microsoft:active,
.btn-microsoft:focus,
.btn-microsoft:hover,
.open > .dropdown-toggle.btn-microsoft {
  background-color: #125acd;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

.btn-microsoft .badge {
  background-color: #fff;
  color: #2672ec;
}

.btn-openid {
  background-color: #f7931e;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

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

.btn-openid .badge {
  background-color: #fff;
  color: #f7931e;
}

.btn-pinterest {
  background-color: #cb2027;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-pinterest.active,
.btn-pinterest:active,
.btn-pinterest:focus,
.btn-pinterest:hover,
.open > .dropdown-toggle.btn-pinterest {
  background-color: #9f191f;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

.btn-pinterest .badge {
  background-color: #fff;
  color: #cb2027;
}

.btn-reddit {
  background-color: #eff7ff;
  border-color: rgba(0, 0, 0, 0.2);
  color: #000;
}

.btn-reddit.active,
.btn-reddit:active,
.btn-reddit:focus,
.btn-reddit:hover,
.open > .dropdown-toggle.btn-reddit {
  background-color: #bcddff;
  border-color: rgba(0, 0, 0, 0.2);
  color: #000;
}

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

.btn-reddit .badge {
  background-color: #000;
  color: #eff7ff;
}

.btn-soundcloud {
  background-color: #f50;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

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

.btn-soundcloud .badge {
  background-color: #fff;
  color: #f50;
}

.btn-tumblr {
  background-color: #2c4762;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-tumblr.active,
.btn-tumblr:active,
.btn-tumblr:focus,
.btn-tumblr:hover,
.open > .dropdown-toggle.btn-tumblr {
  background-color: #1c2d3f;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

.btn-tumblr .badge {
  background-color: #fff;
  color: #2c4762;
}

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

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

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

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

.btn-vimeo {
  background-color: #1ab7ea;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-vimeo.active,
.btn-vimeo:active,
.btn-vimeo:focus,
.btn-vimeo:hover,
.open > .dropdown-toggle.btn-vimeo {
  background-color: #1295bf;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

.btn-vimeo .badge {
  background-color: #fff;
  color: #1ab7ea;
}

.btn-vk {
  background-color: #587ea3;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

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

.btn-vk .badge {
  background-color: #fff;
  color: #587ea3;
}

.btn-whatsapp {
  background-color: #04aa24;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-whatsapp.active,
.btn-whatsapp:active,
.btn-whatsapp:focus,
.btn-whatsapp:hover,
.open > .dropdown-toggle.btn-whatsapp {
  background-color: #3c983b;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

.btn-whatsapp .badge {
  background-color: #fff;
  color: #04aa24;
}

.btn-yahoo {
  background-color: #720e9e;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btn-yahoo.active,
.btn-yahoo:active,
.btn-yahoo:focus,
.btn-yahoo:hover,
.open > .dropdown-toggle.btn-yahoo {
  background-color: #500a6f;
  border-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}

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

.btn-yahoo .badge {
  background-color: #fff;
  color: #720e9e;
}

.ml0 {
  margin-left: 0 !important;
}

.mlr0,
.mr0 {
  margin-right: 0 !important;
}

.mlr0 {
  margin-left: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0,
.mtb0 {
  margin-bottom: 0 !important;
}

.mtb0 {
  margin-top: 0 !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mlr5,
.mr5 {
  margin-right: 5px !important;
}

.mlr5 {
  margin-left: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5,
.mtb5 {
  margin-bottom: 5px !important;
}

.mtb5 {
  margin-top: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mlr10,
.mr10 {
  margin-right: 10px !important;
}

.mlr10 {
  margin-left: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10,
.mtb10 {
  margin-bottom: 10px !important;
}

.mtb10 {
  margin-top: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mlr15,
.mr15 {
  margin-right: 15px !important;
}

.mlr15 {
  margin-left: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15,
.mtb15 {
  margin-bottom: 15px !important;
}

.mtb15 {
  margin-top: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mlr20,
.mr20 {
  margin-right: 20px !important;
}

.mlr20 {
  margin-left: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20,
.mtb20 {
  margin-bottom: 20px !important;
}

@media (max-width: 767px) {
  .padding-top-20px {
    padding-top: 35px !important;
  }
}

.mtb20 {
  margin-top: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mlr25,
.mr25 {
  margin-right: 25px !important;
}

.mlr25 {
  margin-left: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25,
.mtb25 {
  margin-bottom: 25px !important;
}

.mtb25 {
  margin-top: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mlr30,
.mr30 {
  margin-right: 30px !important;
}

.mlr30 {
  margin-left: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30,
.mtb30 {
  margin-bottom: 30px !important;
}

.mtb30 {
  margin-top: 30px !important;
}

.pl0 {
  padding-left: 0 !important;
}

.plr0,
.pr0 {
  padding-right: 0 !important;
}

.plr0 {
  padding-left: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0,
.ptb0 {
  padding-bottom: 0 !important;
}

.ptb0 {
  padding-top: 0 !important;
}

.pl5 {
  padding-left: 5px !important;
}

.plr5,
.pr5 {
  padding-right: 5px !important;
}

.plr5 {
  padding-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5,
.ptb5 {
  padding-bottom: 5px !important;
}

.ptb5 {
  padding-top: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.plr10,
.pr10 {
  padding-right: 10px !important;
}

.plr10 {
  padding-left: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10,
.ptb10 {
  padding-bottom: 10px !important;
}

.ptb10 {
  padding-top: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.plr15,
.pr15 {
  padding-right: 15px !important;
}

.plr15 {
  padding-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15,
.ptb15 {
  padding-bottom: 15px !important;
}

.ptb15 {
  padding-top: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.plr20,
.pr20 {
  padding-right: 20px !important;
}

.plr20 {
  padding-left: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20,
.ptb20 {
  padding-bottom: 20px !important;
}

.ptb20 {
  padding-top: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.plr25,
.pr25 {
  padding-right: 25px !important;
}

.plr25 {
  padding-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25,
.ptb25 {
  padding-bottom: 25px !important;
}

.ptb25 {
  padding-top: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.plr30,
.pr30 {
  padding-right: 30px !important;
}

.plr30 {
  padding-left: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30,
.ptb30 {
  padding-bottom: 30px !important;
}

.ptb30 {
  padding-top: 30px !important;
}

.text-link {
  color: var(--link-color);
}

.text-link:hover,
.text-underline:hover {
  cursor: pointer;
  text-decoration: underline;
}

.text-active {
  color: #1e8bd2 !important;
}

.text-md {
  font-size: 1.1em;
  line-height: 1.6;
}

.text-lg {
  font-size: 1.2em;
  line-height: 1.7;
}

.text-xlg {
  font-size: 1.3em;
  line-height: 1.8em;
}

.text-xxlg {
  font-size: 2.3em;
  font-weight: 700;
}

.text-with-list ul {
  list-style-type: disc;
  padding-inline-start: 40px;
}

.red {
  color: red;
}

.normal-wrap {
  width: 100%;
  white-space: normal;
}

.green {
  color: green;
}

.yellow {
  color: #ebba16;
}

.unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pointer {
  cursor: pointer;
}

.vertical-align-top {
  vertical-align: top;
}

.vertical-align-middle {
  vertical-align: middle;
}

.vertical-align-bottom {
  vertical-align: bottom;
}

.x-notifier {
  background: #ffffcd !important;
}

body.night-mode .x-notifier {
  background: #000 !important;
}

.x-hidden {
  display: none;
}

.x-blured {
  overflow: hidden;
}

.x-blured .album-cover,
.x-blured .js_lightbox {
  filter: blur(10px);
}

@media (max-width: 767px) {
  .offcanvas {
    overflow: hidden;
    position: relative;
  }

  .offcanvas.active {
    transition: all 0.25s ease-out;
  }

  .offcanvas .offcanvas-sidebar {
    left: -100%;
    position: absolute !important;
    top: 0px;
    transition: all 0.25s ease-out;
    width: 100%;
    z-index: 100;
  }

  .offcanvas.active .offcanvas-sidebar {
    left: 0;
  }

  .offcanvas .offcanvas-mainbar {
    left: 0;
    transition: all 0.25s ease-out;
  }

  .offcanvas.active .offcanvas-mainbar {
    left: 100%;
  }

  .content-tabs {
    margin-top: 50px;
  }

  .chat-Delete-style {
    margin-top: 50px;
  }

  .row.footer .col-sm-6.links {
    padding-right: 0px !important;
    margin-left: 5px;
    margin-right: 5px;
  }

  .card-register-signup-style {
    width: 100% !important;
    margin-top: 18px;
  }

  .card-header.with-icon {
    padding-top: 60px;
  }

  .breakLine-style {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 87%;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 400;
  }

  .custom-modal-content {
    width: 100% !important;
    max-width: 360px !important;
  }
}

@media (max-width: 550px) {
  .input-group .btn {
    margin-top: 10px;
  }
}

.main-header .logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  overflow: visible;
}

.adblock-detector {
  opacity: 0;
}

.customDropdown {
  position: relative;
  margin-right: 0px;
  height: 100%;
  display: flex;
  align-items: center;
}

.customDropdown .dropdowns {
  color: #fff;
  font-size: 18px;
  position: relative;
  padding-right: 0px;
  line-height: 1;
  display: flex;
  text-transform: uppercase;
  font-family: "Poppins";
  align-items: center;
}

.events_table {
  padding: 8px 16px;
  background-color: #fff;
  border-radius: 5px;
  cursor: default;
  margin-top: 15px;
}

.table-resp a {
  color: var(--link-color);
}

.events_table .table-resp {
  width: 100%;
  font-size: 12px;
}

.events_table .right_aligned {
  text-align: center;
  color: var(--link-color);
}

.events_table .right_aligned span {
  color: #5e72e4;
}

.events_table tr {
  border-bottom: 0.5px solid grey;
  height: 30px;
}

.events_table tr:nth-child(5) {
  border-bottom: unset;
}

.fa.fa-clock-o:before {
  content: "\f017";
  font-size: 16px;
  color: #5e72e4;
}

.btn-primary.invitefriends_btn {
  width: 100%;
  display: flex;
  text-align: center;
  padding: 0;
  justify-content: center;
  height: 44px;
  align-items: center;
}

.flexed_li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: middle;
}

.dropdown_btn.rotated:before {
  transform: rotate(180deg);
  cursor: pointer;
}

.dropdown_btn:before,
.dropdown_lbtn:before,
.dropdown_fbtn:before,
.dropdown_tbtn:before {
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  color: #5e72e4;
  content: "\f107";
  display: inline-block;
  float: right;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  transition: all 0.15s ease;
  cursor: pointer;
}

ul.main-side-nav li.side_flex {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
}

.b-hide {
  display: none !important;
}

.leauge_hidden {
  display: none;
}

.b-hide + .col-12.col-md-8.col-lg-9.offcanvas-mainbar {
  flex: 0 0 100%;
  max-width: 100%;
}

.active-dropdown a {
  font-weight: 700;
  color: #4b6fc4 !important;
}

.invitefriendsfield {
  height: 44px;
}

.modal-dialog.invitefriendspopup {
  max-width: 750px;
}

.invitefriendspopup .col-md-8.card-body {
  border-right: 1px solid;
}

.modal-header.invitezone-header {
  background: #181837;
}

.invitezone-header h4 {
  color: #fff;
}

.invitezone-header .close {
  font-size: 36px;
  font-weight: 100;
  color: #fff;
  opacity: 1;
  margin: -1rem -1rem -1rem;
}

.btn-primary.search {
  padding: 12px;
}

#myModal7 .modal-dialog {
  max-width: 700px;
}

.add-leauges-fields.timetable-league {
  background: #243041;
  display: inline-block;
  width: 100%;
  padding: 10px 0;
  border-radius: 10px;
}

.add-leauges-fields.timetable-league .dropdown {
  width: 33%;
  float: left;
  border-bottom: 0px;
  text-align: center;
  list-style-type: none;
}

a.dropdown-toggle {
  color: #ffffff;
  font-size: 14px;
  padding: 12px 20px;
  font-weight: 600;
}

.col-12.timetables-name p,
.col-12.leagues-name p {
  background-color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: #4c6ec5;
}

.timetables-section {
  cursor: pointer;
}

.timetables-drop.timetables-section::after,
.leagues-drop.leagues-section::after,
.fixtures-drop.fixtures-section::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  transition: 0.3s linear ease-in-out;
}

.timetables-drop.timetables-section.down::after,
.leagues-drop.leagues-section.down::after,
.fixtures-drop.fixtures-section.down::after {
  transform: rotate(180deg);
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  transition: 0.3s linear ease-in-out;
}

.dropdown-menu .accordion button::after {
  display: inline-block;
  margin-left: 7em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  transition: 0.3s linear ease-in-out;
}

.card-header.with-nav.timetables {
  padding: 0;
}

.dropdown-menu.timetables-cat {
  top: 70px;
  left: 140px;
  border-radius: 5px;
  overflow: hidden;
  /*    overflow-y: overlay;*/
  height: 250px;
  padding: 0;
}

.dropdown-menu.timetables-cat.non-member {
  height: 160px;
}

.dropdown-menu.leagues-cat,
.dropdown-menu.fixtures-cat {
  top: 70px;
  left: 300px;
  border-radius: 5px;
  overflow: hidden;
  /*    overflow-y: overlay;*/
  height: 260px;
  padding: 0;
}

.dropdown-menu.leagues-cat::-webkit-scrollbar-thumb {
  width: 3px;
}

#leagues .createleagues a {
  cursor: pointer;
}

#create_new_leagues input[type="checkbox"],
#create_new_leagues .type-of-league input[type="radio"] {
  cursor: pointer;
}

#create_new_leagues input[type="checkbox"] + label {
  cursor: default;
}

.col-12 .league-range {
  display: inline-block;
}

.right_side {
  display: flex;
  float: right;
  gap: 10px;
  /* position: absolute; */
  right: 15px;
}

.edit_leagues,
.leagues_menu,
.saveLeague,
.updateLeague {
  padding: 10px 20px;
  border: 1px solid;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  min-width: 100px;
}

.leagues_menu {
  background-color: #242f41 !important;
}

.round-robin .saveLeague {
  background-color: #4c6ec5;
  color: #fff;
  border: 1px solid #4c6ec5;
  border-radius: 4px;
  transition: all 0.5s ease-in;
}

.round-robin .saveLeague:hover {
  background-color: #fff;
  color: #4c6ec5;
}

.editing button:hover,
button.fixtures-btn.save-btn:hover {
  border: 1px solid #2dce8a;
  background: transparent;
  color: #2dce8a;
  transition: 0.2s linear ease-in-out;
}

.round-robin .updateLeague {
  background-color: #4c6ec5;
}

.round-robin .updateLeague:hover {
  border: 1px solid #4c6ec5;
  background: transparent;
  color: #4c6ec5;
  transition: 0.2s linear ease-in-out;
}

.league-range.editing {
  display: flex;
  align-items: center;
}

.league-range.editing p {
  margin: 0;
  padding: 0 10px;
}

.pullright.date-range,
.pullright.division-name {
  display: inline-flex;
  padding-left: 10px;
  margin: 0;
}

.pullright img {
  cursor: pointer;
}

.league-range.editing button {
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid #2dce8a;
  background: #2dce8a;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
}

.editing button,
button.fixtures-btn.save-btn {
  border: 1px solid #4b6fc4;
  background: #4b6fc4;
  color: #fff;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 13px;
  opacity: 1;
  margin-right: 20px;
}

.editing button.highlight_text,
button.highlight_text.fixtures-btn {
  border: 1px solid #4b6fc4;
  background: transparent;
  color: #4b6fc4;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 13px;
  opacity: 1;
}

.editing button.highlight_text:hover,
button.highlight_text.fixtures-btn:hover {
  color: #fff !important;
  background: #4b6fc4 !important;
  border-color: #4b6fc4 !important;
}

button.fixtures-btn {
  padding: 2px 7px;
}

.leagues_points_table .editing {
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  border: 0 !important;
}

.edit_leagues {
  background-color: #4c6ec5;
}

.leagues_menu,
.leagues_setting_menu,
.divisions_setting_menu {
  background-color: #4c6ec5;
  cursor: pointer;
}

button.edit_leagues {
  background-color: transparent;
  color: #242f41;
  border: none;
  font-size: 14px;
  padding-left: 0px;
}

div#leagues_setting_dropdown a#notify_league_users {
  line-height: 1.4;
}

.leagues_dropdown,
.leagues_setting_dropdown,
.divisions_setting_dropdown {
  top: 40px;
  border-radius: 5px;
  overflow: hidden;
  overflow-y: overlay;
  height: 300px;
  padding: 0;
  position: absolute;
  float: right;
  right: 10px;
  display: none;
  flex-direction: column;
  width: 100%;
  max-width: 160px;
  padding: 0;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 99;
  height: auto;
}

.leagues_setting_menu,
.divisions_setting_menu {
  margin-right: 0px;
  padding: 10px 20px;
  border: 1px solid;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  min-width: 100px;
}

.leagues_setting_menu.leagues_center {
  margin-right: 110px;
}

/* Responsive styles For Mobile */
@media (max-width: 1024px) {
  .leagues_setting_menu.leagues_center {
    margin-right: 0;
  }
}

.leagues_setting_dropdown {
  left: 198px;
}

@media (max-width: 768px) {
  .leagues_setting_dropdown {
    left: 0px;
  }

  .col-12.leagues_allmenu.extra-division .buttons {
    padding-left: 0px !important;
  }

  .extra-division .buttons .add-player {
    margin-top: 10px !important;
  }

  .dropdown-menu.fixtures-cat {
    left: 100px !important;
    top: 370px !important;
  }
}

.col-12.leagues_allmenu.extra-division .buttons {
  padding-left: 18px;
}

p.division-name-text {
  margin-left: 0px;
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1pxe;
}

.divisions_setting_dropdown {
  left: 70px;
}

.divisions_setting_menu.division_center {
  margin-right: 10px;
}

.leagues_dropdown a,
.leagues_setting_dropdown a,
.divisions_setting_dropdown a {
  color: #242f41;
}

.leagues_dropdown.show,
.leagues_setting_dropdown.show,
.divisions_setting_dropdown.show {
  display: flex;
}

.divisions_setting_menu::after,
.leagues_menu::after,
.leagues_setting_menu::after {
  display: inline-block;
  margin-left: 1em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.4em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
  transition: 0.3s linear ease-in-out;
}

.leagues_menu.down::after,
.leagues_setting_menu.down::after {
  transform: rotate(180deg);
}

.editmyLeagueModal .modal-dialog {
  max-width: 90% !important;
}

#create_new_leagues .modal-dialog {
  max-width: 700px;
}

#create_new_leagues .form-group.flex {
  display: flex;
}

.edit-leagues-dates {
  display: flex;
  align-items: center;
  max-width: 500px;
  justify-content: center;
  margin: 0 auto;
  gap: 5px;
}

.custom-control.custom-checkbox.mb10 {
  display: flex;
  justify-content: space-between;
}

.custom-control.custom-checkbox.mb10 .float-right {
  text-align: right;
  margin-left: auto;
}

.savebutton,
.range-close-btn {
  border: 1px solid #2dce8a;
  background: #2dce8a;
  color: #fff;
  border-radius: 5px;
  padding: 5px 10px;
}

.savebutton:hover,
.range-close-btn:hover {
  border: 1px solid #2dce8a;
  background: transparent;
  color: #2dce8a;
}

.edit-leagues-dates p {
  margin: 0;
}

.tab-divider-f .swap {
  cursor: pointer;
}

.tab-divider-f .swap.rotated {
  transform: rotate(180deg);
  transition-duration: 2s;
  transition-timing-function: extra;
  transition-delay: 0.5s;
}

.type-of-league .col-6 {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}

.type-of-league input[type="radio"] {
  margin: 0;
  width: 20px;
  height: 20px;
}

.type-of-league span {
  align-items: center;
  margin: 0;
  display: flex;
  margin-bottom: 1em;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.col-12.leagues_allmenu {
  margin-bottom: 1em;
  position: relative;
}

.col-12.leagues_allmenu .league-range,
.col-12.leagues_allmenu .division-name {
  margin: 0 10% 0 auto;
  display: flex;
  align-items: center;
}

.col-12.leagues_allmenu.extra-division .division-name {
  margin: 0;
}

@media (max-width: 600px) {
  .col-12.leagues_allmenu.extra-division .division-name {
    margin-top: 50px;
  }
}

.col-12.leagues_allmenu.extra-division .league-range {
  flex: 1;
  text-align: center;
}

.col-12.leagues_allmenu .league-range.division_date {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 13%;
}

.division-date-range {
  margin: 0;
}

@media (min-width: 769px) {
  .division-date-range {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.division-date-range.hide-old {
  display: none;
}

.edit-division-name {
  display: flex;
  align-items: center;
  gap: 5px;
}

.col-12.leagues-table {
  max-width: 95%;
  margin-left: auto;
  margin-bottom: 50px;
  padding-right: 0px;
}

.col-12.leagues-table.fixtures {
  max-width: 100%;
}

.col-12.history-table {
  max-width: 100%;
  margin-bottom: 50px;
}

.col-12.history-name p {
  background-color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: #4c6ec5;
}

.col-12.history-table table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.col-12.history-table table thead tr th {
  padding: 10px;
  background: #242f41;
  overflow: hidden;
  color: #fff;
  font-size: 15px;
}

.col-12.history-table table tbody tr td {
  /*    border: 1px solid #ddd;*/
  padding: 10px;
}

.col-12.leagues-table.team-styled {
  max-width: 60%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.col-12.leagues-table.round-robin.new_division {
  max-width: 95%;
  margin-top: 30px;
  margin-left: auto;
  padding: 0;
}

.new_division .league-delete-btn {
  left: -60px;
}

.new_division .league-add-btn {
  left: -59px;
}

.new_division .league-add-division {
  left: 83px;
}

.col-12.leagues_allmenu {
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  line-height: 1;
  padding-left: 70px;
}

.col-12.leagues_allmenu a.delete-btn {
  margin-left: -12px;
  margin-right: 10px;
}

#create_new_leagues + .modal-footer button.btn.btn-primary {
  padding: 12px 25px;
  font-size: 12px;
  transition: all 0.5s ease-in;
}

.edit-check-league {
  height: 18px !important;
  width: 22px !important;
  display: inline-block;
  min-width: 0 !important;
  max-width: 24px !important;
}

.col-12.leagues-table table {
  border-collapse: collapse;
  width: 99%;
  /*max-width: 1240px;*/
  text-align: center;
  border-radius: 10px;
  background: #fff;
}

.col-12.leagues-table table thead tr th {
  padding: 10px;
  background: #242f41;
  overflow: hidden;
  color: #fff;
  font-size: 15px;
}

.col-12.leagues-table table.leagues thead tr th:first-child,
.col-12.leagues-table table.leagues tbody tr td:first-child {
  background: var(--body-bg-color);
  border-color: var(--body-bg-color);
  width: 41px !important;
  left: -1px;
  position: relative;
}

.col-12.leagues-table table.leagues thead tr th:first-child input,
.col-12.leagues-table table.leagues tbody tr td:first-child input {
  width: 18px !important;
  height: 18px;
}

.col-12.leagues-table table tbody tr td {
  border: 1px solid #ddd;
  padding: 5px 0;
  cursor: default;
  position: relative;
  outline: none;
  min-width: 40px;
  gap: 0;
}

.col-12.leagues-table table tbody tr td.active {
  border-color: #000;
  border-width: 2px;
}

.col-12.leagues-table table tbody tr td:nth-child(1) {
  min-width: 10px;
}

.col-12.leagues-table table.leagues tbody tr td:nth-child(2) {
  width: 20px !important;
}

.col-12.leagues-table table tbody tr td .edit-popup-wrapper {
  display: none;
  width: 150px;
  min-height: 100px;
  background-color: #fff;
  position: absolute;
  padding: 10px;
  text-align: left;
  z-index: 9;
  left: 5px;
  top: 100%;
  box-shadow: 2px 2px 5px #005983;
}

#browser {
  -webkit-appearance: none;
  margin: 0;
}

.archive_clone_popup .modal-dialog {
  max-width: 1020px !important;
}

.archive_clone_popup .modal-dialog .dropdown-menu-header {
  display: flex;
  padding: 0;
}

.archive_clone_popup .modal-dialog .dropdown-menu-header div {
  width: 16.66%;
  border: 1px solid #ddd;
  padding: 5px;
  font-size: 12px;
}

.archive_clone_popup .modal-dialog .dropdown-menu-header.heading-title div {
  font-weight: 600;
  padding: 10px;
  background: #242f41;
  color: #fff;
  border: none;
  text-align: center;
}

#browser:hover {
  appearance: none;
}

.col-12.leagues-table table tbody tr td .edit-popup-wrapper.active {
  display: block;
}

.col-12.leagues-table table tbody tr td .edit-popup-wrapper li {
  color: #212121;
  margin-bottom: 10px;
}

/* ----Arun------*/
.col-12.leagues-table table tbody tr td .dropdown__select {
  display: block;
  background: #242f41;
  width: 150px;
  border-radius: 5px;
}

.col-12.leagues-table table tbody tr td .dropdown__select li {
  color: #fff;
  box-sizing: border-box;
  padding: 5px;
  text-align: left;
}

.col-12.leagues-table
  table
  tbody
  tr
  td
  .col-12.leagues-table
  table
  tbody
  tr
  td
  datalist {
  position: absolute;
  background-color: black;
}

.col-12.leagues-table table tbody tr td img {
  cursor: pointer;
}

/* .pen_delete.pen_hide {
    display: none;
 } */
img.pen_delete.pen_hide {
  margin-right: 10px;
  display: none;
}

.col-12.leagues-table table tbody tr td.highlighted {
  background: #242f41;
  color: #fff;
}

.col-12.leagues-table table thead tr th.tab-divider,
.col-12.leagues-table table tbody tr th.tab-divider {
  background: #eaf1f7;
  padding: 10px;
}

.league-delete-btn {
  position: absolute;
  left: -50px;
  bottom: 0px;
  width: fit-content;
  background: #243041;
  border: 1px solid #243041;
  padding: 5px 10px;
  color: #fff;
}

.league-delete-btn:hover {
  border: 1px solid #243041;
  background: transparent;
  color: #243041;
}

.league-add-btn {
  position: absolute;
  left: 30px;
  bottom: -35px;
  width: fit-content;
  height: auto;
  background: #243041;
  border: 1px solid #243041;
  padding: 5px 17px;
  color: #fff;
  z-index: 32;
}

.league-add-btn:hover {
  border: 1px solid #243041;
  background: transparent;
  color: #243041;
}

.league-add-division,
.league-delete-division {
  left: 100px;
  bottom: -35px;
  padding: 5px 10px;
  position: absolute;
  width: fit-content;
  background: #243041;
  border: 1px solid #243041;
  color: #fff;
}

.league-add-division:hover,
.league-delete-division:hover {
  border: 1px solid #243041;
  background: transparent;
  color: #243041;
}

.leagues_drop_menu.f-dropdown-menu {
  position: absolute;
  width: 100%;
  max-width: 160px;
  right: 175px;
  top: 100px;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 99;
  padding: 0;
  border-radius: 10px;
  display: none;
  overflow: hidden;
}

.leagues_drop_menu.f-dropdown-menu.visible {
  display: block;
}

.leagues_drop_menu,
.fixture_drop_menu {
  padding: 10px 12px;
  color: #242f41;
  font-size: 14px;
  font-weight: 500;
}

div#leagues_dropdown {
  max-width: 110px !important;
}

.leagues_drop_menu.f-dropdown-menu li {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
}

.leagues_drop_menu.f-dropdown-menu li a {
  color: #242f41;
}

.leagues_drop_menu:hover {
  background: #f6f7f9;
}

.leagues_drop_menu.f-dropdown-menu li:hover,
.edit_leagues:hover {
  background: #eaf1f7;
}

.row.edit-leagues {
  align-items: center;
  justify-content: space-evenly;
  gap: 20px;
  margin-bottom: 20px;
}

.edit-leagues .col-6 {
  max-width: 45%;
  padding: 0;
}

.row.edit-leagues.scnd-row {
  align-items: flex-start;
  justify-content: space-evenly;
}

.form-group .edit-leagues-dates {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 10px;
}

.form-group .edit-leagues-dates p {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  color: #525f7f;
}

.leagues_points_table p {
  margin: 0;
  word-break: break-all;
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.edit-leagues .input-group.flex {
  margin-bottom: 0.7em;
  align-items: center;
}

.btn-blank {
  border: none;
  background: none;
  float: left;
  position: absolute;
  left: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #ff0000;
}

.cancel-event-btn {
  border: none;
  background: none;
  left: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #ff0000;
}

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.joint-footer-btns {
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-blank .fa-trash {
  margin-right: 10px;
}
.cancel-event-btn .fa-trash {
  margin-right: 10px;
}
.points-data {
  margin-left: auto;
}

.points-data select {
  word-wrap: normal;
  min-width: 55px;
}

.edit-league-settings li {
  margin-bottom: 0.5em;
}

/* .edit-league-settings li select,
.edit-league-settings li input, */
.input-group.flex.last-points select {
  position: absolute;
  right: 0;
  min-width: 100px;
  border: 1px solid #aaaaaa;
  padding: 5px 10px;
}

.editing .pullright {
  display: none;
}

.pen_edit.pen_hide {
  display: none !important;
}

.hidden-button {
  display: none;
}

.leagues_allmenu .division-name p {
  margin: 0;
}

.row.division-name {
  align-items: center;
  gap: 5px;
}

td.fixtures-date,
td.fixtures-start-time,
td.fixtures-finish-time {
  /*	display: flex;*/
}

.fixtures .pullright.date,
.fixtures .pullright.time {
  display: inline;
}

.division-name-text.hide-old,
.pullright.hide-old,
.edit-leagues-dates.hide-old,
.fixtures-date .hide-old,
.fixtures-start-time .hide-old,
.fixtures-finish-time .hide-old {
  display: none;
}

.league_division_name.hidden-item {
  display: none;
}

.editor.save.hidden-item,
.editor.close.hidden-item {
  display: none;
}

.player-name-td {
  display: flex;
  justify-content: center;
  /*    border: 0 !important;*/
  margin: 0 !important;
  padding: 0;
  gap: 5px;
  align-items: center;
}

/* Set the minimum width for the select element */
.select-container select {
  min-width: 100px;
}

/* Add space between text and select */
.edit-league-settings li {
  display: flex;
  gap: 5px;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 27px;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
  color: #8c8c8c;
}

.input-group.flex.last-points {
  display: flex;
  /*    justify-content: space-between;*/
  align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #8c8c8c;
}

/* Allow text to wrap down if it overlaps the select area */
.edit-league-settings li label {
  max-width: 300px;
  white-space: normal;
  word-wrap: break-word;
  /* margin-right: 50px; */
}

.form-control-label.edit-league-title {
  font-size: 18px;
  margin-bottom: 1em;
}

.scnd-row .input-group.flex .form-control-label {
  color: #8c8c8c;
  font-size: 18px;
  font-weight: 500;
  cursor: default;
}

.bonus-points {
  /* position: absolute; */
  right: 0;
}

.edit-leagues .form-group .form-control-label {
  font-size: 18px;
}

#editmyLeagueModal .modal-title {
  font-weight: 600;
}

.round-robin .col-12.leagues_allmenu {
  margin: 0;
}

.round-robin .right_side {
  position: absolute;
  right: 0;
  top: 10px;
}

/**/
.dropdown-menu.leagues-cat .leagues-full-list {
  height: 250px;
  overflow: hidden;
  overflow-y: overlay;
}

.dropdown-menu.timetables-cat .timetable-full-list {
  height: 160px;
  overflow: hidden;
  overflow-y: overlay;
}

.dropdown-menu.timetables-cat .timetable-full-list::-webkit-scrollbar,
.dropdown-menu.leagues-cat .leagues-full-list::-webkit-scrollbar,
.dropdown-menu.fixtures-cat .leagues-full-list::-webkit-scrollbar {
  width: 3px;
}

.timetables-cat div a .timetables-status,
.timetable-league .for-timetables .timetables-status,
#myarchiveDiv .timetables-status,
.leagues-cat div a .leagues-status,
.fixtures-cat div a .leagues-status,
#myarchiveDivLeagues .leagues-status {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 0;
  margin-right: 10px;
}

.timetables-cat div a .timetables-status.active,
.timetable-league .for-timetables .timetables-status.active,
#myarchiveDiv .timetables-status.active,
.leagues-cat div a .leagues-status,
.fixtures-cat div a .leagues-status,
#myarchiveDivLeagues .leagues-status {
  background: #00b732;
}

.timetables-cat div a .timetables-status.inactive,
#myarchiveDiv .timetables-status.inactive,
.leagues-cat div a .leagues-status.inactive,
.fixtures-cat div a .leagues-status.inactive,
#myarchiveDivLeagues .leagues-status.inactive {
  background: #eaf1f7;
}

.dropdown-menu-header {
  padding: 8px 10px;
}

.create-timetable {
  cursor: pointer;
}

.createtimetable .form-group.flex,
#addnewmodal .form-group.flex {
  display: flex;
  align-items: center;
}

.createtimetable input[type="checkbox"],
#addnewmodal input#check_recuring,
input.ongoing {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-top: 0;
  flex: none;
}

.accordion {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.accordion button {
  padding: 10px;
  font-weight: 600;
  background: #eaf1f7;
  color: #4c6ec5;
  cursor: pointer;
  border: none;
  text-align: left;
}

.row.centre-mdn {
  align-items: center;
}

input#ongoing {
  width: 25px;
  height: 25px;
  display: inline-block;
  flex: none;
}

.input-group.flex.recurringEvnt {
  margin-bottom: 10px;
  gap: 5px;
}

.not_recurring .input-group.flex {
  align-items: center;
  gap: 5px;
}

.createtimetable input[type="checkbox"] + label:before {
  display: none;
}

.edittimetable input[type="checkbox"] {
  display: block;
}

#addnewmodal input[type="checkbox"] {
  display: block;
}

#addnewmodal input[type="checkbox"] + label:before {
  display: none;
}

.input-group-addon {
  display: -ms-flexbox;
  position: absolute;
  float: right;
  right: 0;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.575rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #e3e5e6;
  border-radius: 0;
}

.timePicker::-webkit-calendar-picker-indicator {
  content: "";
}

.form-group.flex.radiolabel input {
  width: 15px;
  height: 15px;
  flex: none;
}

.form-group.flex.radiolabel .input-group {
  align-items: center;
  gap: 10px;
}

#addnewmodal .fa.fa-clock-o:before {
  content: "\f017";
  font-size: 18px;
  color: #495057;
}

.not_recurring,
.not_recurringg {
  display: none;
}

.longer-events {
  display: none;
}

.not_recurring.show {
  display: block;
}

.not_recurring input[type="checkbox"] {
  display: block;
}

a.pullright {
  float: right !important;
  cursor: pointer;
}

.timetables-cat .createtimetable,
.leagues-cat .createleagues {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 15px;
  background-color: #4c6ec5;
}

.with-nav .table-wrapper {
  margin: 0;
  width: 100%;
  background-color: #fff;
  /*    overflow: hidden;*/
  /*    box-shadow: 0px 35px 50px rgba( 0, 0, 0, 0.2 );*/
}

.with-nav .table-wrapper .top-timetables {
  width: 100%;
  padding: 10px;
  margin: 0;
  justify-content: space-between;
  align-items: center;
  background-color: #242f41;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.with-nav .table-wrapper .top-timetables .col-md-7 .row {
  width: 100%;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 30px;
}

.with-nav .table-wrapper .row.top-timetables .col-md-2 {
  justify-content: flex-end;
  display: flex;
}

.top-timetables label {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  padding-right: 20px;
}

/*.top-timetables .input-group.js_datetimepicker {
    width: 25%;
    max-width: 100%;
}

.select-filter-group {
    width: 45%;
    max-width: 100%;
}
*/
.button-action-area {
  display: flex;
  gap: 30px;
  max-width: 330px;
  float: right;
  margin: 0;
}

.random_user {
  width: 25%;
}

.rn_userheader .row.selectableopt {
  margin: 0;
  gap: 20px;
  width: 500px;
}

.back-button-tt {
  color: #fff;
  font-size: 12px;
  left: 10px;
  opacity: 0.4;
  position: absolute;
  top: 10px;
  transition: all 0.5s;
  color: #fff;
  left: 10px;
  opacity: 0.4;
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  float: left;
  margin-right: 5px;
  padding: 4px 8px;
  text-align: center;
  transition: all 0.5s;
}

.back-button-tt .fa-arrow-left:before {
  color: #fff;
}

.profile-cover-wrapper:hover .back-button-tt {
  opacity: 1;
}

.back-button-tt:hover {
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

/* .event_title {
  font-size: 20px;
  font-weight: 500;
} */

.top-timetables .input-group.js_datetimepicker .datetimepicker-input {
  background: transparent;
  border: 0;
  color: #fff;
  max-width: 130px;
  text-align: center;
  cursor: pointer;
}

.js_datetimepickerr {
  padding-left: 0px;
}

.top-timetables .input-group-text {
  background: transparent;
  border: 0;
  color: #4c6ec5;
  font-size: 22px;
  padding: 0;
}

.top-timetables .input-group-text .fa-angle-right,
.top-timetables .input-group-text .fa-angle-left {
  color: #fff;
  cursor: pointer;
}

.selectableopt .input-field {
  display: flex;
  align-items: center;
  flex: 0 0 45%;
}

.selectBox {
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
}

.row.selectableopt {
  /* justify-content: center; */
  margin: 0;
  gap: 20px;
}

.row.selectableopt .mx-wdth {
  max-width: 200px !important;
}

.selectBox.show .dropdown-menu {
  display: block;
  left: 100px;
}

.recurringEvnt + .not_recurring {
  display: block;
}

.not_recurringg .input-group.flex {
  align-items: center;
}

.form-group.flex.col-md-6 {
  margin: 0;
}

.not_recurringg input[type="checkbox"] + label {
  margin: 0;
  padding: 0.2em 0.4em;
}

.form-group.flex-recurring.not_recurringg {
  margin-top: 10px;
}

input.ongoing {
  margin: 0;
  padding: 0;
  margin-right: 5px;
}

.flex.col-md-6 .input-group {
  align-items: center;
}

.modal.modalAddNewActivity,
.modal.modalAddNewLocation {
  z-index: 9999999;
  padding-left: 0 !important;
  padding-right: 25px;
}

.selectableopt .createtimetable {
  width: 100%;
  background-color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  max-width: 150px;
}

.selectableopt .createtimetable a {
  font-size: 18px;
}

.selectableopt .dropdown-menu.show {
  display: block;
  position: absolute;
  left: 100px;
}

.top-timetables select {
  border-radius: 5px;
  padding: 10px 0;
  width: 100%;
  max-width: 150px;
  text-align: center;
}

.top-timetables .add_eventbtn,
.top-timetables .edit_eventbtn {
  background-color: #4c6ec5;
  padding: 10px 20px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  width: 120px;
}

.blockss button {
  border: 0;
  background: transparent;
}

.fl-table {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  font-size: 12px;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  background-color: white;
  overflow: hidden;
}

.fl-table form {
  align-items: center;
}

.datepicker_table {
  max-width: 150px !important;
}

.select-filter-group .mx-wdth {
  max-width: 300px;
}

.panel-photos .fl-table tr td {
  white-space: nowrap;
}

.fl-table tbody tr:nth-of-type(odd),
.fl-tables tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.fl-table tbody tr:hover,
.fl-tables tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.fl-table td,
.fl-table th {
  text-align: left;
  padding: 0.75rem;
}

.fl-tables td,
.fl-tables th {
  text-align: center;
  padding: 0.75rem;
}

.fl-table td,
.fl-tables td {
  border-right: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.fl-table td:nth-child(1) {
  width: 100px;
}

td.abc {
  width: 28ch;
  overflow-wrap: break-word;
}

.fl-table td:nth-child(2) {
  width: 165px;
}

.fl-tables thead {
  background-color: #242f41;
  color: #fff;
  font-size: 14px;
}

.fl-tables tbody td {
  font-size: 13px;
  font-weight: 500;
}

.fl-table td .more-details {
  display: none;
  position: absolute;
  width: 100%;
  max-width: 250px;
  text-align: left;
  background-color: #4c6ec5;
  font-weight: 300;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  white-space: normal;
}

.more-details svg {
  width: 5px;
  fill: #fff;
}

/* Chrome, Safari, Edge, Opera */

.modal-content input::-webkit-outer-spin-button,
.modal-content input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.modal-content input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.ajax_timetable122 {
  font-size: 14px;
  display: flex;
  align-items: center;
}

.dropdown-menu-header a {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.timetable-league .dropdown-menu-header {
  display: flex;
  justify-content: space-between;
}

.for-timetables {
  width: 100%;
}

.main-table-header {
  width: 100%;
}

th.center {
  text-align: center;
}

.fl-tables {
  border-radius: 10px;
  font-size: 12px;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  background-color: white;
  overflow: hidden;
}

.fl-table td:hover .more-details {
  display: block;
  transition: 0.2s linear ease-in-out;
}

.edit_popup_btn {
  background: #4c6ec5;
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 10px 0;
  width: 100%;
  text-align: center;
  outline: none;
  border: none;
}

.fl-table thead th {
  color: #000;
  background: #ffffff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  min-width: 140px;
  text-align: center;
}

.fl-table td button {
  background: transparent;
  border: 0;
}

.fl-table td button.book-btn {
  background: #4c6ec5 !important;
  color: #fff;
  border-radius: 5px;
  width: 100%;
  max-width: 90px;
  font-size: 14px;
  cursor: pointer;
}

.new-timetables {
  height: 200px;
  overflow: hidden;
  overflow-y: scroll;
}

.new-timetables ::-webkit-scrollbar {
  height: 8px;
  visibility: hidden;
  width: 8px;
}

.fl-table td button.book-btn.booked {
  background: #2dce89 !important;
  color: #fff;
  border-radius: 5px;
  width: 100%;
  max-width: 75px;
  font-size: 14px;
  cursor: pointer;
}

.fl-table td button.book-btn:hover {
  background: #2dce89 !important;
  transition: 0.3s linear ease-in-out;
}

.mymodalevnt span.note {
  color: #f5365c;
  padding-right: 5px;
}

.mymodalevnt p {
  font-weight: 600;
  color: #565a5e;
}

.mymodalpolicy h2 {
  font-size: 14px;
  line-height: 24px;
}

.mymodalpolicy ul {
  width: 100%;
  max-width: 400px;
}

.mymodalpolicy p {
  font-weight: 600;
  color: #565a5e;
}

.mymodalpolicy input[type="radio"] {
  float: right;
  border: 0.1em solid #ddd;
  border-radius: 0 !important;
  display: flex;
  width: 1.2em !important;
  height: 1.2em;
  padding-left: 0;
  padding-bottom: 0;
  margin-top: 0.2em;
  margin-right: 0.2em;
  margin-bottom: 0.2em;
  vertical-align: unset;
  color: transparent;
  transition: 0.2s;
}

.color1 {
  background-color: #00af50;
}

.color2 {
  background-color: #ffff00;
}

.color3 {
  background-color: #fe0000;
}

.booked {
  background-color: #00af50;
  color: #fff;
  text-align: center !important;
}

.book-inactivebtn {
  background: gray !important;
  border-radius: 5px;
  width: 100%;
  max-width: 90px;
  font-size: 14px;
  cursor: not-allowed;
  color: #fff;
}

.going {
  background-color: #ffff00;
  text-align: center !important;
}

.interested {
  background-color: #0170c1;
  color: #fff;
  text-align: center !important;
}

.friendsimg {
  max-width: 90px;
  width: 100%;
}

input[type="checkbox"] + label {
  display: block;
  margin: 0;
  cursor: pointer;
  padding: 0;
}

input[type="checkbox"] {
  display: block;
  border: 0.1em solid #000;
  border-radius: 0.2em;
  display: inline-block;
  width: 1.2em !important;
  height: 1.2em;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 0.2em;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
  flex: unset !important;
}

.form-control.checkbox {
  width: 3em !important;
  height: 2.5em;
}

.custom-select-box .wrap label:first-child {
  margin-bottom: 0px;
}

.custom-select-box input[type="checkbox"] {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.wrapper-box .col-12.col-11.leagues-table.team-styled.userSelectedTwo {
  width: calc(100% - 80px);
  margin-left: auto;
  max-width: 100%;
}

.form-group.agree-flexed {
  display: flex;
  gap: 5px;
}

.form-group.agree-flexed label {
  cursor: default;
}

.agreement-card {
  padding: 30px;
}

.agreement-card p {
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}

.agreement-card h2 {
  font-size: 18px;
  line-height: 28px;
}

.agreement-card ul {
  display: flex;
  flex-direction: column;
  text-align: left;
  list-style: decimal;
  width: 100%;
  max-width: 500px;
  margin-bottom: 30px;
}

.agreement-card ul li {
  display: list-item;
  list-style-position: inside;
  font-size: 16px;
  line-height: 26px;
}

.agreement-card ul li:before {
  content: "";
  margin-left: 0.5rem;
}

.agreement-card input[type="radio"] {
  float: right;
  border: 0.1em solid #ddd;
  border-radius: 0 !important;
  display: flex;
  width: 1.2em !important;
  height: 1.2em;
  padding-left: 0;
  padding-bottom: 0;
  margin-top: 0.2em;
  margin-right: 0.2em;
  margin-bottom: 0.2em;
  vertical-align: unset;
  color: transparent;
  transition: 0.2s;
}

.agreement-card textarea {
  width: 100%;
}

.fa-file-lines:before {
  content: "\f15c";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-size: 14px;
  padding: 0 2px;
}

input[type="checkbox"] + label:active:before {
  transform: scale(0);
}

input[type="checkbox"]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}

input[type="checkbox"]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

.customDropdown .dropdowns small {
  font-size: 18px;
  margin-top: 8px;
  display: block;
  text-align: right;
  color: #ccc;
}

.customDropdown .dropdowns .svg-container {
  margin-left: 12px;
  margin-bottom: 10px;
}

.customDropdown .dropdowns:after {
  content: "";
  position: absolute;
  right: 2px;
  top: 90%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 7.5px 0 7.5px;
  border-color: #ffffff transparent transparent transparent;
}

.customDropdown ul {
  position: absolute;
  left: 0;
  top: 65px;
  background-color: #fff;
  padding: 10px 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
  border-radius: 0.25rem;
  min-width: 200px;
  z-index: 4;
}

.customDropdown ul.show {
  visibility: visible;
  opacity: 1;
}

.customDropdown ul li a {
  padding: 9px 16px;
}

.customDropdown ul li:last-child {
  margin-bottom: 0;
}

.userListType2 {
  box-shadow: 0 0 5px #242f41 !important;
  position: absolute;
  margin-left: 5px !important;
  margin-top: 10px;
  top: 28px !important;
  left: 0px !important;
  z-index: 99999999;
  border-radius: 4px !important;
  border: transparent !important;
}

.userListType2 ul {
  margin: 0px !important;
}

.userListType2 ul .getName {
  padding: 5px;
  border-radius: 5px;
}

.customDropdown ul li a {
  color: #212529;
  font-size: 14px;
  display: inline-block;
  width: 100%;
}

.night-mode .customDropdown ul li a {
  color: #dfdfdf !important;
}

.customDropdown ul li a:hover,
ul.dropdown-menu a.dropdown-item:hover {
  color: #fff !important;
  background-color: #4b6fc4;
}

.container {
  max-width: 100% !important;
}

.searchDrop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header .search-wrapper {
  width: calc(100% - 0px);
}

.customNavWrap {
  float: left;
}

.paymentBox {
  padding: 50px 50px 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.01);
  max-width: 540px;
}

.paymentBox li {
  margin-bottom: 20px;
}

.paymentBox li:last-of-type {
  margin-bottom: 0px;
}

.paymentBox li p {
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 14px;
  color: #2a3440;
}

.paymentBox li h6 {
  margin-bottom: 0;
  color: #000;
}

.paymentBox li a button:first-of-type {
  padding: 12px 20px;
  background-color: #4c6ec5;
  border: solid 1px #4c6ec5;
  border-radius: 6px;
  color: #fff;
  width: 100%;
  text-align: center;
  display: inline-block;
  transition: all 0.25s ease;
}

.paymentBox li a button:first-of-type:hover {
  background-color: #fff;
  color: #4c6ec5;
}

.paymentBox li a:nth-of-type(2) button {
  padding: 12px 20px;
  background-color: #fff;
  color: #4c6ec5;
  width: 100%;
  text-align: center;
  display: inline-block;
  transition: all 0.25s ease;
  border: none;
}

.paymentBox li a:nth-of-type(2) button:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .sml-scr-mt50 {
    margin-top: 50px !important;
  }
  .row.footer {
    text-align: center;
  }

  .mt20 {
    margin-top: 60px !important;
  }

  .searchDrop + .col-md-5.col-lg-4,
  .searchDrop {
    background: #2b354c;
  }

  .searchDrop {
    padding: 0;
  }

  .navbar-wrapper > ul > li > a {
    margin-top: 0;
  }

  .customNavWrap {
    float: none;
  }

  .col-md-4.col-lg-3.d-none.d-md-block {
    display: block !important;
  }

  .home-dropdown-mob {
    visibility: hidden;
  }

  .customDropdown {
    position: absolute;
    top: 85px;
    left: 55px;
    z-index: 999;
    height: auto;
  }

  .modal.modalAddNewActivity,
  .modal.modalAddNewLocation {
    padding-right: 0;
  }

  .form-group.flex.radiolabel .input-group {
    gap: 5px;
    flex-wrap: nowrap;
  }

  .not_recurring .input-group.flex {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .input-group.flex.last-points select {
    position: static;
    right: 0;
    min-width: 100px;
    border: 1px solid #aaaaaa;
    padding: 5px 10px;
  }
  .second-select {
    margin-top: 10px;
  }
  .word-wrap-normal {
    word-wrap: normal !important;
  }

  .col-md-8.col-lg-9.offcanvas-mainbar .col-12 {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .col-md-8.col-lg-9.offcanvas-mainbar .overflow-auto-table {
    overflow-x: auto !important;
  }

  .col-md-8.col-lg-9.offcanvas-mainbar .col-12.leagues-table.fixtures {
    padding: 0 10px;
    overflow-x: auto !important;
  }

  h5.league-range.division_date {
    font-size: 1rem;
  }

  .col-12.leagues-name p {
    margin: 0;
  }

  .col-12.leagues-table table thead tr th {
    min-width: 120px;
  }

  .col-12.leagues_allmenu.extra-division .editing {
    flex-direction: row;
  }

  td.abc {
    width: 10ch;
  }

  .col-12.leagues_allmenu.extra-division .editing input {
    max-width: 200px;
    border: 0;
  }

  .editing button {
    font-size: 12px;
    font-weight: 400;
  }

  .leagues_allmenu .right_side {
    display: flex;
    float: unset;
    gap: 10px;
    position: relative;
    right: 0;
  }

  .col-12.leagues-table {
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .leagues_points_table .editing {
    flex-wrap: wrap;
  }

  .league-delete-btn,
  .league-add-btn,
  .league-add-division {
    position: relative;
    bottom: 5px;
    left: 0;
  }

  .col-12.leagues-table table {
    margin-top: 10px;
  }

  .with-icon.with-nav.timetables {
    display: table;
  }

  .main-table-header th {
    padding-right: 10px;
    min-width: 175px;
  }

  .main-table-header th:nth-child(2) {
    min-width: 350px;
  }

  .top-timetables .add_eventbtn,
  .top-timetables .edit_eventbtn {
    width: 130px;
  }

  .row.selectableopt {
    flex-wrap: nowrap;
  }

  .top-timetables label {
    font-size: 12px;
    padding-right: 10px;
  }

  .dropdown-menu.timetables-cat,
  .dropdown-menu.leagues-cat {
    top: 370px;
    left: 55px;
  }

  #timetable_edit tr {
    display: flex;
    align-items: center;
  }

  .row.edit-leagues {
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
  }

  .edit-leagues .form-group {
    width: 100%;
  }

  .edit-leagues .col-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .fl-table td:nth-child(1) {
    width: 60px;
  }

  .fl-table td,
  .fl-tables td {
    font-size: 12px;
  }

  .fl-table thead th {
    font-size: 12px;
  }

  .top-timetables .input-group.js_datetimepicker .datetimepicker-input {
    max-width: 125px;
    font-size: 0.8em;
  }

  .fl-table thead th:nth-of-type(3n) {
    width: 95px;
  }

  .row.selectableopt {
    gap: 40px;
  }

  .fl-table thead th:nth-of-type(4n) {
    width: 115px;
  }

  .top-timetables select {
    border-radius: 5px;
    padding: 5px 0;
    width: 100%;
    max-width: 90px;
    text-align: center;
  }

  .top-timetables .add_eventbtn,
  .top-timetables .edit_eventbtn {
    font-size: 12px;
    width: 100px;
    padding: 10px;
  }

  .fl-table thead th:nth-of-type(2n) {
    width: 200px;
  }

  .row.selectableopt {
    gap: 40px;
  }

  .fl-table thead th:nth-of-type(4n) {
    width: 130px;
  }

  .fl-table thead th:nth-of-type(5n) {
    width: 160px;
  }

  .back-button-tt {
    font-size: 16px;
    top: 15px;
    left: 15px;
  }

  .pop-up-content .box-wrapper {
    gap: 20px;
  }

  #mySelecttwo {
    right: 0 !important;
    top: 40px;
  }

  .input-group.last-points {
    margin-bottom: 60px !important;
  }
}

@media (max-width: 480px) {
  .pop-up-content .box-wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }

  .pop-up-content .box-wrapper .box {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .fl-table thead th:nth-of-type(2n) {
    width: 260px;
  }

  .fl-table thead th:nth-of-type(4n) {
    width: 120px;
  }

  .fl-table thead th:nth-of-type(5n) {
    width: 250px;
  }

  .dropdown-menu.timetables-cat,
  .dropdown-menu.leagues-cat {
    top: 495px;
  }

  .modal.modalAddNewActivity,
  .modal.modalAddNewLocation {
    padding: 0;
  }

  .main-table-header th:nth-child(1) {
    width: 20%;
  }

  .main-table-header th:nth-child(2) {
    width: 40%;
  }

  .main-table-header th:nth-child(3) {
    width: 30%;
  }

  .top-timetables .input-group.js_datetimepicker .datetimepicker-input {
    max-width: 200px;
  }

  .row.selectableopt {
    /*	    justify-content: space-between;*/
    margin: 0;
    gap: 10px;
  }

  .fl-table td:nth-child(2) {
    min-width: 100px;
  }

  td.abc {
    width: 10ch;
  }

  .selectableopt .input-field {
    max-width: 45%;
  }

  .top-timetables label {
    font-size: 14px;
    padding-right: 10px;
  }

  .top-timetables .add_eventbtn,
  .top-timetables .edit_eventbtn {
    padding: 10px;
    width: 100px;
    font-size: 12px;
  }

  .col-12.leagues_allmenu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .col-12.leagues-table {
    max-width: 100%;
  }

  .leagues_points_table .editing {
    flex-wrap: wrap;
  }

  .leagues_allmenu .right_side {
    position: relative;
  }

  .league-delete-btn,
  .league-add-btn,
  .league-add-division {
    position: relative;
    bottom: 10px;
    left: 0;
  }
}

@media (min-width: 1200px) and (max-width: 1280px) {
  .main-side-nav .static,
  .main-side-nav a {
    padding: 5px 10px;
  }
}

@media (min-width: 1540px) and (max-width: 1680px) {
  td.date_wdth {
    min-width: 220px;
  }
}

@media (min-width: 1080px) and (max-width: 1380px) {
  .fl-table thead th {
    min-width: auto;
  }
}

@media only screen and (max-width: 1440px) {
  .modal-dialog {
    margin: 3.75rem auto;
  }

  .fl-table td:nth-child(2) {
    width: 185px;
  }

  td.abc {
    width: 30ch;
    overflow-wrap: break-word;
  }
}

@media only screen and (min-width: 1440px) {
  .fl-table td:nth-child(2) {
    width: 185px;
  }

  td.abc {
    width: 30ch;
    overflow-wrap: break-word;
  }
}

.moreDetailTable table td {
  padding: 0px !important;
}

.moreDetailTable table td input {
  font-size: 16px;
  border: none;
  max-width: 60px;
  text-align: center;
}

@media only screen and (min-width: 1900px) {
  .fl-table td:nth-child(1) {
    width: 150px;
  }

  .fl-table td:nth-child(2) {
    width: 250px;
  }

  td.abc {
    width: 42ch;
  }
}

/* new css @D */
.player-name-td p.pullright {
  pointer-events: inherit;
  display: block !important;
  width: max-content !important;
}

.customDropdown ul li.active-dropdown a {
  font-weight: 400 !important;
}

.leagues_points_table .editing .edit-popup-wrapper.userList {
  left: 6px !important;
  margin-left: 0 !important;
}

.leagues_points_table .editing .pullright {
  display: none !important;
}

.leagues_points_table .player-name-td.editing.hidepopUp #customPopupNew {
  display: none !important;
}

.col-12.leagues-table.team-styled.userSelectedTwo {
  max-width: 90%;
}

.leagues_points_table .player-name-td .dropdown {
  display: flex;
  align-items: center;
}

.userSelectedTwo .player-name-td .dropdown {
  width: 100%;
  justify-content: center;
  margin-right: 20px;
}

.userSelectedTwo .player-name-td .dropdown .pullright {
  pointer-events: inherit;
}

.userSelectedTwo .player-name-td.editing .dropdown {
  justify-content: flex-start;
}

.leagues_points_table .player-name-td .dropdown input,
.leagues_points_table .player-name-td .dropdown button {
  margin-right: 10px;
}

.col-12.leagues-table table.customDashAdd tbody tr td.editable:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 1px;
  background: #111;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.col-12.leagues-table table.customDashAdd tbody tr td.editable.remove:after {
  display: none;
}

.userSelectedTwo .league-delete-btn {
  bottom: 0px;
}

.userSelectedTwo .league-add-btn {
  bottom: -38px;
}

.userSelectedTwo .league-add-division {
  bottom: -38px;
}

.backBtns {
  display: flex;
  align-items: center;
}

.backBtns .icon {
  width: 30px;
  height: 30px;
  background-color: #242f41;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.backBtns .icon i {
  color: #fff;
  font-size: 15px;
}

.backBtns p {
  margin-left: 10px;
  font-size: 18px;
  margin-bottom: 0;
}

/* division section */
.leagues_points_table .player-name-td input[type="text"],
.leagues_points_table .player-name-td input[type="email"],
.leagues_points_table .player-name-td button {
  display: none;
}

.leagues_points_table .player-name-td.editing .pen_edit {
  display: none;
}

.leagues_points_table .player-name-td.editing input[type="text"],
.leagues_points_table .player-name-td.editing input[type="email"],
.leagues_points_table .player-name-td.editing button {
  display: block;
}

.col-12.leagues-table table.customDashAdd tbody tr td.editable:after {
  display: block !important;
}

.col-12.leagues-table table.customDashAdd tbody tr td.editable.active:after {
  display: none !important;
}

.col-12.leagues-table table tbody tr td.score_home,
.col-12.leagues-table table tbody tr td.editable.score_away {
  background-color: #fff;
}

.col-12.leagues-table table tbody tr td.editable.score_away {
  background-color: #f2f2f2;
}

.col-12.leagues-table table tbody tr td.dp_home,
.col-12.leagues-table table tbody tr td.gd_home,
.col-12.leagues-table table tbody tr td.dp_away,
.col-12.leagues-table table tbody tr td.gd_away {
  background-color: #fff;
}

.col-12.leagues-table table tbody tr td.dp_home.active,
.col-12.leagues-table table tbody tr td.gd_home.active,
.col-12.leagues-table table tbody tr td.dp_away.active,
.col-12.leagues-table table tbody tr td.gd_away.active {
  border-color: #000;
}

.col-12.leagues-table table tbody tr td.editable {
  background-color: #f2f2f2;
}

.col-12.leagues-table table tbody tr td svg {
  cursor: move;
}

.scoreButton {
  cursor: pointer !important;
}

.close2.close {
  margin: 10px 10px;
  cursor: pointer;
}

button.btn.btn-primary.invitefriends_btn {
  max-width: 140px;
}

.col-12 .card form.js_ajax-forms > .row.card-body .col-md-9 {
  width: 50% !important;
  flex: 0 0 40%;
}
@media (max-width: 768px) {
  .col-12 .card form.js_ajax-forms > .row.card-body .col-md-9 {
    width: 100% !important;
    flex: 0 0 100%;
  }
}

.hide_input_box {
  width: 36%;
  display: none;
  margin-left: auto;
  margin-top: 5px;
}

/* popup-css */

.pop-up-content .box-wrapper {
  display: flex;
  gap: 20px;
}

.pop-up-content .box-wrapper .box {
  width: 33.33%;
}

#set_date_time .modal-footer {
  border: none;
}

#set_date_time .modal-header {
  justify-content: center;
  align-items: center;
  position: relative;
}

#set_date_time .modal-header .close {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 25px;
  font-size: 0;
  top: 25px;
}

#set_date_time .modal-header .close::after {
  height: 20px;
  width: 1px;
  content: "";
  background-color: #000;
  margin-bottom: 2px;
  transform: rotate(45deg);
  top: 0;
  left: 0;
  position: absolute;
}

#set_date_time .modal-header .close::before {
  height: 20px;
  width: 1px;
  content: "";
  background-color: #000;
  position: absolute;
  margin-bottom: 2px;
  transform: rotate(-45deg);
  top: 0;
  left: 0;
}

.editing button:hover,
button.fixtures-btn.save-btn:hover {
  border: 1px solid #4b6fc4;
  color: #4b6fc4;
}

.pop-up-content .box-wrapper .inner-box {
  border-radius: 4px;
  border: 1px solid #d1cdcd;
  padding: 10px 5px;
}

.pop-up-content .box-wrapper .box .form-control {
  width: 100%;
  border: none;
  padding: 2px;
  outline: none;
  height: 23px;
}

.pop-up-content .box-wrapper .box h4 {
  text-align: center;
  margin: 10px 0 20px;
  font-weight: 500;
  font-size: 18px;
}

#custom_popup ul h3 {
  margin: 0;
  font-weight: 500;
}

.modal-footer button.btn.btn-primary {
  border: 1px solid #4b6fc4;
  cursor: pointer;
  background: #4b6fc4;
  color: #fff;
  border-radius: 5px;
  padding: 7px 25px;
  font-size: 16px;
  transition: all 0.5s ease-in;
}

.modal-footer button.btn.btn-primary:hover {
  background-color: transparent;
  border-color: #4b6fc4;
  color: #4b6fc4;
}

.modal-footer button.btn.btn-light {
  cursor: pointer;
  border-radius: 5px;
  padding: 7px 25px;
  font-size: 16px;
  transition: all 0.5s ease-in;
}

.league_hidden {
  display: none;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.league_submenu {
  margin-top: 5px;
  padding: 0;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 4px;
  list-style-type: none;
  z-index: 1111;
  width: 100%;
}

li.side_flex > a.sidemenulink {
  width: calc(100% - 40px);
  cursor: default;
}

li.side_flex span.dropdown_lbtn {
  display: flex;
  align-items: center;
}

li.side_flex span.spn_btn {
  width: 40px;
  justify-content: end;
  cursor: pointer;
}

ul.league_submenu li.submenu-header a.create-new-league {
  text-align: center;
  background: #4c6ec5;
  color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  padding: 10px 0;
  font-size: 14px;
}

.league_submenu li a {
  margin: 0;
  padding: 5px 5px 5px 15px;
  color: #4c6ec5;
  font-size: 14px;
}

div#popup .divider,
div#timezone_popup .divider {
  padding-top: 12px;
  font-size: 24px;
  margin: 0px;
}

h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

@media (max-width: 720px) {
  h2 {
    font-size: 1.5rem;
    margin-bottom: 2px;
  }
}

form#bankTransferForm label {
  font-size: 0.9rem;
  color: #333;
  text-align: right;
  align-self: start;
}

form#bankTransferForm input,
form#bankTransferForm textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #333;
}

form#bankTransferForm textarea {
  resize: none;
  height: 40px;
}

form#bankTransferForm input:focus,
form#bankTransferForm textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 3px rgba(0, 123, 255, 0.5);
}

form#bankTransferForm .textarea-full {
  grid-column: span 2;
  height: 100px;
}

form#bankTransferForm .btn-save {
  background-color: #007bff;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
  max-width: 120px;
  margin-left: auto;
}

.btn-save:hover {
  background-color: #0056b3;
}

form#bankTransferForm input {
  margin-bottom: 20px;
}

.card-body.event_wrapper .about-list-item {
  font-weight: 600;
}

li.side_flex i.fa.fa-table {
  margin-right: 18px !important;
}

/* bank page css end here */

.divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

.line {
  flex: 1;
  height: 2px;
  background-color: #000;
  margin: 0 10px;
}

.or-text {
  font-size: 14px;
  color: black;
  text-transform: uppercase;
}

.leagues-wrapper {
  min-width: 100%;
  overflow: scroll;
  max-height: 130px;
}

::-webkit-scrollbar-track {
  background: #fff !important;
}

::-webkit-scrollbar-thumb {
  background: #5e72e4 !important;
  border-radius: 5px !important;
}

::-webkit-scrollbar {
  width: 4px;
  height: 100%;
  background: #fff;
  border-radius: 10px;
}

button#clone_league,
button#clone_league i {
  color: #4b6fc4 !important;
}

button#clone_league {
  display: flex;
  gap: 10px;
  /* position: absolute; */
  left: 185px;
  align-items: center;
}

button#delete_leagues {
  cursor: pointer;
  padding: 0px !important;
  margin-top: 0px !important;
}

.archive_clone_popup .modal-dialog .dropdown-menu-header a {
  font-weight: 500;
  white-space: normal !important;
  word-wrap: break-word;
}

.archive_clone_popup .modal-dialog .dropdown-menu-header div {
  width: 16.66%;
  border: 1px solid #ddd;
  padding: 5px;
  white-space: normal;
  font-size: 12px;
}

.archive_clone_popup .modal-dialog .dropdown-menu-header div:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}

.leagues_menu {
  z-index: 5;
}

.right_side .leagues_menu {
  margin-right: 0px;
}

.custom-dropdown-item {
  display: flex;
  align-items: center;
  padding: 5px;
  padding-left: 10px;
  justify-content: space-around;
}

.custom-dropdown-item:hover {
  background: #eaf1f7;
}

button.new-division {
  background-color: #4c6ec5;
  padding: 10px;
  color: #fff;
  border: none;
  outline: none;
  margin-bottom: 10px;
  font-size: 15px;
}

button.delete_btn {
  background-color: rgb(234, 241, 247);
  font-weight: 600;
  padding: 10px;
  border: none;
  outline: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 99999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
}

.custom-modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding-bottom: 20px;
  border: 1px solid #888;
  width: 30%;
  border-radius: 8px;
  width: 497px;
}

div#addPlayerModal2 h2 {
  border-bottom: solid 2px #dedede;
  padding: 20px;
  margin-bottom: 20px;
}

.btn-danger.close {
  border-radius: 5px !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  opacity: 1 !important;
  background-color: #f5365c !important;
  border-color: #f5365c !important;
  padding: 10px 20px !important;
  text-shadow: none;
}

.button.save {
  background: #4b6fc4 !important;
  color: white;
}

form {
  display: flex;
  flex-direction: column;
}

input[type="text"],
input[type="email"] {
  margin: 0px 0;
  padding: 10px;
  font-size: 16px;
}

button.add-player,
.custom-btn-primary,
.add-division-btn {
  background-color: #5e72e4 !important;
  border: solid 1px transparent !important;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

button.add-player:hover,
.custom-btn-primary:hover,
.add-division-btn:hover {
  background-color: #fff !important;
  color: #4c6ec5 !important;
  border: solid 1px #4c6ec5 !important;
}

.profile-pic img {
  display: block;
  margin: 10px auto;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.custom-modal-content form .row {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  margin: 0px 0px 0 20px;
}

.custom-modal-content form .row label {
  width: 25%;
  font-weight: 600;
}

.custom-modal-content form .row input {
  width: calc(100% - 30%);
  border-radius: 2px;
  border: solid 1px #dddddd;
}

.custom-modal-content h2 {
  font-size: 16px;
}

button.add-player {
  max-width: 140px;
  margin: 0 auto;
  border-radius: 2px;
  font-size: 13px;
  padding: 12px;
  border: solid 1px transparent;
}

.custom-dropdown-item button.edit-button {
  outline: none;
  border: none;
  background: transparent;
}

.custom-dropdown-item label {
  width: 70px;
  margin-left: 5px;
}

.extra-division .buttons .add-player,
.extra-division .buttons .save {
  background-color: #4c6ec5;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.5s ease-in;
  border: 1px solid #4c6ec5;
  min-width: 100px;
}

.extra-division .buttons .add-player:hover,
.extra-division .buttons .save:hover {
  background-color: #fff;
  color: #4c6ec5;
}

.extra-division {
  padding-right: 0px !important;
}

.custom-select-box .wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.custom-select-box .wrap label:first-child {
  width: 60px;
  margin-bottom: 0px;
  font-size: 10px;
  text-align: center;
}

a.delete-btn {
  font-size: 13px;
  display: flex;
  align-items: end;
  gap: 5px;
  margin-left: 30px;
}

.row.footer .col-sm-6.links {
  display: flex;
  justify-content: center;
  /* padding-right: 66px; */
}

.main-wrapper .row.footer .col-sm-6.links {
  display: flex;
  /* justify-content: right; */
}

@media (max-width: 768px) {
  .main-wrapper .row.footer .col-sm-6.links {
    margin-top: 20px !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center !important;
  }
}

.dlt-custom-modal {
  max-width: 400px;
  width: 100%;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 100px auto;
  font-family: Arial, sans-serif;
}

.dlt-custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.dlt-custom-modal-header h3 {
  margin: 0;
  font-size: 18px;
}

button.btn.btn-success {
  padding: 8px 30px;
}

#step-2 button.btn.btn-success {
  padding: 12px 34px;
}

.dlt-custom-close-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.dlt-custom-modal-body label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.dlt-custom-modal-body input {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.dlt-custom-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.custom-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}

.custom-btn-primary {
  background-color: #007bff;
  color: white;
}

.custom-btn-danger {
  background-color: #dc3545;
  color: white;
}

button.custom-close-button {
  background: transparent;
  border: none;
  font-size: 26px;
  color: #aaa;
}

.dlt-modal-wrapper {
  display: none;
  position: fixed;
  z-index: 99999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
}

.card.card-register input.form-control {
  margin: 0px;
}

.add-division-modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.add-division-modal {
  background-color: white;
  border-radius: 8px;
  width: 497px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  font-family: Arial, sans-serif;
}

.add-division-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.add-division-modal-header h3 {
  margin: 0;
  font-size: 18px;
}

.close-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.add-division-modal-body {
  margin-bottom: 20px;
}

.add-division-modal-body label {
  font-size: 14px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.add-division-modal-body input {
  width: 100%;
  padding: 8px;
  border: 1px solid #bcbcbc;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 10px;
  outline: none;
}

.division-note {
  font-size: 12px;
  color: #242f41;
  margin: 0;
}

.add-division-modal-footer {
  text-align: center;
}

.add-division-btn {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
}

.add-division-btn:hover {
  background-color: #0056b3;
}

.custom-profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto 15px;
}

.custom-profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-buttons-wrapper {
  display: flex;
  gap: 10px;
}

button.btn.btn-sm.btn-success.clearfix {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-buttons-wrapper .action-btn {
  background-color: #2dce89;
  height: 100%;
  min-height: 35px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-radius: 2px;
  cursor: pointer;
}

.profile-buttons-wrapper .action-btn > span.btn-success {
  background-color: transparent !important;
  box-shadow: none;
}

input.form-control.invitefriendsfield {
  max-width: 430px;
  margin: 0px;
  width: 100%;
}

.row.footer a.language-dropdown {
  display: none;
}

.profile-buttons-wrapper button.btn.btn-sm.btn-success {
  min-height: 35px;
}

table#customDashAdd label {
  display: inline-table;
}

.profile-buttons-wrapper .action-btn.btn-success svg#Capa_1 {
  vertical-align: baseline;
}

.action-btn .svg-container svg {
  fill: #000;
}

button.btn.btn-sm.btn-success.btn-delete.js_leave-group {
  height: 30px;
}

.modal-footer form .row {
  gap: 20px;
  margin: 0px;
}

.new-activity-footer-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

button.dlt-btn {
  outline: none;
  border: none;
  overflow: hidden;
  padding: 10px;
  background-color: #eaf1f7;
  color: #4c6ec5;
  font-weight: 600;
}

.fixtures-start-time img.pen_edit,
.fixtures-finish-time img.pen_edit {
  display: none;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-content h3 {
  margin-bottom: 20px;
}

.popup-content input {
  width: 100%;
  padding: 8px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup-content button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup-content .save-btn {
  background-color: #4caf50;
  color: white;
  margin-right: 10px;
}

.popup-content .cancel-btn {
  background-color: #f44336;
  color: white;
}

.g-recaptcha > div {
  margin: 0 auto !important;
}

.customNavWrap li.dropdown {
  display: flex;
}

.ds-flex label.button-label {
  padding: 50px 0 10px;
}

.ds-flex input {
  margin-bottom: -30px;
}

.profile-buttons-wrapper .action-btn i.fa.fa-share {
  padding-right: 5px;
}

.profile-buttons-wrapper .action-btn.btn-success {
  padding: 0px 25px;
}

.popup-container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  width: 320px;
  position: relative;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999999999999999999;
  overflow: hidden;
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #4c6ec5;
  color: #fff;
  border-bottom: 1px solid #ddd;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.popup-header h3 {
  margin: 0;
  font-size: 16px;
}

.popup-close-btn,
.timezone-close-btn {
  position: absolute;
  top: -2px;
  right: 2px;
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
}

.popup-warning {
  color: red;
  font-size: 14px;
  text-align: center;
  margin: 10px 0px;
}

.popup-warning a {
  color: red;
  text-decoration: underline;
  cursor: pointer;
}

.create-zone-btn {
  display: block;
  background-color: #2dce89;
  color: white;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0 auto 20px auto;
}

.create-zone-btn:hover {
  background-color: #eb3357;
}

.divider {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #4c6ece;
  margin-bottom: 15px;
}

.zone-selection {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 600;
}

ul.zone-list {
  max-height: 120px;
  min-height: 100%;
  overflow: scroll;
}

.zone-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding: 0 25px 15px;
}

.zone-list label {
  margin-bottom: 0;
}

.zone-list li {
  margin: 10px 0;
  display: flex;
  align-items: end;
}

.continue-btn,
.cancel-btn {
  display: block;
  background-color: #eaf1f7;
  color: #4c6ec5;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

body.popup-open {
  width: 100%;
  height: 100vh;
  position: fixed;
}

.zone-list input[type="radio"] {
  appearance: none;
  width: 15px;
  height: 15px;
  border: 2px solid #4c6ec5;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}

span.dropdown_lbtn.rotated::before,
span.dropdown_tbtn.rotated::before {
  transform: rotate(180deg);
}

.zone-list input[type="radio"]:checked {
  border-color: #4c6ec5;
}

.zone-list input[type="radio"]::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #4c6ec5;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.zone-list input[type="radio"]:checked::before {
  opacity: 1;
}

.zone-label {
  font-size: 12px;
  color: #4c6ec5;
  cursor: pointer;
}

.popup-container {
  display: none;
  transition: opacity 0.3s ease-in-out;
}

.popup-container.popup-open {
  display: block;
}

.col-md-6.input-field.equl_wdth {
  max-width: 140px;
}

button.create-zone-btn {
  margin-top: 20px;
}

ul#time1,
ul#dropme1,
ul#act {
  padding: 0px;
}

body.popup-open ul.league_submenu {
  opacity: 0.7;
}

.modal-dialog {
  max-width: 600px !important;
}

.timetable-wrapper,
.locations-wrapper,
.activity_wrapper {
  max-height: 180px;
  height: 100%;
  overflow: scroll;
}

.delete-clone-btn-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 374px) {
  .delete-clone-btn-container {
    display: block;
  }
}

@media (min-width: 355px) and (max-width: 440px) {
  .mt-for-tab {
    margin-top: 10px;
  }
}

@media (max-width: 355px) {
  .mt-publick-btn {
    margin-top: 10px !important;
  }
}

.container-static-comman {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section-static-comman {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-content-static-comman h1 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-content-static-comman p {
  font-size: 20px;
  color: #282727;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-image-static-comman {
  border-radius: 40px 0 40px 0px;
  overflow: hidden;
  background: white;
  box-shadow: 16px 16px 0px 0px #39a5ed;
}

.hero-image-static-comman img {
  width: 100%;
  display: block;
}

/* Center Section Title */
.section-title-static-comman {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin: 80px 0 60px;
  padding: 0 20px;
}

/* Features Grid */
.features-grid-static-comman {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.feature-card-static-comman {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.feature-icon-static-comman {
  width: 42px;
  height: 42px;
  background-color: #39a5ed;
  border-radius: 4px;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px 6px 10px;
}

.icon_container-static-comman img {
  width: 100%;
  height: 100%;
}

.feature-card-static-comman h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card-static-comman p {
  font-size: 16px;
  color: #282727;
  line-height: 1.7;
}

/* Alternate Sections */
.content-section-static-comman {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.content-section-static-comman.reverse {
  direction: rtl;
}

.content-section-static-comman.reverse > * {
  direction: ltr;
}

.content-text-static-comman h2 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.content-text-static-comman p {
  font-size: 20px;
  color: #282727;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section-static-comman,
  .content-section-static-comman {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }

  .content-section-static-comman.reverse {
    direction: ltr;
  }

  .hero-content-static-comman h1,
  .content-text-static-comman h2 {
    font-size: 24px;
  }

  .hero-content-static-comman p,
  .content-text-static-comman p {
    font-size: 13px;
  }

  .section-title-static-comman {
    font-size: 22px;
    margin: 60px 0 40px;
  }

  .features-grid-static-comman {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .feature-card-static-comman {
    padding: 20px;
  }

  .hero-image-static-comman,
  .content-section-static-comman img {
    order: -1;
  }
}

@media (max-width: 480px) {
  .container-static-comman {
    padding: 0 15px;
  }

  .hero-section-static-comman,
  .content-section-static-comman {
    padding: 30px 0;
  }

  .hero-content-static-comman h1,
  .content-text-static-comman h2 {
    font-size: 20px;
  }

  .hero-content-static-comman p,
  .content-text-static-comman p {
    font-size: 13px;
  }

  .section-title-static-comman {
    font-size: 18px;
    margin: 42px 0 30px;
  }
  .feature-card-static-comman p {
    font-size: 13px;
  }
  .feature-card-static-comman h3 {
    font-size: 18px;
  }
}

/* Card Wrapper */
.live_streaming_card {
  max-width: 1200px; /* Increased width */
  width: 100%;
  margin: auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 25px;
  padding: 25px;
  align-items: center;
}

/* Image Section */
.live_streaming_image {
  flex: 1.2;
}

.live_streaming_image img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

/* Content Section */
.live_streaming_content {
  flex: 1.8;
}

.live_streaming_heading {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.live_streaming_text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.live_streaming_list {
  margin: 12px 0 18px 20px;
  padding-inline-start: 0px !important;
}

.live_streaming_list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #333;
}

.highlight {
  font-weight: bold;
  margin-top: 10px;
}

.notify {
  margin-top: 18px;
  font-weight: bold;
  font-size: 1rem;
}

/* Tablet */
@media (max-width: 768px) {
  .live_streaming_card {
    flex-direction: column;
    padding: 20px;
  }

  .live_streaming_image img {
    max-height: 220px;
  }

  .live_streaming_heading {
    font-size: 1.5rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .live_streaming_heading {
    font-size: 1.3rem;
  }

  .live_streaming_text,
  .live_streaming_list li {
    font-size: 0.9rem;
  }
}
