@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');

:root {
    --brandHSL: hsl(215, 100%, 64%);
    --header-height: 70px;
    --menu-width: 250px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #565656;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #313131;
}

body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
}


.wrapper {
    display: grid;
    grid: [stack] 1fr/min-content [stack] 1fr;
    background-color: #1b1b1b;
    min-block-size: 100vh;
}


#sidenav-open {
    --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: .6s;
    display: grid;
    grid-template-columns: [nav] 2fr [escape] 1fr;
}

#sidenav-open:target {
    visibility: visible;
    transform: translateX(0);
    transition: transform var(--duration) var(--easeOutExpo);
}

@media (prefers-reduced-motion: reduce) {
    #sidenav-open {
        --duration: 1ms;
    }
}

.inline-header{
    display: inline;
}

nav {
    width: var(--menu-width);
    background-color: #303030;
    box-shadow: 5px 0 40px rgba(0, 0, 0, 0.45);
    font-size: 1rem;
    display: inline-flex;
    flex-direction: column;
}

nav > h4 {
    text-transform: uppercase;
    color: #e2e2e2;
}

nav a {
    outline-color: #00196b;
    outline-offset: 5px;
    line-height: 1.5;
    color: #1a79ff;
}

div.brand-block {
    height: var(--header-height);
    background-color: #222222;
}

div.account-block {
    position: fixed;
    width: var(--menu-width);
    bottom: 0px;
    height: var(--header-height);
    background-color: #222222;
    overflow: hidden;
}

div.brand-block .logo {
    width: auto;
    height: 85%;
    margin-top: 5px;
    margin-left: 10px;
}

div.menu-block {
    height: calc(100vh - 140px);
    overflow-y: auto;
}

div.menu-block a {
    border-bottom: 1px solid rgb(255 255 255 / 12.5%);
    width: 100%;
    color: #ffffff;
    display: inline-block;
    text-decoration: none;
    vertical-align: middle;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.15rem;
    filter: drop-shadow(0 0 0.1rem rgba(0, 0, 0, 0.5));
}

div.menu-block a i {
    color: #577083;
    text-shadow: 0px 0px 1px black;
}

div.menu-block a i.custom-icon {
    position: relative;
    top: 3px;
    display: inline-block;
    width: 1.25em;
    height: 1.5rem;
    background-color: #577083;
    margin-right: .5rem !important;
}

div.menu-block a:hover {
    color: #9ab2bd;
    background-color: rgb(235 235 235 / 20%);
}

span.indent-icon {
    color: #757575;
    transform: rotate(90deg);
    margin-right: 10px;
    margin-left: 5px;
}

div.menu-block div a {
    background: rgba(0,0,0,0.2);
    border-left: 10px solid rgba(19, 79, 67, 0.2);
}

div.menu-block div div a {
    background: rgba(0,0,0,0.35);
    border-left: 20px solid rgba(19, 79, 67, 0.2);
}

main {
    display: grid;
}

main > header {
    height: var(--header-height);
    overflow: hidden;
    justify-content: space-between;
    min-height: 3rem;
}

main > header h1 {
    padding-right: 10px;
    color: #e2e2e2;
    margin: 15px 10px 0 20px;
    font-size: 1.5em;
}

main > div.scroll-pane {
    height: calc(100vh - var(--header-height));
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #3C1154;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(159,1279,640)'%3E%3Cstop offset='0' stop-color='%233C1154'/%3E%3Cstop offset='1' stop-color='%23124F43'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='756' height='630' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.01'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
}

section {
    padding: 7px;
    color: #000;
}

section article.solid {
    padding: 15px;
    background: #ffffff;
    border-radius: 1ch;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#sidenav-burger,
#sidenav-close {
    float: right;
    user-select: none;
    touch-action: manipulation;
    font-size: 2.5rem;
    line-height: 0px;
    padding-right: 15px;
    padding-top: 15px;
    color: #999;
}

svg.profile-picture.sidenav {
    width: 55px;
    float: left;
    margin: 8px;
}

svg.profile-picture.list {
    width: 40px;
    margin-right: 5px;
}

svg.profile-picture.profile {
    width: 200px;
    margin-right: 5px;
}

svg.profile-picture > g > circle {
    stroke: #e9e9e9;
    stroke-width: 16;
    stroke-miterlimit: 10;
}

svg.profile-picture > g > text {
    fill: #ffffff;
    font-size: 225px;
    stroke: none;
    font-weight: 600;
    fill: #ffffff;
}

svg.profile-color-1 > g > circle {
    fill: #e6194b;
}

svg.profile-color-2 > g > circle {
    fill: #f58231;
}

svg.profile-color-3 > g > circle {
    fill: #ffe119;
}

svg.profile-color-4 > g > circle {
    fill: #bfef45;
}

svg.profile-color-5 > g > circle {
    fill: #3cb44b;
}

svg.profile-color-6 > g > circle {
    fill: #42d4f4;
}

svg.profile-color-7 > g > circle {
    fill: #4363d8;

}

svg.profile-color-8 > g > circle {
    fill: #671eb4;
}


.muted-background-1, .muted-background-danger {
    background: #cb5359;
}
.muted-background-2, .muted-background-success {
    background: #70a845;
}

.muted-background-3, .muted-background-info {
    background: #6587cd;
}

.muted-background-4 {
    background: #ab9140;
}

.muted-background-5 {
    background: #a361c7;
}

.muted-background-6 {
    background: #cf713a;
}
.muted-background-7 {
    background: #4aac8d;
}
.muted-background-8 {
    background: #c55d93;
}



.vert-float-wrapper {
    height: var(--header-height);
    position: relative;
    left: 75px;
    width: calc(var(--menu-width) - 75px);
    font-size: 16px;
}

.vert-float {
    color: white;
    margin: 0;
    position: absolute;
    top: 50%;

    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}

.profile-details {
    font-size: 1.2rem;
    font-weight: 500;
}

.table-row-hover:hover{
    background-color: #c1bebe;
}

.table-box {
    border: 1px solid #b9b3b3;
    border-radius: 10px;
}


.topped-table-box {
    border: 1px solid #b9b3b3;
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0;
}

.topped-table-topper {
    background-color: #3d3d3d;
    margin-bottom: 0;
    padding: 7px 7px 7px 10px;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 1px solid #353333;
    border-bottom: none;
}

.topped-table-table {
    border-bottom-left-radius: 10px;
    border: 1px solid #b9b3b3;
    border-bottom-right-radius: 10px;
    border-top: none;
}

tr.buttonized {
    cursor: pointer;
    transition: background 0.1s;
}

tr.buttonized:hover {
    background: rgba(13, 110, 253, .25);
    text-decoration: underline;
}



.accordion-table .accordion-item:nth-child(even) .accordion-header .accordion-button {
    background-color: #FBFBFB;
}

.accordion-table .accordion-item .accordion-header .accordion-button {
    border-radius:0;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 0.3rem 0.5rem 0.3rem 0.5rem;
    background-color: #ededed;
}

.accordion-table .accordion-item .accordion-header .accordion-button:hover {
    opacity: 0.6;
}

.accordion-table .accordion-item .accordion-header {
    border-radius:0;
}

.accordion-table .accordion-item {
    border-radius:0;
}

.accordion-button .icon-row {
    font-size: 1rem;
    padding-right: 10px;
    text-align: right;
    width: 100%;
    color: #5f5e5e;
}

.role-pane {
    border: 1px solid #ddd;
    border-radius: 5px;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
}

.role-pane div.role-container{
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 10px;
}

.role-pane div.role-container:nth-child(odd){
    background-color: #F9F9F9;
}

.loading-ring {
    display: inline-block;
    width: 1.25em;
    height: 16px;
    padding-top: 3px;
}
.loading-ring:after {
    content: " ";
    display: block;
    width: 16px;
    height: 16px;
    margin-left: 2px;
    border-radius: 50%;
    border: 4px solid #555;
    border-color: #555 transparent #555 transparent;
    animation: loading-ring 1.2s linear infinite;
}

.loading-ring-white {
    display: inline-block;
    width: 1.25em;
    height: 16px;
    padding-top: 3px;
}
.loading-ring-white:after {
    content: " ";
    display: block;
    width: 16px;
    height: 16px;
    margin-left: 2px;
    border-radius: 50%;
    border: 4px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: loading-ring 1.2s linear infinite;
}

div.CodeMirror {
    height: 380px;
    border-radius: .375rem;
    border: 1px solid #ced4da;
}

@keyframes loading-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 540px) {
    .wrapper > :is(aside, main) {
        grid-area: stack;
    }

    aside {
        z-index: 1;
    }

    .fw-mobile {
        width: 100%;
    }

    #sidenav-open {
        position: sticky;
        top: 0;
        max-height: 100vh;
        overflow: hidden auto;
        visibility: hidden;
        transform: translateX(-110vw);
        will-change: transform;
        transition: transform var(--duration) var(--easeOutExpo), visibility 0s linear var(--duration);
    }
}

@media (min-width: 540px) {

    #sidenav-burger,
    #sidenav-close {
        display: none;
    }
}

.ow-anywhere {
    overflow-wrap: anywhere;
}

.permission.flashed {
    background-color: #ff7777;
}

.permission:not(.flashed) {
    transition: background-color 3s;
    background-color: transparent;
}

.version-btn{
    margin-right: 1rem;
}
/*======================================================================================================================
                                             Flickering Display Text
======================================================================================================================*/



.neon-text-red {
    font-family: "Tilt Neon", sans-serif;
    animation: flicker-red 4.5s infinite alternate;
    color: #fff;
}

.neon-text-green {
    font-family: "Tilt Neon", sans-serif;
    animation: flicker-green 4.5s infinite alternate;
    color: #fff;
}

/* Flickering animation */
@keyframes flicker-red {

  0%, 5%, 9%, 15%, 53%, 57%, 100% {

      text-shadow:
      0 0 4px #fff,
      0 0 6px #fff,
      0 0 10px #fff,
      0 0 20px #ff0000,
      0 0 40px #ff0000,
      0 0 45px #ff0000,
      0 0 50px #ff0000,
      0 0 75px #ff0000;
  }

  8%, 14%, 56% {
      text-shadow: none;
  }
}

@keyframes flicker-green {

  0%, 100% {

      text-shadow:
      0 0 4px #fff,
      0 0 6px #fff,
      0 0 10px #fff,
      0 0 20px #0fa,
      0 0 30px #0fa,
      0 0 40px #0fa,
      0 0 50px #0fa,
      0 0 60px #0fa;
  }


}


.toast-container {
    position: fixed;
    bottom: 10px;
    /*top: 80px;*/
    right: 0px;
    padding-right: 25px;
    padding-bottom: 15px;
}

.toast {
    position: relative;
    right: -400px;
    background-color: #F5F5F5;
    animation: slide 0.2s forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@-webkit-keyframes slide {
    100% {
        right: 0;
        opacity: 1;
    }
}

@keyframes slide {
    100% { right: 0;
    opacity: 1;}
}

.toast-header .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/0.9em auto no-repeat;
}

.pie-countdown {
  position: relative;
    top: -10px;
    left: -10px;
    width: 34px;
  transform: scaleY(-1) rotate(90deg);
}

.pie-countdown path.countdown-short {
    animation: dash 5.1s linear 1;
    animation-fill-mode: forwards;
}

.pie-countdown path.countdown-medium {
    animation: dash 10.1s linear 1;
    animation-fill-mode: forwards;
}

.pie-countdown path.countdown-long {
    animation: dash 15.1s linear 1;
    animation-fill-mode: forwards;
}

.pie-countdown path {
    fill: none;
    stroke: rgb(0 0 0 / 75%);
    stroke-width: 50;
    stroke-miterlimit: 10;
    stroke-dasharray: 1100;
    stroke-dashoffset: 0;
}


.table-pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: #fff;
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: #dee2e6;
    /* --bs-pagination-border-radius: 0.375rem; */
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: #e9ecef;
    --bs-pagination-hover-border-color: #dee2e6;
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: #e9ecef;
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-disabled-color: #6c757d;
    --bs-pagination-disabled-bg: #fff;
    --bs-pagination-disabled-border-color: #dee2e6;
    display: flex;
    padding-left: 0;
    list-style: none;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 0;
    margin-left: auto;
    /* justify-items: stretch; */
    border: 0px;
    justify-content: center;
    background-color: #3d3d3d;
}

.table-page-link {
    border: none;
    margin: 3px;
    text-align: center;
    min-width: 1.5rem;
    position: relative;
    display: block;
    line-height: 1rem;
    border-radius: 1rem;
    padding: 5px;
    font-size: var(--bs-pagination-font-size);
    color: #f3f3f3;
    text-decoration: none;
    background-color: #2f2f2f;
    /* border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color); */
    transition: color .15sease-in-out, background-color .15sease-in-out, border-color .15sease-in-out, box-shadow .15sease-in-out;
}

.table-page-item:not(.disabled) > .table-page-link:hover {
    background-color: #666;
    color: #eee;
}

.table-page-item.active > .table-page-link {
    background-color: #666;
}

.table-page-item.disabled > .table-page-link {
    color: #666;
}

.table-expandable-striped > tbody > tr:nth-of-type(4n - 3) > *{
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.fade-toggle {
  opacity: 0 !important;
  transition: opacity 0.5s ease;
}

.fade-toggle.showing {
  opacity: 1 !important;
}



@keyframes dash {
  to {
    stroke-dashoffset: 1100;
  }
}

/*
.toast:not(.show) {
    display: inherit;
}*/

/*======================================================================================================================
                                                Responsive List
======================================================================================================================*/

div.responsive-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.responsive-list > ul.faded > li:not(.slider){
    opacity: 0.3;
}

@media screen and (min-width: 540px) {

    .responsive-list ul:nth-child(odd) {
        background-color: #ddd;
    }

    .responsive-list ul:nth-child(even) {
        background-color: #fff;
    }

    .responsive-list {
        display: table;
        width: 100%;
    }

    .responsive-list ul {
        display: table-row;
    }

    .responsive-list ul:first-child li {
        background-color: #212529;
        color: #fff;
    }

    .responsive-list ul > li {
        display: table-cell;
        padding: .5em 1em;
    }

    .responsive-list ul > li.show-mobile {
        display: none;
    }

}


@media screen and (max-width: 540px) {
    .responsive-list {
        background-color: #ededed;
        padding: 0.5em;
    }

    .responsive-list ul {
        border: solid 1px #ccc;
        background-color: #f9f9f9;
        display: block;
        list-style: none;
        padding: .5em 1em;
    }

    .responsive-list ul:first-child {
        display: none;
    }

    .responsive-list ul > li {
        display: block;
        padding: .25em 0;
    }

    .responsive-list ul:nth-child(odd) > li + li {
        border-top: solid 1px #ccc;
    }

    .responsive-list ul:nth-child(even) > li + li {
        border-top: solid 1px #eee;
    }

    .responsive-list ul > li:not(.no-label)::before {
        content: attr(data-label);
        display: block;
        font-size: 75%;
        font-weight: bold;
        text-transform: capitalize;
        vertical-align: top;
        width: 50%;
    }

    .responsive-list p {
        margin: -1em 0 0 50%;
    }

    .responsive-list p {
        margin: 0;
    }

    .responsive-list ul > li.hide-mobile {
        display: none;
    }

    .responsive-list ul > li.show-mobile {
        display: block;
    }


}

.player-search-select{
    max-width: 25%;
}

/*======================================================================================================================
                                                Moderation List
======================================================================================================================*/

.scrollable {
        max-height: 30em;
        overflow: auto;
}

.moderation-list {
    padding-bottom: 0.25em; /* Fixes weird scrollbar appearance for hover */
    padding-right: 0.2em;
    padding-left: 0.2em;
}

.moderation-history-body{
    padding: 0;
}

.moderation-button-row .btn {
    margin: 0.5em;
    min-width: 45%;
    width: 95%;
}

.moderation-button-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.moderation-note-row textarea {
    margin: 0.5em;
    max-width: 95%;
}

.moderation-note-row .btn{
    margin: 0.5em;
    min-width: 45%;
}

.moderation-note-row .note-btn{
    margin: 0.5em;
    min-width: 95%;
}

.moderation-card {
    margin: 0.2em 0.2em 0.4em;
    color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;;

    p {
       color: black;
    }
}

.moderation-ban {
    background-color: #8B0000;
}

.moderation-message {
    background-color: #9a00a4;
}

.moderation-mute {
    background-color: #4B0082;
}

.moderation-warning {
    background-color: #B8860B;
}
.moderation-note {
    background-color: #124190;
}
.moderation-other {
    background-color: #006400;
}

.moderation-ban-expired {
    background-color: #693E3E;
}

.moderation-message-expired {
    background-color: #775078;
}

.moderation-mute-expired {
    background-color: #4E4157;
}

.moderation-warning-expired {
    background-color: #665731;
}

.moderation-note-expired {
    background-color: #4F5B6B;
}

.moderation-other-expired {
    background-color: #333D33;
}


.moderation-card:hover{
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
    cursor: zoom-in;
}

.moderation-card-header{
    padding: 0.2em 0.2em 0.2em 0.5em;
    border: solid 1px;
    border-color: black;
    border-top-left-radius: 0.3em;
    border-top-right-radius: 0.3em;
    border-bottom: none;
}

.moderation-card-body{
    border: solid 1px;
    border-top: none;
    border-bottom-left-radius: 0.3em;
    border-bottom-right-radius: 0.3em;
    padding: 0.1em;
    background-color: white;
}

.moderation-expired {
    background-color: #e8e8e8;

    p {
        color: #2a2a2a;
    }
}

.moderation-card-body p{
    margin-bottom: 0.1em;
}


/* PLATFORM COLORS */

.platforms {

    .steam {
    background-color: #1b2838;
    }

    .playstation {
        background-color: #DF0024;
    }

    .meta {
        background-color: #0082fb;
    }

    .rift {
        background-color: #002950;
    }

    .local {
        background-color: #ff00dc;
    }
}


/*======================================================================================================================
                                                Custom Diff
======================================================================================================================*/

#diff-tables-container{
    overflow-x: auto;
    width: 100%;
}

.custom-diff-old-item {
    color: red;
    text-decoration: line-through;
}

.custom-diff-new-item {
    color: green;
}


/*======================================================================================================================
                                                Client Data Pull
======================================================================================================================*/


.compare-icon{
    font-size: xx-large;
    color: #555555
}

.mid-modal-buttons{
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;

    button {
        margin: 4px;
    }
}

#ws-modal-spinner-container{
    padding: 10em;
}

.ws-modal-spinner{
    height: 3em;
    width: 3em;
}


