/* main */
@import url("includes.df7eba20df5a.css");

/* core */
@import url("/static/core/styles/includes/header.5db1234220c0.css");
@import url("/static/core/styles/includes/sidebar.20e6a9c47e0e.css");
@import url("particles.min.8983468826ec.css");
@import url("/static/core/styles/includes/footer.37db98ffca90.css");
@import url("/static/core/styles/forms/main_forms.c876d30f2617.css");
@import url("/static/core/styles/components/player.043dd869e8cb.css");

/* ab_movies */
@import url("/static/ab_movies/styles/pages/home.cf82b2334416.css");
@import url("/static/ab_movies/styles/components/release_card.e7b6d3491c7f.css");

:root {
    --text-color-primary: #eeeeee;
    --text-color-emphasis: #01ae4c;
    --text-color-secondary: #5f626d;
    --text-color-emphasis-secondary: rgba(62, 126, 76, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
	color: var(--text-color-primary);
	font-size: 16px;
	font-weight: normal;
	letter-spacing: normal;
}

p {
	margin: 0;
}

body {
    min-width: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
    
    background-color: #09000f;
    /* font-family: "JetBrains Mono", monospace; */
    /* font-family: 'Noah',  sans-serif; */
    /* font-family: 'Helvetica', sans-serif; */
    /* font-family: 'Arial', sans-serif; */
    /* font-family: "Bebas Neue", sans-serif; */
    font-weight: 400;
    font-style: normal;
    letter-spacing: 10%;
}

.container {
    max-width: 2560px; 
    width: 90%;
    margin: 0 auto;
    padding: .8rem;
}

a {
    text-decoration: none;
    color: var(--text-color-primary);
}

main {
    flex: 1 1 auto;
}

.effectt {
    height: 20%;
    width: 100%;
    background: #000005;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(-10%);
    top: 100%;
    right: 0;
    z-index: 5;
    filter: blur(20px);
}

.link_interactive {
    width: fit-content;
    height: fit-content;
    cursor: pointer;
}

.underline_indicator {
    width: 0.5rem;
    height: 1px;
    background: green;
    margin: 0 auto;
    border-radius: 10px;
    transition: all .2s ease;
}

.link_interactive:hover .underline_indicator {
    width: 80%;
}

/* media desktop start */

/* @media screen and (max-width: 2560px) {
    .container {
      max-width: 1440px; 
    }
  }
  
  @media screen and (max-width: 1440px) {
    .container {
      max-width: 1200px;
    }
  }

@media screen and (max-width: 1600px) {
    .container {
        padding: .8rem 4.5rem;
    }
}

@media screen and (max-width: 1280px) {
    .container {
        padding: .8rem 3.8rem;
    }
} */
/* media desktop end */


.slider-tooltip {
	position: absolute;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 5px 10px;
	border-radius: 5px;
	font-size: 14px;
	display: none;
	pointer-events: none;
	white-space: nowrap;
	z-index: 9999;
  }