
@charset "UTF-8";
/*!
  DJS3RL Admin Core CSS
  Syntax: CSS
  Created by: Eric @ DJS3RL
  Date: Sept 2024
*/
/* ---- Link Template ---- */
/* ---------- CORE CSS VARIABLES START ---------- */
:root {
  --s3rl-blue: #2196F3;
  --s3rl-red: #FF5252;
  --s3rl-yellow: #FE0;
  --s3rl-purple: #7C4DFF;
  --s3rl-orange: #FF6D00;
  --s3rl-green: #8de500;
  --s3rl-blue-darkmode: #2196F3;
  --s3rl-red-darkmode: #FF4081;
  --s3rl-yellow-darkmode: #FE0;
  --s3rl-purple-darkmode: #7C4DFF;
  --s3rl-orange-darkmode: #FF6D00;
  --s3rl-green-darkmode: #8de500;
  --s3rl-island-green: #29b84a;
  --s3rl-island-dark-green: #1b8740;
  --s3rl-primary-nav-color: #fffc;
  --s3rl-primary-background: #17181a;
  --s3rl-secondary-background: #222529;
  --s3rl-primary-font-color: #fff;
  --s3rl-secondary-font-rgba: #fffc;
  /* Bootstrap Override */
  --bs-accordion-btn-focus-box-shadow: var(--s3rl-blue) !important;
  --bs-nav-link-hover-color: var(--s3rl-blue) !important;
  --bs-accordion-btn-bg: var(--s3rl-blue) !important;
  --bs-accordion-active-bg: var(--s3rl-blue) !important;
  --bs-accordion-btn-focus-box-shadow: var(--s3rl-blue) !important;
  --bs-nav-link-font-size: 1rem !important;
  --bs-form-invalid-color: var(--s3rl-red) !important;

  --social-facebook: #3b5998;
  --social-soundcloud-g: linear-gradient(#f70, #f30);
  --social-soundcloud: #f70;
  --social-youtube: #FF0000;
  --social-instagram-g: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  --social-instagram: #d6249f;
  --social-discord: #5865F2;
  --social-spotify: #1DB954;
  --social-x: #fffc;
  --social-mixcloud: #5000FF;
  --social-apple-music: #000;
  --social-beatport: rgb(1, 255, 149);
  --social-beatsaber: linear-gradient(90deg, rgba(13,156,243,1) 0%, rgba(234,4,6,1) 100%);
}
/* Backgrounds */
.bg-s3rl-blue {background-color: var(--s3rl-blue) !important}
.bg-s3rl-red {background-color: var(--s3rl-red) !important}
.bg-s3rl-yellow {background-color: var(--s3rl-yellow) !important}
.bg-s3rl-purple {background-color: var(--s3rl-purple) !important}
.bg-s3rl-orange {background-color: var(--s3rl-orange) !important}
.bg-s3rl-green {background-color: var(--s3rl-green) !important}
.bg-s3rl-darkgreen {background-color: var(--s3rl-island-dark-green) !important}
.bg-primary {background-color: var(--s3rl-blue) !important}
.bg-s3rl-blue:disabled {background-color: var(--s3rl-primary-background) !important}

/* Social Backgrounds */
.facebook {background: var(--social-facebook)}
.soundcloud {background: var(--social-soundcloud-g)}
.youtube {background: var(--social-youtube)}
.instagram {background:var(--social-instagram-g)}
.discord {background: var(--social-discord)}
.spotify {background: var(--social-spotify)}
.twitter-x {background: var(--social-x)}
.mixcloud {background: var(--social-mixcloud)}
.apple-music {background : var(--social-apple-music)}
.beatsaber {background: var(--social-beatsaber)}
.beatport {background: var(--social-beatport)}

html,
body {
    height: 100%;
    width: 100%;
    background-color: #000;
}

.bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0100e1;
    background: url(/img/bg/default.jpg) no-repeat top center;
    background-attachment: fixed;
    background-size: cover;
    z-index: 0;
}
.bg::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(15px);
}

.global-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-weight: 300;
}

.image-background-container {
    position: relative;
    z-index: 0;
}

.background-image {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    z-index: -1;
    object-fit: contain;
    filter: blur(15px);
    transform: translate(-50%, -50%);
}

.link {
    min-height: 75px;
    text-decoration: none;
    font-size: 2em;
    color: white;
    background-color: #17181a;
    width: 100%;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 75px;
    transition: background-color 1s;
}

.link:hover {
    opacity: 0.9;
    animation: glitch .3s cubic-bezier(.25, .46, .45, .94) both .2;
    animation: glitch .3s cubic-bezier(.25, .46, .45, .94) reverse both .2;
    box-shadow: .2rem .2rem 0 #000;
    transform: translate(-0.2rem, -0.2rem)
}

.link a {
    text-decoration: none;
    color: #fff;
}
.link-cover-art
{
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

#track-container {
    max-width: 580px;

}

a i {
    float: left;
}

.retro-box-style-np {
    background-color: #222529;
    color: #fff;
    border: 3px solid black;
    border-radius: 5px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
    padding: 0;
    margin-bottom: 20px;
}

.retro-box-style {
    background-color: #222529;
    color: #fff;
    border: 3px solid black;
    border-radius: 5px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    padding: 1.6rem 3rem;
}

.dt-column-title {
    color: #ffffff !important;
}

#embed-google {
    width: 100%;
    background-color: black;
}

.inter-text {
    font-size: 16px;
    text-align: center;
}

.icon-spacer {
    margin-right: 5px;
}

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

.footer-text {
    position: relative;
    background-color: #17181a;
    max-width: 580px;
    width: 100%;
    display: inline-block;
    color: #bfbfbf;
    padding: 20px 20px 0px 20px;
    border: 3px solid black;
    border-radius: 5px 5px;
    z-index: 5;
}

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

.artist {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 15px;
}

.remixer {
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 5px;
}

.featured {
    text-align: center;
}

.track-icon {
    display: inline-block;
    max-width: 91px;
    max-height: 91px;
    min-width: 91px;
    width: 100%;
    height: 100%;
}

.card-body {
    background-color: #17181a;
}

.cc-btn-footer {
    padding: 10px;
    margin-top: 10px;
    padding-bottom: 10px;
}

.cc-btn-footer:hover {
    opacity: 0.9;
}

table.table.dataTable>tbody>tr:hover {
    background-color: #0100e1;
}

@media only screen and (max-width:767px) {

    /* Css for mobile */
    .retro-box-style-np {
        background-color: #222529;
        color: #fff;
        border: 3px solid black;
        border-radius: 0px;
        box-shadow: 0px 0px 0 rgba(0, 0, 0, 0.2);
        padding: 0;
        margin: auto;
    }

    .footer-content {
        margin-top: 20px;
    }

    .cc-btn-footer {
        padding: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .footer-text {
        background-color: #17181a;
        padding-top: 10px;
    }

    .background-image {
        width: auto;
    }

    .link-text {
        font-size: .8em;
    }

    .link-text-s3rl-shop {
        font-size: .7em;
    }
}

.glitch {
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    margin: 0;
    color: #fff;
    transition: transform 1s;

    &:before,
    &:after {
        display: block;
        content: attr(data-glitch);
        text-transform: uppercase;
        position: absolute;
        bottom: 25%;
        left: 0;
        height: 100%;
        width: 100%;
        opacity: .8;
    }

    &:after {
        color: #f0f;
        z-index: -2;
    }

    &:before {
        color: #0ff;
        z-index: -1;
    }

    &:hover {
        &:before {
            animation: glitch .3s cubic-bezier(.25, .46, .45, .94) both 5
        }

        &:after {
            animation: glitch .3s cubic-bezier(.25, .46, .45, .94) reverse both 5
        }
    }
}

@media only screen and (max-width: 400px) {
    .glitch {
        font-size: .8rem;
    }
}

@keyframes glitch {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(-5px, 5px)
    }

    40% {
        transform: translate(-5px, -5px)
    }

    60% {
        transform: translate(5px, 5px)
    }

    80% {
        transform: translate(5px, -5px)
    }

    to {
        transform: translate(0)
    }
}

.alert-fixed {
    position: fixed;
    top: 0px;
    left: 10px;
    width: auto;
    z-index: 9999;
    border-radius: 0px
}
/* ---------- BANNER START ---------- */
.banner-outer {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #7684FF;
    margin: auto;
    border: 3px solid #000;
    color: #e8e9ff !important;
    padding: 5px 0;
    z-index: 10
  }
  
  .banner-inner {
    width: 100%;
    height: 90%;
    background-color: #FE0;
    margin: auto;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000
  }
  
  .banner-dropdown {
    position: relative;
    border-radius: 0 0 10px 10px !important;
    margin-left: 10px;
    margin-right: 10px;
    z-index: 0;
    transition: all .5s;
    background-color: var(--s3rl-secondary-background);
    box-shadow: inset 0 0 20px 1px #17181acc;
    border: 1px solid;
    border-color: #000;
    border-top: none;
    box-shadow: inset 1px 0 10px 10px #00000080;
  }
  .banner-outer {
    box-shadow: 8px 8px 0 #0003;
    border-radius: 5px
  }
  
  .banner-title-outer {
    position: relative;
    border-radius: 0 0 15px 15px !important;
    margin-left: 10px;
    margin-right: 10px;
    z-index: 0;
    background-color: var(--s3rl-secondary-background);
    box-shadow: inset 0 0 20px 1px #17181acc
  }
  
  .banner-title-inner {
    padding: 10px
  }
  
  .banner-dropdown-inner {
    padding: 15px;
    filter: drop-shadow(0px 0px 10px #00000080);
    box-shadow: inset 0 0 0 3px #00000080;
    border: 3px solid;
    border-color: var(--s3rl-green);
    border-radius: 0 0 10px 10px !important;
    border-top: none;
  }
  .featured-text {
    font-weight: 900 !important;
    text-align: center;
    text-decoration: none;
    width: 100%;
    color: var(--s3rl-primary-font-color) !important;
    text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000, 0 3px 0 #000, 3px 0 0 #000, 0 -3px 0 #000, -3px 0 0 #000
  }
  
  .featured-text-sm {
    font-size: 1.3rem;
    font-size: 1.3rem
  }
  /* ---------- BANNER END ---------- */
  hr {
    border: 1px solid var(--s3rl-green);
    border-radius: 5px;
    margin-left: 15px;
    margin-right: 15px;
    opacity: 1
  }

  .hv-eff-sink {
    transition: all .5s
  }
  
  .hv-eff-sink:hover {
    box-shadow: .2rem .2rem 0 #000 !important;
    transform: translate(0.2rem, 0.2rem) !important
  }
  
  .hv-eff-sink:active {
    box-shadow: .4rem .4rem 0 #000;
    transform: translate(0, 0)
  }

  .retro-style-box-btn {
    background-color: var(--s3rl-primary-background);
    border: 3px solid #000;
    border-radius: 5px;
    box-shadow: 8px 8px 0 #0003;
    padding: 1rem;
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    color: var(--s3rl-primary-font-color);
    text-transform: uppercase;
    font-weight: 700;
  }
  .black-stroke-brand-svg path {
    display: block;
    fill: var(--s3rl-primary-font-color);
    stroke: rgb(0, 0, 0);
    stroke-width: 9rem;
    stroke-linejoin: round;
    paint-order: stroke;
    --fa-li-width: 400px;
}