@font-face {
    font-family:euroFighter;
    src:url(../css/eurofighter.ttf)
}

:root {
    --body-bg-color: #181818;
    --header: #212121;
    --hover: #383838;
    --border: #53535c;
    --tisk: #303030;
    --tisk-color: #9f9f9f;
    --placeholder: #d3d3d3;
    --color: #fff;
    --color-1: #2f8ada;
    --border-color: #2f8ada;
    --color-1-hover: #3f94df;
    --color2: #bc4040;
    --color2-hover: #df0202;
    --border-rad: 5px;
}


body::-webkit-scrollbar {
    width: 10px;               /* width of the entire scrollbar */
}
body::-webkit-scrollbar-thumb {
    background-color: var(--color-1);    /* color of the scroll thumb */
    border-radius: 0;       /* roundness of the scroll thumb */
    border: 0;
}

/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-1) var(--header);
}
*::-webkit-scrollbar {
    width: 10px;
}
*::-webkit-scrollbar-thumb {
    background-color: var(--color-1);
    border-radius: 0;
    border: 0;
}
  
body {
    font-family: var(--bs-font-sans-serif);
    padding-top: 70px;
    color: var(--color);
    background-color: var(--body-bg-color);
    word-break: break-all;
}

header > .text_body {
    color: var(--color);
    font-family: "Arial",sans-serif;
    font-weight: 400;
}

.disabled {
    list-style: none;
}

.pointer {
    cursor: pointer;
}

.icons {
    color: var(--color);
    background: var(--hover);
    top: 0px;
    left: 0px;
    z-index: 232;
    display: flex;
    flex-direction: column;
    position: absolute;
    margin: 5px;
    padding: 0px 5px 8px 5px;
    border-radius: var(--border-rad);
}
.icons > hr {
    margin: 2px;
}

.dropdown-menu {
    background: var(--header);
    padding: 0;
    border: none;
}
.dropdown-item {
    color: var(--color);
    padding: 10px 15px;
}
.dropdown-item:hover {
    background: var(--hover);
    color: var(--color);
}
.dropdown-divider {
    border-top: 1px solid var(--hover);
    height: 1px;
    margin: 0;
}
.menu_dropdown {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.tooltip {
  position: relative;
  display: inline-block;
  opacity: initial;
}
.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.full {
    width: 100% !important;
}

.float-right {
    float: right !important;
}

.modal-body {
    padding: 15px;
}

.greentext {
    color: #40bc4f;
    font-weight: 700
}
.reedtext {
    color: #bc4040;
    font-weight: 700
}
.hashtags {
    color: #3ea6ff;
    font-weight: 700
}
.mention {
    cursor: pointer;
    color: #3ea6ff;
    font-weight: 700
}
.mention:hover {
    color: #1b95e0;
}

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

.g-recaptcha {
    display: inline-block;
}

label, legend {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600; 
    color: var(--color-2);
}
fieldset {
    padding: 0;
    border-width: 0; 
}

input[type="checkbox"], input[type="radio"] {
    display: inline; 
}

label > .label-body {
    display: inline-block;
    margin-left: .5rem;
    font-weight: normal; 
}

a, a:hover {
    text-decoration: none;
    color: #1b95e0;
}

p {
    margin-top: 0;
    margin-bottom: 0;
}

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

h1, h2, h3, h4 {
    margin: 0;
    font-weight: 200;
}

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

.form-table-row {
    display: flex;
    margin-bottom: 30px;
}
.form-table-row > div {
    flex: 1;
}
.form-control-label {
    font-weight: 600;
    color: var(--placeholder);
    margin-bottom: 0;
}

.center {
    box-sizing: border-box;
    position: absolute;
    right: 0;
    display: flex;
    justify-content: center;
    width: 100%;    
}

.padding {
    padding: 0;
}

.text {
    overflow: hidden;
}

.m0 {
    margin: 0 !important;
}
.m10 {
    margin: 10px !important;
}


.mb0 {
    margin-bottom: 0 !important;
}
.mb5 {
    margin-bottom: 5px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}

.mt0 {
    margin-top: 0 !important;
}
.mt5 {
    margin-top: 5px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt15 {
    margin-top: 15px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mt30 {
    margin-top: 30px !important;
}

.ml15 {
    margin-left: 15px !important;
}

.mr0 {
    margin-right: 0 !important;
}
.mr5 {
    margin-right: 5px !important;
}
.mr10 {
    margin-right: 10px !important;
}
.mr15 {
    margin-right: 15px !important;
}

.p0 {
    padding: 0px !important;
}
.p10 {
    padding: 10px !important;
}
.p15 {
    padding: 15px !important;
}

.pb15 {
    padding-bottom: 15px !important;
}

.plr10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.ptb10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.pd {
    padding: 7px !important;
}
.pd15 {
    padding: 15px !important;
}

.prd50 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.btn {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 16px;
    border-radius: var(--border-rad);
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: .007px;
}
.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem;
}
.btn-primary {
    border: 1px solid var(--color-1);
    background: var(--color-1);
}
.btn-primary:hover {
    border: 1px solid var(--color-1-hover);
    background: var(--color-1-hover);
}
.btn-secondary {
    border: 1px solid #adb5bd;
    background-color: #adb5bd;
}
.btn-secondary:hover {
    border: 1px solid #aab6c2;
    background-color: #aab6c2;
}


textarea {
    resize: none;
}


.container-fluid > a > .title, .container-fluid > div > .title, .container-fluid > .title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: .007px;
}


.counter {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 2px 4px;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 3px;
}
.counter.red {
    background: var(--color-1);
}


.label {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.value {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.lv {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
}


.card-hilo > .hide_comment > .commentAvatar {
    position: relative;
    margin-right: 10px;
}
.card-hilo > .hide_comment > .commentAvatar > .anonIcon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-rad);
}
.card-hilo > .hide_comment > .commentAvatar > .color_1 {
    background: #df0202;
}
.card-hilo > .hide_comment > .commentAvatar > .color_2 {
    background: #02b13c;
}
.card-hilo > .hide_comment > .commentAvatar > .color_3 {
    background: #1545e6;
}
.card-hilo > .hide_comment > .commentAvatar > .color_4 {
    background: rgb(247, 0, 255);
}
.card-hilo > .hide_comment > .commentAvatar > .color_5 {
    background: rgb(255, 115, 0);
}
.card-hilo > .hide_comment > .commentAvatar > .color_6 {
    background: #FFcc00;
}
.card-hilo > .hide_comment > .commentAvatar > .color_7 {
    background: #fff;
    color: #000;
}
.card-hilo > .hide_comment > .commentAvatar > .color_8 {
    background: #000;
}
.card-hilo > .hide_comment > .commentAvatar > .anonIcon > .anonText {
    width: 100%;
    height: 100%;
    margin: 0;
    font-size: 0.9rem;
    font-family: monospace;
    display: flex;
    align-items: center;
    font-weight: 700;
    justify-content: center;
}
.card-hilo > .hide_comment > .commentAvatar > .anonIcon > .dados {
    font-size: 1.5rem;
    font-family: euroFighter;
}
   
.card-body{
    padding: 15px;
}
article > .files {
  float: left;
  margin-right: 15px;
  background: var(--hover);
  border-radius: var(--border-rad);
  padding: 5px;
  align-items: flex-start;
  max-width: 30%;
  min-width: 30%;
}
article > .files_hilo {
    float: left;
    margin-right: 15px;
    background: var(--hover);
    border-radius: var(--border-rad);
    padding: 5px;
    align-items: flex-start;
    max-width: 40%;
    min-width: 40%;
  }
article > .expand {
    width: inherit;
    max-width: max-content;
    float: initial;
}

.commen {
    width: 100%;
}
.commen > .comment_meta_hilo {
    padding: 15px;
    margin: 0 15px 0 0;
}
.commen > .comment_meta {
    flex-basis: 100%;
    display: flex;
    justify-content: space-between;
}
.tisk {
    background: var(--tisk);
    color: var(--tisk-color);
    font-weight: bold;
    padding: 3px 4px;
    border-radius: var(--border-rad);
    font-size: 12px;
}
.commen > .comment_reply {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    width: 100%;
    margin-top: 5px;
}
.commen > .comment_reply > a >.mention {
    font-weight: initial;
}
.commen > .comment_meta > .comment_select {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.commen > .comment_meta > .comment_select > .author {
    font-weight: 700;
    font-size: 14px;
}
.commen > .comment_meta > .comment_select > .author > .flag-img {
    width: 27px;
    transform: scale(.88);
    border-radius: var(--border-rad);
}
.commen > .comment_meta > .comment_select > .active, .commentAvatar > .active {
    background: var(--color2) !important;
}
.commen > .comment_meta > .comment_select > .active:hover, .commentAvatar > .active:hover {
    background: var(--color2-hover) !important;
}
.commen > .comment_meta > .comment_select > .code, .commentAvatar > .code {
    background: var(--color-1);
    color: var(--color);
    border-radius: var(--border-rad);
    padding: 2px 5px;
    font-size: 12px;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
}
.commen > .comment_meta > .comment_select > .code:hover, .commentAvatar > .code:hover {
    background: var(--color2);
}


/* PORTADA */
/* ------------------------------- */

.main_content {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}
.album-preview-row {
    list-style: none;
}
.album-preview {
    display: block;
    height: calc(100vw / 8);
    border-radius: var(--border-rad);
    box-shadow: 0 0 40px 0 rgba(0,0,0,.06);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: filter .5s ease-in-out,box-shadow .4s ease-in-out;

}
.album-preview-content {
    position: relative;
    margin-top: 5px;
    z-index: 0;
    display: flex;
    -webkit-box-align: stretch;
    align-items: stretch;
    box-sizing: border-box;
}
.album-preview .album-preview-image {
    width: 100%;
    height: 100%;
    border-radius: var(--border-rad);
    position: absolute;
    top: 0;
    left: 0;
}
.album-preview .album-preview-image img {
    border-radius: var(--border-rad);
}
.album-preview .album-preview-info {
    width: 100%;
    height: 100%;
    border-radius: var(--border-rad);
    box-shadow: inset 0 -120px 50px -40px rgba(0,0,0,.8);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0 10px 10px;
    position: relative;
    z-index: 2;
}
.album-preview .album-preview-info:hover {
    transition: all .5s;
    box-shadow: inset 0 -120px 50px -40px var(--hover);

}
.album-preview .album-preview-info .album-preview-title {
    font-size: 1rem;
    font-weight: 700;
}
.album-preview .album-preview-info .album-preview-text {
    font-size: .875rem;
    font-weight: 500;
}
.album-preview .album-preview-info .album-preview-text, 
.album-preview .album-preview-info .album-preview-title {
    color: var(--color);
    font-family: Rajdhani,sans-serif;
    line-height: 1em;
}
figure {
    margin: 0;
}
figure > img {
    width: 100%;
    height: 100%;
}
figure > div > img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}
figure {
    position: relative;
    width: 100%;
}
figure > div > .play, figure > .play {
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
    position: absolute;
    cursor: pointer;
    background: var(--color-1);
    padding: 5px;
    border-radius: 50%;
}
.close_video {
    left: 95%;
    top: 10%;
    margin-left: -25px;
    margin-top: -20px;
    position: absolute;
    cursor: pointer;
    background: var(--color-1) !important;
    padding: 5px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 0;
}


/* ATTACHMENTS */
/* ------------------------------- */
.attachments li {
    float: left;
    width: 64px;
    height: 64px;
    margin-right: 15px;
    margin-bottom: 1rem;
    transition: padding 0.5s;
}
.attachments li.item {
    position: relative;
    border-radius: var(--border-rad);
}
.attachments li.item img {
    width: 64px;
    height: 64px;
    border-radius: var(--border-rad);
}
.attachments li.item button {
    position: absolute;
    top: 3px;
    right: 3px;
    color: var(--color-1);
    border-radius: 50%;
    border-style: solid;
    border-width: 3px;
    width: 27px;
    height: 27px;
    opacity: 10;
}
button.close {
    background: aliceblue;
}
.close {
    line-height: 0;
}
.attachments li.item.deletable:hover button {
    display: block;
}
.attachments li.item.deletable button:hover {
    filter: alpha(opacity=100);
    opacity: 10;
    background: rgba(255, 255, 255, 0.473);
}
.attachments li.loading {
    padding-top: 22px;
    background: #f3f3f3;
    border: 1px solid #eee;
    display: none;
}
.attachments li.add {
    position: relative;
    overflow: hidden;
    padding: 20px 0 0 25px;
    color: #ddd;
    font-size: 16px;
    cursor: pointer;
    border-radius: var(--border-rad);
    border: 2px dashed #cecece;
}

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


/* MODAL */
/* ------------------------------- */
.modal-content {
    background: var(--header);
    border-radius: var(--border-rad);
}
.modal-footer {
    display: block;
    border-top: 1px solid var(--border);
}
.modal-header {
    border-bottom: 1px solid var(--border);
}
.modal-footer > * {
    margin: 0 -10px;
}
.modal-footer > button {
    margin: 0;
}


/* PUBBOX */
/* ------------------------------- */
.pp_pubbox_opt {
    display: flex;
    align-items: center;
}
.pp_pubbox_opt .nds {
    flex: 1 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    background-color: var(--body-bg-color);
    border-radius: var(--border-rad);
}
.pp_pubbox_opt .nds:last-child {
    border: 0;
}

.pp_pubbox_opt .nds .create-new-post {
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    flex: 1 100%;
    text-align: center;
    border-radius: var(--border-rad);
    color: var(--color);
    margin: 0 4px;
}

.pp_pubbox_opt .nds .create-new-post-x {
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    flex: 1 100%;
    text-align: center;
    border-radius: var(--border-rad);
    color: var(--color);
    margin: 0;
}

.pp_pubbox_opt .nds .create-new-post-x:hover {
    background-color: var(--hover);
    border-radius: var(--border-rad); 
}

.pp_pubbox_opt .nds .x-uploader {
    width: 100%;
    padding: 10px 0;
    cursor: pointer;
    flex: 1 100%;
    text-align: center;
    border-radius: var(--border-rad);
    background-color: var(--body-bg-color);
    color: var(--color);
    margin: 0 4px;
}
.pp_pubbox_opt .nds form {
    margin: 0 !important;
}
.pp_pubbox_opt .nds .x-uploader:hover {
    background-color: var(--hover);
    border-radius: var(--border-rad);
}


/* Alert
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.alert {
    font-size: 16px;
    text-align: center;
    position: relative;
    border: 1px solid transparent;
    border-radius: var(--border-rad);
}
.alert-danger {
    color: #fff;
    border-color: #f75676;
    background-color: #f75676;
}
.alert-success {
    color: #fff;
    border-color: #4fd69c; 
    background-color: #4fd69c;
}
.alert-warning {
    color: #fff;
    border-color: #fc7c5f;
    background-color: #fc7c5f;
}
.alert-post {
    color: var(--color);
    background-color: var(--header);
    font-weight: 600;
}


/* MODAL LISTA */
/* ------------------------------- */

.modal_a > li > a, .modal_a > li > div {
    display: block;
    font-weight: 500;
    padding: 15px 25px;
    text-align: center;
    background: var(--header);
    color: var(--color);
    cursor: pointer;
}
.modal_a > li > .noti {
    text-align: left;
    margin: 0 0 15px 0;
    border-radius: var(--border-rad);
}
.modal_a > li > .noti > img {
    border-radius: var(--border-rad);
}
.modal_a > li > a, .modal_a > li > div > span {
    display: block;
}
.modal_a > li > a:hover, .modal_a > li > div:hover {
    background: var(--hover);
    color: var(--color);
}
.modal_a > .border {
    border-top: none !important;
    border-bottom: 1px solid var(--border) !important;
    border-left: none !important;
    border-right: none !important;
}
.modal_a > .border_noti {
    border: none !important;
}


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


label {
    font-size: .875rem;
    font-weight: 700;
    line-height: 13px;
    color: var(--color);
    margin-bottom: 7px;
}


/* FORM */
/* ------------------------------- */

.form-control {
    height: 48px;
    outline: 0;
    background: var(--body-bg-color);
    border: none;
    border-radius: 0;
    color: var(--color);
    border-bottom: 2px solid var(--border);
    border-radius: var(--border-rad);
}
.form-control::placeholder {
    color: var(--placeholder);
    border: 0 none;
}
.form-control:focus, .form-control:hover, .form-control:active {
    color: var(--color);
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 2px solid var(--border-color);
    background: var(--body-bg-color);
}


/* CARD */
/* ------------------------------- */

.card-hilo {
    color: var(--color);
    display: flex;
    margin-bottom: 30px;
}
.card-hilo:hover {
    color: var(--color);
}
.card {
    background: var(--header);
    border: 1px solid var(--border);
    border-radius: var(--border-rad);
}
.card-header {
    background: none;
    border-bottom: none;
    padding: 20px 20px 0;
}
.card .card-header .card-title {
    color: var(--color);
    font-size: 32px;
    line-height: 1.4;
    padding: 0;
    margin: 0 0 5px 0;
    font-weight: 900;
    text-align: center;
}


/* HEADER */
/* ------------------------------- */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--header);
    z-index: 1001;
}
.main-header .logo-wrapper {
    height: 70px;
    overflow: hidden;
    word-break: break-all;
}
.main-header .logo {
    display: block;
    font-size: 25px;
    font-weight: 900;
    line-height: 70px;
    color: var(--color);
    opacity: 1;
    text-transform: uppercase;
    font-family: euroFighter;
}
.main-header .logo:hover {
    opacity: .8;
    text-decoration: none;
}
.main-header .search-wrapper .form-control {
    height: 44px;
    margin-top: 13px;
    margin-bottom: 13px;
    box-shadow: none;
    background: var(--body-bg-color);
    border: 0 none;
    border-radius: var(--border-rad);
    color: var(--color);
}
.main-header .search-wrapper .form-control::placeholder {
    color: var(--color);
}


/* side nav */

body.side_open {
    overflow-y: scroll !important;
    position: fixed;
    left: 0px;
    right: 0px;
}
body.side_open .yp_side_drawer {
    z-index: 9999;
    width: calc(100% - 56px);
    max-width: 260px;
    top: 0;
    display: block !important;
}
body.side_open .sidenav-overlay {
    opacity: 1;
    visibility: visible;
}
.sidenav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9990;
    transition: all 0.2s ease;
}

/* SIDEBAR MENU */
/* ------------------------------- */
.yp_side_drawer {
    position: fixed;
    width: 260px;
    left: 0;
    top: 70px;
    background-color: var(--header);
    bottom: 0;
    overflow: hidden;
    top: 0;
}
.yp_side_drawer > div {
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
}
.yp_side_drawer > div > ul > li.active > a {
    background-color: var(--hover);
    color: var(--color);
}
  
.yp_side_drawer > div > ul > li > a:hover, .yp_side_drawer > div > ul > li > a:hover > .hash {
    color: var(--color);
    background-color: var(--hover);
}
.yp_side_drawer hr {
    border: none;
    border-top-color: currentcolor;
    border-top-style: none;
    border-top-width: medium;
    border-top: 3px solid var(--border);
    margin: 0;
}
.title_sidebar {
    color: var(--tisk-color);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .007px;
    text-transform: uppercase;
}
.yp_side_drawer > div > ul > li > a {
    display: block;
    font-weight: 500;
    padding: 15px 16px;
    color: var(--color);
    text-decoration: none;
}
.yp_side_drawer > div > ul > li > a > .svg-container {
    margin-right: 24px;
}
.card_header {
    padding: 1rem 1rem 0.5rem 1rem;
    margin-bottom: 0;
}
.card_header > svg {
    margin-right: 10px;
}
.trending_item {
    word-break: break-word;
    display: block;
    font-size: 13px;
    padding: 0.2rem 1rem !important;
}
.hash {
    display: block;
    color: var(--color-1);
    font-weight: bold;
    font-size: 15px;
}
.frequency {
    font-size: 12px;
}
.mini-footer {
    padding: 0.2rem 1rem;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .007px;
    text-transform: uppercase;
}
.mini-footer .copyrights {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
    margin-top: 10px;
}
.mini-footer .links {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mini-footer .links a {
    color: var(--color);
}
.mini-footer .links a:hover {
    text-decoration: underline;
}
.main-header-sidebar .logo-wrapper {
    height: 70px;
    overflow: hidden;
    word-break: break-all;	
}
.main-header-sidebar .logo {
    font-size: 25px;
    font-weight: 900;
    line-height: 70px;
    color: var(--color);
    opacity: 1;
    text-transform: uppercase;
    font-family: euroFighter;
}
.logo-wrapper li {
    padding: 22px 15px 0 0;
    cursor: pointer;
}
.main-header-sidebar .logo-wrapper .d-block {
    float: left;
    position: relative;
    text-align: center;
    height: 70px;
    padding: 22px 15px 0 0;
    color: var(--color);
    cursor: pointer;
}

/* NAVBAR */
/* ------------------------------- */

.navbar-wrapper > ul > li {
    float: left;
    display: block;
    width: 14.28571428571429%;
}
.navbar-wrapper > ul > li > a {
    position: relative;
    display: block;
    text-align: center;
    color: var(--color);
    height: 50px;
    margin-top: 10px;
    padding: 15px 8px;
    line-height: 100%;
    border-radius: var(--border-rad);
    cursor: pointer;
}
.navbar-wrapper > ul > li > a:hover, .navbar-wrapper > ul > li > .active {
    background-color: var(--hover);
}
.navbar-wrapper > ul > li > .navbar_padi {
    padding: 15px;
}


/* REPORT */
/* ------------------------------- */
.report {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    line-height: inherit;
    font-size: 15px;
}

.report input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

.report:hover input ~ .checkmark {
    background-color: #ccc;
}

.report input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.report input:checked ~ .checkmark:after {
    display: block;
}

.report .checkmark:after {
    top: 7px;
    left: 7px;
    width: 7px;
    height: 7px;
    background: white;
}


/* SWITCH */
/* ------------------------------- */

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0;
  }
  .switch.sm {
    width: 30px;
    height: 17px;
  }
  .switch input {
    display: none;
  }
  .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
  }
  .switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
  }
  .switch.sm .slider:before {
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
  }
  .switch input:checked + .slider {
    background-color: var(--border-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%;
  }


/* POLL */
/* ------------------------------- */
.poll-options {
    
}
.poll-option {
    display: table-cell;
    vertical-align: top;
    position: relative;
    width: 100%;
    padding: 8px 12px;
    background-color: var(--body-bg-color);
    font-weight: 600;
    border-radius: var(--border-rad);
}
.poll-option:hover {
    cursor: pointer;
    background: var(--hover);
}
.poll-option .percentage-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--text-color-desc);
    border-radius: var(--border-rad);
}
.poll-option .custom-control-input:checked + .custom-control-label {
    color: var(--placeholder);
}
.poll-voters {
	display: table-cell;
	vertical-align: top;
	padding-left: 5px;
}
.poll-voters .more {
    width: 100%;
    padding: 8px 12px;
    background-color: var(--body-bg-color);
    font-weight: 600;
    border-radius: var(--border-rad);
    text-align: center;
    word-break: initial;
}


.page-header {
    position: relative;
    text-align: center;
    padding: 50px 15px;
    overflow: hidden;
    color: #fff;
    z-index: auto;
}


/* LOADER */
/* ------------------------------- */

.x-loader {
	text-align: center;
}

.loader {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 5px 0;
}
.loader:after {
	display: block;
	position: relative;
	width: 20px;
	height: 20px;
	-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;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border-top: 1px solid #545a6a;
	border-bottom: 1px solid #d4d4db;
	border-left: 1px solid #545a6a;
	border-right: 1px solid #d4d4db;
	content: '';
	opacity: .5;
}
.loader.loader_large:after {
	width: 40px;
	height: 40px;
}
.loader.loader_medium:after {
	width: 25px;
	height: 25px;
}
.loader.loader_small:after {
	width: 10px;
	height: 10px;
}
.loader.loader_green:after {
	opacity: 1;
	border-top: 1px solid #42a26e;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #42a26e;
	border-right: 1px solid #fff;
}
@keyframes rotate {
	0% {
		transform: rotateZ(-360deg);
		-webkit-transform: rotateZ(-360deg);
		-moz-transform: rotateZ(-360deg);
		-o-transform: rotateZ(-360deg);
	}
	100% {
		transform: rotateZ(0deg);
		-webkit-transform: rotateZ(0deg);
		-moz-transform: rotateZ(0deg);
		-o-transform: rotateZ(0deg);
	}
}
@-webkit-keyframes rotate {
	0% {
		transform: rotateZ(-360deg);
		-webkit-transform: rotateZ(-360deg);
		-moz-transform: rotateZ(-360deg);
		-o-transform: rotateZ(-360deg);
	}
	100% {
		transform: rotateZ(0deg);
		-webkit-transform: rotateZ(0deg);
		-moz-transform: rotateZ(0deg);
		-o-transform: rotateZ(0deg);
	}
}
@-moz-keyframes rotate {
	0% {
		transform: rotateZ(-360deg);
		-webkit-transform: rotateZ(-360deg);
		-moz-transform: rotateZ(-360deg);
		-o-transform: rotateZ(-360deg);
	}
	100% {
		transform: rotateZ(0deg);
		-webkit-transform: rotateZ(0deg);
		-moz-transform: rotateZ(0deg);
		-o-transform: rotateZ(0deg);
	}
}
@-o-keyframes rotate {
	0% {
		transform: rotateZ(-360deg);
		-webkit-transform: rotateZ(-360deg);
		-moz-transform: rotateZ(-360deg);
		-o-transform: rotateZ(-360deg);
	}
	100% {
		transform: rotateZ(0deg);
		-webkit-transform: rotateZ(0deg);
		-moz-transform: rotateZ(0deg);
		-o-transform: rotateZ(0deg);
	}
}


.x-hidden {
    display: none;
}

.colum {
    padding: 0 15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.table {
    width: 100%;
    color: var(--color) !important;
}
table.dataTable tbody tr {
    color: var(--color);
    background-color: var(--border) !important;
}
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
    color: var(--color) !important;
}

.list-group-item {
    background-color: var(--border) !important;
}

.post > div > .comment > .title {
    font-family: "Roboto",sans-serif;
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: bold;
    white-space: normal;
}


/* LOADING BAR */
/* ------------------------------- */

#loading-bar {
    position: fixed;
    z-index: 2147483647;
    top: 0;
    left: -6px;
    width: 0;
    height: 3px;
    background: #E8EBED;
    border-radius: 1px;
    -moz-transition: width 500ms ease-out,opacity 400ms linear;
    -ms-transition: width 500ms ease-out,opacity 400ms linear;
    -o-transition: width 500ms ease-out,opacity 400ms linear;
    -webkit-transition: width 500ms ease-out,opacity 400ms linear;
    transition: width 500ms ease-out,opacity 400ms linear;
}
#loading-bar dd, dt {
    position: absolute;
    box-shadow: #E8EBED 1px 0 6px 1px;
}
#loading-bar dd {
    opacity: .6;
    width: 20px;
    right: 0;
    clip: rect(-6px,22px,14px,10px);
}
#loading-bar dt {
    opacity: .6;
    width: 180px;
    right: -80px;
    clip: rect(-6px,90px,14px,-6px);
}


@media (min-width: 0px) {
    .post {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .attachments li.item img {
        width: 120px;
        height: 94px;
        border-radius: var(--border-rad);
    }
    .attachments li {
        width: 120px;
        height: 96px;
    }
    .attachments li.add {
        padding: 30px 0 0 35px;
        font-size: 24px;
    }
    .attachments li.loading {
        padding-top: 45px;
    }
    .navbar-wrapper {
        float: right;
    }
    .navbar-wrapper > ul > li {
        width: auto!important;
        margin-right: 2px;
    }
    .user-popover-wrapper {
        width: 400px;
        z-index: 99999;
        box-shadow: 15px 15px 25px #000;
    }
    .post {
        padding: 0 0 15px 15px;
        width: 100%;
    }
    .prd50 {
        padding-right: 50px !important;
        padding-left: 50px !important;
    }
}


@media (min-width: 992px) {
    .d_menu {
        display: none !important;
    }
    .navbar-wrapper> ul > li > a {
        padding-right: 12px;
        padding-left: 12px;
    }
    .ar-uploader__url {
        display: block;
        padding: 0px 20%;
    }
    .colum {
        padding: 0;
        display: flex;
    }
    .post {
        overflow-y: overlay;
        position: fixed;
        height: calc(100vh - 50px);
        overflow: auto;
        width: 50%;
        padding: 0 15px 15px 15px;
        overflow-y: scroll;
        overflow-y: overlay;
    }
    .post_content_comment {
        flex-grow: 1;
        width: 55%;
        margin-left: 50%;
        padding: 0 15px 40px 15px;
    }
    .navbar-wrapper > ul > li > .navbar_padi {
        padding: 15px 30px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1600px;
    }
}

@media only screen and (max-width: 1500px) {
    .main_content {
        grid-template-columns: repeat(6,1fr);
    }
}

@media only screen and (max-width: 1366px) {
    .album-preview {
        height: calc(100vw / 5);
    }
    .main_content {
        grid-template-columns: repeat(4,1fr);
    }
    article > .files_hilo, article > .files {
        max-width: 50%;
        min-width: 50%;
    }
    article > .expand {
        width: inherit !important;
        max-width: max-content !important;
    }
}
@media only screen and (max-width: 800px) {
    .album-preview {
        height: calc(100vw / 3);
    }
    .main_content {
        grid-template-columns: repeat(3,1fr);
    }
    article > .files_hilo, article > .files {
        max-width: 50%;
        min-width: 50%;
    }
    article > .expand {
        width: inherit !important;
        max-width: max-content !important;
    }
}
@media only screen and (max-width: 600px) {
    .album-preview {
        height: calc(100vw / 2);
    }
    .main_content {
        grid-template-columns: repeat(2,1fr);
    }
    article > .files_hilo, article > .files {
        max-width: 50%;
        min-width: 50%;
    }
    article > .expand {
        width: inherit !important;
        max-width: max-content !important;
    }
}




/* LC Select - Dark theme - by LCweb */


/* container */
.lcslt {
    border: 1px solid var(--body-bg-color);
    background: var(--body-bg-color);
    border-radius: 2px;
    transition: all .25s ease;
    min-height: 48px !important;
    padding: .375rem .75rem !important;
    font-size: 1rem !important;
}
.lcslt:not(.lcslt-disabled):hover,
.lcslt.lcslt_dd-open,
#lc-select-dd {
    border-color: #525252;
    background: #292929;
}
.lcslt.lcslt_dd-open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.lcslt-opt {
    background: #bbb;
    border-radius: 3px;
}
.lcslt:not(.lcslt-multiple):after {
	border-top-color: #888 !important;
}
.lcslt:not(.lcslt-multiple):hover:after,
.lcslt.lcslt_dd-open:not(.lcslt-multiple):after {
	border-top-color: #666 !important;
}
.lcslt:not(.lcslt-multiple) > span {
    padding: 2px 0;
}
.lcslt.lcslt-multiple > span:not(.lcslt-multi-callout) {
    padding: 3px 0 6px;
}
.lcslt:not(.lcslt-multiple) > span:not(.lcslt-placeholder) {
    font-size: 90%;
}
.lcslt > span:not(.lcslt-placeholder):not(.lcslt-multi-callout),
#lc-select-dd li {
    color: var(--color);
}


/* disabled status */
.lcslt.lcslt-disabled {
    background: #f4f4f4;
}
.lcslt.lcslt-disabled:not(.lcslt-multiple):after {
	border-top-color: #aaa !important;
}
.lcslt.lcslt-disabled:not(.lcslt-multiple) > span {
    color: var(--color);
}
.lcslt.lcslt-disabled .lcslt-multi-selected {
    color: var(--color);
    padding-left: 9px;
}
.lcslt.lcslt-disabled .lcslt-multi-selected:before {
    display: none;
}


/* multi-option selected items */
.lcslt-multiple {
	font-size: 0.95rem !important;
}
.lcslt-multi-selected,
.lcslt-multi-callout {
    padding: 3px 9px 3px 7px;
    background: #555;
    color: var(--color);
    border-radius: 50px;
    margin: 0 5px 5px 0;
    transition: all .3s ease;
}
.lcslt-multi-callout {
	padding: 0.75rem 0.4581rem;
	font-family: arial;
	border-radius: 50%;
	font-size: 1rem;
}
.lcslt:not(.lcslt-disabled) .lcslt-multi-selected:hover,
.lcslt:not(.lcslt-disabled) .lcslt-multi-callout:hover {
    background: #414141;
    color: #e2e2e2; 
}
.lcslt-multi-selected:before {
    padding-right: 6px;
}
.lcslt-placeholder {
	color: var(--color);
	transform: scale(0.9) translate3d(-5%, -5%, 0);
}


/* dropdown */
#lc-select-dd {
    border-radius: 0 0 4px 4px;
    border-width: 0 1px 1px;
    border-style: solid;
	box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
	font-size: 13px;
}
#lc-select-dd li {
    border: none;
    border-top: 1px solid #3f3f3f;
}
.lcslt-search-li {
    border-bottom: 2px dotted #3f3f3f !important;
    box-shadow: 0 1px 0 #292929;
}
.lcslt-search-li input {
	font-size: inherit;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    font-size: 0.8rem;
    color: var(--color);
    background: #292929;
}
.lcslt-search-li input:hover,
.lcslt-search-li input:active,
.lcslt-search-li input:focus,
.lcslt-is-searching .lcslt-search-li input {
    color: inherit;
}
.lcslt-search-li:before {
	background: var(--color);
}
#lc-select-dd li span {
    padding: 7px 12px;
    font-size: 0.8rem;
}
#lc-select-dd li img { 
    padding-right: 7px;
}
.lcslt-group-name {
    font-weight: bold;
}
.lcslt-group-opts > li {
    padding-left: 12px;
}
.lcslt-dd-opt {   
    transition: all .15s ease;
    color: var(--color);
}
#lc-select-dd li.lcslt-dd-opt:not(.lcslt-disabled):not(.lcslt-selected):hover,
#lc-select-dd .lcslt-dd-opt-hlight {  
    color: #fff;
    background: var(--hover);
    text-shadow: 0 0 2px rgba(0,0,0,0.3);
}
#lc-select-dd li.lcslt-dd-opt.lcslt-disabled {   
    background: #404040;
    color: var(--color);
}
#lc-select-dd li.lcslt-selected {   
    color: var(--color);
    background: var(--color-1);
    text-shadow: 0 0 2px rgba(0,0,0,0.15);
}
#lc-select-dd li.lcslt-selected.lcslt-dd-opt-hlight {
	box-shadow: 6px 0 0 var(--hover) inset;
}
.lcslt-is-searching li.lcslt-group,
.lcslt-no-results {
    border: none !important;
}
.lcslt-no-results {
    color: var(--color);
    text-align: center;
    padding: 12px;
}


/* images */
.lcslt-img {
    display: inline-block;
    height: 17px;
    width: 20px;
    margin-right: 7px;
}
