/* RESET, BASIC UI SETTINGS
----------------------------------------------- */
body {
    --bg: #16151a;
    --text-color: #000;
    --text-color1: #fff;
    --color1: #0f50f0;
    --color2: #6c74f7;
    --color3: #d39bff;
    --color4: #ffab6e;
    --color5: #74f7b9;
    --color6: #1e1d23;
    --color7: #2b2a2f;
    --color8: #323136;
    --color9: #edf3f9;
    --gradient: linear-gradient(300deg, #ff0178 5%, #006ce7 50%, #f10d59 98%, #4c0a54);
    --light: rgb(242 242 242 / 10%);
    --two-light: rgb(242 242 242 / 30%);
}

body.modal-opened {
    overflow: hidden;
}

* {
    background: transparent;
    margin: 0;
    padding: 0;
    outline: none;
    border: 0;
    box-sizing: border-box;
}

ol, ul {
    list-style: none;
}

img, table, iframe, video, frame, embed, object {
    max-width: 100%;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(120% 150% at 90% -3%, #20f, #000c54 22.49%, #010a41 33.26% 64.14%, #4c0a54 85.82%, #ff0178) 0 0 / cover fixed;
    /*background: var(--bg);*/
    font-family: "Gilroy", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: normal;
    padding: 0;
    margin: 0;
    color: var(--text-color1);
    min-height: 100%;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
}

a {
    color: var(--text-color1);
    text-decoration: none;
}

.wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
}

.content {
    min-height: 100vh;
    margin-top: 120px;
    margin-bottom: 45px;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    width: calc(100% - 40px);
    position: relative;
}

.container-bg {
    background: var(--bg);
    border-left: 8px solid var(--color1);
    color: var(--text-color1);
    border-radius: 0 16px 16px 0;
    padding: 40px 60px;
}

@media (max-width: 425px) {
    .container-bg {
        padding: 25px 20px;
    }
}

.section {
    margin-bottom: 80px;
}

.section-title {
    margin-bottom: 30px;
    align-items: center;
}

.section-title h1,h2,h3,h4 {
    margin-bottom: 0;
}

.section-title a {
    color: var(--text-color1);
}

h1 {
    font-weight: bold;
    font-size: 45px;
    margin-bottom: 45px;
    position: relative;
}

@media (max-width: 768px) {
    h1 {
        font-size: 30px;
        margin-bottom: 25px;
    }
}

h2 {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 30px;
    position: relative;
}

@media (max-width: 768px) {
    h2 {
        font-size: 20px;
    }
}

h3 {
    font-weight: 600;
    font-size: 21px;
    line-height: 1.4;
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 768px) {
    h3 {
        font-size: 14px;
    }
}

h4 {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px;
    display: block;
}

.subtitle {
    opacity: 0.8;
    width: 800px;
    margin: 20px 0;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
    margin-top: 8px;
}

@media (max-width: 768px) {
    p {
        /*font-size: 14px;*/
        line-height: 25px;
    }
}

b, strong {
    font-weight: bold;
}

.overlay {
    position: fixed;
    z-index: 998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(10 10 10 / 30%);
    display: none;
}

/* INPUT, BUTTON
----------------------------------------------- */
button, select, textarea, input[type="text"], input[type="password"], input[type="button"], input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
    font-size: 16px;
    font-family: inherit;
}

button:not(.color-btn, .carousel__button), .button, .btn, input[type="button"], input[type="reset"], input[type="submit"] {
    display: inline-block;
    cursor: pointer;
    text-align: center;
    padding: 0 20px;
    width: auto;
    height: 45px;
    line-height: 40px;
    background-color: #f10d59;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

button:not(.color-btn, .carousel__button):hover, .button:hover, .btn:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    background-color: var(--color2);
    color: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0);
}

button:not(.color-btn, .carousel__button):active, input[type="button"]:active, input[type="submit"]:active {
    box-shadow: inset 0 1px 4px 0 rgba(0, 0, 0, 0.1);
}

.btn_blue {
    background: var(--color1);
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    display: inline-block;
    position: relative;
    transition-duration: 0.3s;
}

.btn_blue:hover {
    background: var(--color2);
}

.btn_light {
    background: var(--light);
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    display: inline-block;
    position: relative;
    transition-duration: 0.3s;
}

.btn_light:hover {
    background: var(--two-light);
}

.btn_light i, .btn_blue i {
    margin-left: 10px;
    font-size: 12px;
}

/* SNIPPETS
----------------------------------------------- */
.e-grid7 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 20px 20px;
    grid-auto-flow: row dense;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

@media (max-width: 425px) {
    .e-grid7 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.e-grid6 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    grid-gap: 20px 20px;
    grid-auto-flow: row dense;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

@media (max-width: 425px) {
    .e-grid6 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.e-grid5 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 20px 20px;
    grid-auto-flow: row dense;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

@media (max-width: 425px) {
    .e-grid5 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.e-grid4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 20px 20px;
    grid-auto-flow: row dense;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

@media (max-width: 425px) {
    .e-grid4 {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

.e-grid3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px 20px;
    grid-auto-flow: row dense;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

@media (max-width: 425px) {
    .e-grid3 {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

.e-grid2 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    grid-gap: 20px 20px;
    grid-auto-flow: row dense;
}

@media (max-width: 425px) {
    .e-grid2 {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}

.e-flex {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.e-flex_ae {
    align-items: center;
}

.e-column {
    flex-direction: column;
    flex-wrap: nowrap;
}

.e-flex50 {
    flex: 1 1 0;
    max-width: 100%;
    min-width: 50px;
}

.e-center {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.e-none, .hidden {
    display: none;
}

.e-nowrap {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    overflow: hidden;
}

.e-resp {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.e-w800 {
    max-width: 1170px;
    padding-top: 25px;
}

@media (max-width: 768px) {
    .e-swipe {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}

.e-clamp2 {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* DLE CODE
----------------------------------------------- */
.e-grid7>*:not(.short-movie_item) {
    grid-column: 1/-1;
}

#dle-content>*:not(.short-movie_item) {
    grid-column: 1/-1;
}

/* euro */

.autor {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.stories {
        background-color:#f10d59;
        border-radius: 50px;
        align-items: center;
        padding: 5px;
}

.flag {
    margin-bottom: 8px;
    position: relative;
    width: 80px;
}

.logo {
    position: relative;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-col {
    flex-direction: column;
}

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

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

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

.inline-flex {
    display: inline-flex;
}

/*Shortstory*/

.dark-overlay {
    background: #000;
    opacity: 0.8;
}

.heading {
    font-size: 32px;
    line-height: 32px;
    font-weight: 900;
}

.absolute {
    position: absolute;
}

.pb-1 {
    padding-block: 5px;
}

.pb-2 {
    padding-bottom: 40px;
}

.px-inline {
    padding-inline: 16px;
}

.bottom {
    bottom: 40px;
}

.inset-inline {
    inset-inline: 40px;
}

.mx-inline {
    margin-inline: 8px;
}

.h-23 {
    height: 66.6667%;
}

.gap-y-1 {
    row-gap: 8px;
}

.gap-x-2 {
    column-gap: 16px;
}

.gap-1 {
    gap: 8px;
}

.gap-4 {
    gap: 12px;
}

.wh-3 {
    width: 32px;
    height: 32px;
}

.mr-1 {
    margin-right: 7px;
    margin-top: 8px;
}

.z-1 {
    z-index: 1;
}

.text-primary {
    color: #010a41;
}

.font-medium {    
    font-weight: 500;
}

.body-xs {
    font-size: 12px;
    line-height: 12px;
}

.bg-white {
    background-color: #fff;
}

.rounded-full {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.ml-10 {
    margin-left: -10px;
}

.ml-20 {
    margin-left: -20px;
}

/* ПЕСНЯ */
.song {
    position: relative;
}

.pg {
    padding: 10px;
}

.bg-fon {
    background-color: #f2f2f21a;
}

.bg-black {
    background-color: #010a41
}

.rounded {
    border-radius: 50px;
}
.text-accent {
    color: #f10d59;
    height: 48px;
    width: 48px;
}

.font-bold {
font-weight: 700;
}

.gap {
  gap: 10px;
}

/* ДОП. ПОЛЯ */

.p-1 {
    padding: 8px;
}

.p-2 {
    padding: 16px;
}
.rounded-md {
    border-radius: 8px;
}

.gap-2 {
    gap: 17px;
}
.gap-3 {
    gap: 24px;
}

.wh {
    width: 36px;
    height: 36px;
}

.wh-2 {
    width: 24px;
    height: 24px
}

.text-sm {
    font-size: 15px;
    line-height: 16px;
}

.mt-8 {
   margin-top: 8px;
}

.mb-8 {
    margin-bottom: 40px;
}

/*grid*/

.grid-container {  
  display: flex;
  margin-top: 200px;
  margin-bottom: 40px;
  gap: 40px;
  
}

.left {
  width: 30%;
}

.right {
  width: 70%;
}


@media screen and (max-width: 600px) {
  .grid-container {
    flex-direction: column;
    margin-top: 100px;
  }
  .left,
  .right {
    width: 100%;
  }
  .content {
    width: 100%;
  }
}
