/* Bemind Records - lightweight public foundation */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--bm-bg, #050508);
    color: var(--bm-text, #f4f4f8);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

article,
footer,
header,
main,
nav,
section {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

a:hover,
a:focus {
    color: var(--bm-accent-cyan, #22d3ee);
    text-decoration: none;
}

img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: middle;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

ul,
ol {
    margin-top: 0;
}

.preloader,
.page_topline {
    display: none !important;
}

.container,
.container-fluid,
.bm-container {
    width: min(1280px, 92vw);
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-sm-12,
.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .col-sm-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 992px) {
    .col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }
}

@media (min-width: 1200px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

.display_table {
    display: flex;
    align-items: center;
    width: 100%;
}

.display_table_cell {
    display: flex;
    align-items: center;
}

.header_left_logo,
.header_right_buttons {
    flex: 0 0 auto;
}

.header_mainmenu {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
}

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

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

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

@media (min-width: 768px) {
    .text-sm-left {
        text-align: left;
    }

    .text-sm-right {
        text-align: right;
    }
}

.hidden,
.hide-on-mobile {
    display: none !important;
}

@media (max-width: 767px) {
    .hidden-xs,
    .hidden-sm {
        display: none !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.page_header {
    min-height: 76px;
}

.mainmenu_wrapper {
    width: 100%;
}

.mainmenu,
.sf-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.2rem);
    padding: 0;
    margin: 0;
    list-style: none;
}

.mainmenu li,
.sf-menu li {
    position: relative;
    margin: 0;
}

.mainmenu a,
.sf-menu a {
    display: block;
    padding: 0.4rem 0;
}

.toggle_menu {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border-radius: 999px;
}

.toggle_menu span,
.toggle_menu span::before,
.toggle_menu span::after {
    position: absolute;
    left: 11px;
    width: 22px;
    height: 2px;
    content: "";
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.toggle_menu span {
    top: 21px;
}

.toggle_menu span::before {
    top: -7px;
    left: 0;
}

.toggle_menu span::after {
    top: 7px;
    left: 0;
}

.toggle_menu.mobile-active span {
    background: transparent !important;
}

.toggle_menu.mobile-active span::before {
    transform: translateY(7px) rotate(45deg);
}

.toggle_menu.mobile-active span::after {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .header_mainmenu {
        justify-content: flex-end;
    }

    .toggle_menu {
        display: block;
    }

    .page_header:not(.mobile-active) .mainmenu_wrapper {
        display: none;
    }

    .page_header.mobile-active .mainmenu_wrapper {
        display: block;
    }
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1200;
    display: none;
    min-width: 180px;
    padding: 0.5rem 0;
    margin: 0.4rem 0 0;
    list-style: none;
    background: rgba(12, 12, 18, 0.98);
    border: 1px solid var(--bm-border, rgba(255, 255, 255, 0.08));
    border-radius: var(--bm-radius, 12px);
}

.dropdown.open .dropdown-menu,
.dropdown-menu.show {
    display: block;
}

.dropdown-menu a,
.dropdown-menu button {
    display: block;
    width: 100%;
    padding: 0.55rem 1rem;
    color: var(--bm-text, #f4f4f8);
    text-align: left;
    background: transparent;
    border: 0;
}

.caret::after {
    display: inline-block;
    margin-left: 0.35rem;
    content: "";
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal.in {
    display: block;
}

.modal-open {
    overflow: hidden;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 3990;
    background: rgba(0, 0, 0, 0.72);
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10vh auto;
}

.modal-content {
    position: relative;
}

.close {
    padding: 0;
    background: transparent;
    border: 0;
}

.page_breadcrumbs .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.4rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.page_breadcrumbs .breadcrumb li + li::before {
    padding-right: 0.4rem;
    color: var(--bm-muted, #8b8b9a);
    content: "/";
}

.ds,
.ms,
section.ds {
    background: var(--bm-bg, #050508);
    color: var(--bm-text, #f4f4f8);
}

.section_padding_top_150,
.section_padding_top_130 {
    padding-top: clamp(5rem, 10vw, 8rem);
}

.section_padding_top_80,
.section_padding_top_75,
.section_padding_top_50 {
    padding-top: clamp(3.5rem, 8vw, 5rem);
}

.section_padding_bottom_130,
.section_padding_bottom_100,
.section_padding_bottom_75,
.section_padding_bottom_50 {
    padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.columns_margin_bottom_100 > .container > .row > [class*="col-"],
.columns_margin_bottom_30 > .container > .row > [class*="col-"],
.columns_margin_bottom_20 > [class*="col-"] {
    margin-bottom: 1.5rem;
}

.columns_padding_25 > .container > .row > [class*="col-"] {
    padding-right: 25px;
    padding-left: 25px;
}

.topmargin_25 {
    margin-top: 25px;
}

.topmargin_40 {
    margin-top: 40px;
}

.bottommargin_0 {
    margin-bottom: 0;
}

.bottommargin_40 {
    margin-bottom: 40px;
}

.rounded {
    border-radius: var(--bm-radius, 12px);
}

.with_background,
.bm-info-card,
.bm-release-cover-card,
.bm-release-bio-card,
.bm-embed-card {
    background: var(--bm-surface, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--bm-border, rgba(255, 255, 255, 0.08));
    border-radius: var(--bm-radius-lg, 20px);
}

.content-padding,
.item-content {
    padding: 1.25rem;
}

.vertical-item {
    overflow: hidden;
}

.item-media img,
.bm-release-cover-card__image img,
.bm-artist-profile-card__image,
.bm-release-artist-card__image,
.artist-photo {
    width: 100%;
    object-fit: cover;
}

.entry-title {
    margin-top: 0;
}

.small-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.highlight {
    color: var(--bm-accent-cyan, #22d3ee) !important;
}

.grey,
.greylinks a {
    color: var(--bm-muted, #8b8b9a) !important;
}

.fontsize_20 {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    display: block;
    width: 100%;
    min-height: 44px;
    padding: 0.75rem 1rem;
    color: var(--bm-text, #f4f4f8);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--bm-border, rgba(255, 255, 255, 0.08));
    border-radius: var(--bm-radius, 12px);
}

.form-control::placeholder {
    color: var(--bm-muted, #8b8b9a);
}

.alert {
    padding: 0.85rem 1rem;
    margin-bottom: 1rem;
    border-radius: var(--bm-radius, 12px);
}

.alert-danger {
    color: #fff;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.35);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table td,
.table th {
    padding: 0.9rem;
    border-bottom: 1px solid var(--bm-border, rgba(255, 255, 255, 0.08));
}

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--bm-border, rgba(255, 255, 255, 0.08));
}

.nav-tabs > li > a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--bm-radius, 12px) var(--bm-radius, 12px) 0 0;
}

.nav-tabs > li.active > a {
    color: var(--bm-accent-cyan, #22d3ee);
    background: var(--bm-surface, rgba(255, 255, 255, 0.04));
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.big-padding {
    padding: 1.5rem;
}

.top-color-border {
    border-top: 1px solid var(--bm-accent-cyan, #22d3ee);
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    margin: 2rem 0 0;
    list-style: none;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.4rem;
    min-height: 2.4rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--bm-border, rgba(255, 255, 255, 0.08));
    border-radius: 999px;
}

.pagination .active a {
    color: var(--bm-text, #f4f4f8);
    background: var(--bm-accent, #8b5cf6);
}

.social-icon,
[class^="socicon-"],
[class*=" socicon-"],
[class^="icon-"],
[class*=" icon-"],
[class^="rt-icon2-"],
[class*=" rt-icon2-"],
.fa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    min-height: 2rem;
    color: var(--bm-text, #f4f4f8);
    font-size: 0;
    vertical-align: middle;
}

.fa-angle-left::before {
    content: "‹";
}

.fa-angle-right::before {
    content: "›";
}

.fa-spin {
    animation: none;
}
