@font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat-Regular.woff2);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url(../fonts/Montserrat-Medium.woff2);
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url(/resource/themes/youknow/assets/fonts/Montserrat-SemiBold.woff2);
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url(/resource/themes/youknow/assets/fonts/Montserrat-Light.woff2);
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url(/resource/themes/youknow/assets/fonts/Montserrat-Bold.woff2);
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url(/resource/themes/youknow/assets/fonts/Montserrat-ExtraBold.woff2);
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "YKIcon";
    src: url(/resource/themes/youknow/assets/fonts/youknow-icon.woff2);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Icon";
    src: url(../fonts/Youknow-icon.woff);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "achievement-icon";
    src: url(../fonts/achievement-icon.woff2);
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat';
    outline: none;
    font-size: 14px;
    &::after,
    &::before {
        box-sizing: border-box;
    }
}
:root {
    --main-color: #fff;
    --account-color: #fedf3d;
    --news-color: #2df88c;
    --news-color-2: #b9ffda;
    --radio-color: #68a9ff;
    --video-games-color: #e53046;
    --account-bg: #363539;
    --bg: #201f24;
    --bg-2: #f9f9f9;
    --bg-3: #efefef;
    --bg-4: #fff;
    --bg-5: #f5f5f5;
    --bg-6: #26282e;
    --bg-7: #201f24;
    --border: #e6e6e6;
    --border-2: #aaa;
    --border-3: #999;
    --border-4: #26282e;
    --border-5: #363539;
    --text: #000;
    --text-2: #29282e;
    --text-3: #999;
    --text-4: #fff;
    --text-5: #575c66;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-thumb {
    border: 1px solid var(--border-5);
    background: #fff;
}
::-webkit-scrollbar-track {
    background: var(--border-5);
}
html {
    width: 100%;
    overflow-x: hidden;
}
a,
button {
    transition: .3s linear;
}
h1,
h2,
h3 {
    font-weight: 600;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
}
input[type=text],
input[type=password],
input[type=tel] {
    height: 50px;
    background: #fff;
    padding: 0 20px;
    font-size: 12px;
    color: #1f1f1f;
    border: 1px solid #b9b9b9;
}
input:focus {
    border: 1px solid #707070;
}
input[type=submit],
.btn {
    height: 50px;
    border: none;
    background: #2df88c;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: #1f1f1f;
    cursor: pointer;
    &:hover {
        background: #2bd47a;
    }
    &:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
}
button {
    cursor: pointer;
}
input:disabled,
input:disabled:hover,
.check-box input:disabled + label::before {
    background: #e6e6e6;
}
input.red {
    border: 1px solid #ff3a3a;
}
.check-box input {
    display: none;
}
.check-box label {
    padding: 5px 0 0 32px;
    font-size: 12px;
    color: #1f1f1f;
    position: relative;
    cursor: pointer;
    display: block;
    line-height: 18px;
}
.check-box label a {
    font-size: 12px;
    color: #1f1f1f;
    text-decoration: underline;
}
.check-box label::before {
    display: block;
    width: 22px;
    min-width: 22px;
    height: 24px;
    background: #fff;
    margin-right: 10px;
    content: '';
    border: 1px solid #b9b9b9;
    position: absolute;
    top: 0;
    left: 0;
}
.check-box input.red + label::before {
    border: 1px solid #ff3a3a;
}
.check-box input:checked + label::after {
    color: #1f1f1f;
    font-size: 14px;
    content: '\e91f';
    position: absolute;
    left: 5px;
    top: 6px;
    font-family: 'YKIcon';
}
a {
    text-decoration: none;
}
ins {
    width: 100%;
    min-height: 100%;
    justify-content: center;
    align-items: center;
}
.youplayer {
    display: none;
}
.wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}
.user-avatar {
    background: var(--account-bg);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    &.default {
        img {
            width: 26px;
            height: 26px;
        }
    }
    &.admin {
        border: 3px solid var(--account-color);
        &::after {
            content: 'А';
            width: 23px;
            height: 23px;
            border: 4px solid var(--bg);
            background: var(--account-color);
            border-radius: 50%;
            position: absolute;
            right: -8px;
            bottom: -8px;
            font-size: 12px;
            font-weight: 700;
            color: var(--bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat';
        }
    }
    img {
        width: 34px;
        height: 34px;
        object-fit: cover;
        border-radius: 50%;
    }
}
header {
    background: var(--bg);
    position: relative;
    z-index: 99;
}
header .wrapper {
    height: 76px;
    display: flex;
    align-items: center;
}
header .logo {
    width: 90px;
    min-width: 90px;
    height: 40px;
    margin-right: 100px;
}
footer .bottom .logo {
    width: 190px;
    min-width: 190px;
    height: 40px;
    background-image: url(/resource/themes/youknow/assets/images/logo/logo.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 90px;
    position: relative;
}
header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
footer .bottom .logo a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 90px;
}
header .news-logo,
footer .bottom .news-logo {
    background-image: url(/resource/themes/youknow/assets/images/logo/logo-win.svg);
}
header .radio-logo,
footer .bottom .radio-logo {
    background-image: url(/resource/themes/youknow/assets/images/logo/logo-win.svg);
}

header .menu a:nth-child(3):hover:before,
header .menu .selected:nth-child(3):before {
    background: #ffff49;
}
header .menu a:nth-child(4):hover:before,
header .menu .selected:nth-child(4):before {
    background: #e6e6e6;
}
header,
footer {
    .menu-wrap,
    .bottom .menu {
        width: 100%;
        .ws-menu {
            display: flex;
            gap: 45px;
            .item {
                a {
                    color: var(--text-4);
                    font-size: 12px;
                    text-transform: uppercase;
                    position: relative;
                    &::after,
                    &::before {
                        display: block;
                        content: '';
                        width: 4px;
                        height: 4px;
                        position: absolute;
                        top: 2px;
                        left: -9px;
                    }
                    &::after {
                        bottom: 2px;
                        top: unset;
                    }
                }
                &.news {
                    &:hover,
                    &.selected {
                        a {
                            &::after,
                            &::before {
                                background: var(--news-color);
                            }
                        }
                    }
                }
                &.radio {
                    &:hover,
                    &.selected {
                        a {
                            &::after,
                            &::before {
                                background: var(--radio-color);
                            }
                        }
                    }
                }
                &.videogames {
                    &:hover,
                    &.selected {
                        a {
                            &::after,
                            &::before {
                                background: var(--video-games-color);
                            }
                        }
                    }
                }
            }
        }
    }
    .icon-block {
        display: flex;
        align-items: center;
        gap: 40px;
        div,
        a {
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
        }
        div {
            font-family: YKIcon;
            &:hover {
                box-shadow: 0 3px 6px #000;
            }
        }
        .search:before {
            content: '\e915';
        }
    }
}
header .icon-block .cart {
    background-image: url(/resource/themes/youknow/assets/images/icons/cart.svg);
}
header .icon-block .player {
    border: 1px solid #707070;
    cursor: default;
    justify-content: space-between;
    width: 80px;
}
header .icon-block .player div {
    cursor: pointer;
    box-shadow: unset;
    height: 100%;
    align-items: center;
}
header .icon-block .player div:hover {
    cursor: pointer;
    box-shadow: unset;
    background-color: #29282e;
}
header .icon-block .player .play:before {
    content: '\e913';
    padding-left: 2px;
}
header .icon-block .player .played:before {
    content: '\e912';
    padding-left: 0;
}
header .icon-block .player .more:before {
    content: '\e914';
}
header .main-player {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: 1s;
    z-index: 3;
}
header .main-player-show {
    max-height: 90vh;
}
header .main-player .player {
    background: #e6e6e6;
    padding: 20px 0;
}
header .main-player .player .wrapper {
    display: flex;
    justify-content: space-between;
    height: unset;
}
header .main-player .player .title {
    display: flex;
    align-items: center;
    width: 270px;
    min-width: 270px;
}
header .main-player .player .title a {
    margin-left: auto;
}
header .main-player .player .title a:after {
    font-family: YKIcon;
    content: '\e909';
    color: #18171c;
    font-size: 16px;
    transition: color 0.2s linear;
}
header .main-player .player .title .img {
    width: 68px;
    min-width: 68px;
    margin-right: 20px;
}
header .main-player .player .title .img img {
    width: 100%;
    display: block;
}
header .main-player .player .title p {
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
}
header .main-player .player .title span {
    font-size: 12px;
}
header .main-player .player .controls {
    display: flex;
    align-items: center;
    margin: 0 50px;
}
header .main-player .player .controls .star {
    cursor: pointer;
    display: none;
}
header .main-player .player .controls .star:before {
    font-family: YKIcon;
    content: '\e919';
    color: #18171c;
    font-size: 20px;
}
header .main-player .player .controls .buttons {
    display: flex;
    align-items: center;
    margin: 0 50px;
}
header .main-player .player .controls .buttons div {
    font-family: YKIcon;
    color: #016eff;
    cursor: pointer;
    padding: 5px;
}
header .main-player .player .controls .buttons .play {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(153, 153, 153, 0.51);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 25px;
}
header .main-player .player .controls .buttons .play:before {
    content: '\e913';
    font-size: 20px;
    margin-left: 4px;
    transition: color 0.2s linear;
}
header .main-player .player .controls .buttons .played:before {
    content: '\e912';
    margin-left: 0;
    transition: color 0.2s linear;
}
header .main-player .player .controls .buttons .back:before {
    content: '\e91a';
    font-size: 12px;
    transition: color 0.2s linear;
}
header .main-player .player .controls .buttons .forward:before {
    content: '\e91b';
    font-size: 12px;
    transition: color 0.2s linear;
}
header .main-player .player .volume {
    display: flex;
    align-items: center;
    margin-top: 6px;
}
header .main-player .player .volume .icon {
    width: 25px;
    margin-right: 11px;
    height: 25px;
    display: flex;
    align-items: center;
}
header .main-player .player .volume .icon:before {
    font-family: YKIcon;
    color: #18171c;
    cursor: pointer;
    content: '\e91c';
    font-size: 16px;
    transition: color 0.2s linear;
}
header .main-player .player .volume .mute:before {
    content: '\e91e';
    font-size: 25px;
}
header .main-player .player .volume .progress-bar {
    width: 90px;
    padding: 10px 0;
    cursor: pointer;
}
header .main-player .player .volume .progress-bar .bar {
    width: 100%;
    height: 4px;
    background: #c5c5c5;
}
header .main-player .player .volume .progress-bar .bar div {
    width: 30%;
    height: 4px;
    background-color: #18171c;
    transition: background-color 0.2s linear;
}
header .main-player .player .search {
    width: 270px;
}
.search-result {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: none;
    &.show {
        display: block;
    }
    .board {
        background: var(--bg-7);
        border: 1px solid var(--border-4);
        height: calc(100% - 80px);
        margin-top: 50px;
        margin-bottom: 30px;
        padding-bottom: 35px;
        .top {
            padding: 30px 30px 20px;
            form {
                display: flex;
                gap: 10px;
                fieldset {
                    border: none;
                    width: 100%;
                    position: relative;
                    input {
                        width: 100%;
                        background: var(--bg-6);
                        border: none;
                        padding: 16px 48px 16px 16px;
                        font-size: 16px;
                        color: var(--text-4);
                        &:-webkit-autofill {
                            caret-color: var(--text-4);
                            -webkit-text-fill-color: var(--text-4);
                            -webkit-box-shadow: inset 0 0 0 50px var(--bg-6) !important;
                            box-shadow: inset 0 0 0 50px var(--bg-6) !important;
                        }
                    }
                    label {
                        position: absolute;
                        right: 0;
                        top: 0;
                        padding: 16px;
                        font-family: Icon;
                        font-size: 16px;
                        color: var(--text-4);
                        cursor: pointer;
                        &:before {
                            content: '\e000';
                        }
                    }
                }
                .close {
                    width: 50px;
                    height: 50px;
                    border: 1px solid var(--border-4);
                    cursor: pointer;
                    font-family: Icon;
                    color: var(--text-5);
                    font-size: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    &:hover {
                        color: var(--text-4);
                    }
                    &::before {
                        content: '\e907';
                    }
                }
            }
        }
        .category {
            border-bottom: 1px solid var(--border-5);
            padding: 0 30px;
            display: flex;
            gap: 20px;
            margin-bottom: 35px;
            overflow-x: auto;
            scrollbar-width: none;
            &::-webkit-scrollbar {
                display: none;
            }
            div {
                padding: 10px 10px 10px 18px;
                color: var(--text-4);
                font-size: 12px;
                text-transform: uppercase;
                position: relative;
                top: 1px;
                cursor: pointer;
                white-space: nowrap;
                &.selected {
                    border-bottom: 2px solid var(--news-color);
                    &.radio {
                        border-bottom: 2px solid var(--radio-color);
                    }
                    &.video-games {
                        border-bottom: 2px solid var(--video-games-color);
                    }
                    &::before,
                    &::after {
                        content: '';
                        width: 4px;
                        height: 4px;
                        position: absolute;
                    }
                    &::before {
                        top: 12px;
                        left: 10px;
                    }
                    &::after {
                        top: 19px;
                        left: 10px;
                    }
                }
                &.news::after,
                &.news::before {
                    background: var(--news-color);
                }
                &.radio::after,
                &.radio::before {
                    background: var(--radio-color);
                }
                &.video-games::after,
                &.video-games::before {
                    background: var(--video-games-color);
                }
            }
        }
        .result {
            padding: 0 30px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: calc(100% - 176px);
            &.news {
                &::-webkit-scrollbar-thumb {
                    background: var(--news-color);
                }
                .item-category {
                    border: 1px solid var(--news-color);
                    color: var(--news-color-2);
                }
            }
            &.radio {
                &::-webkit-scrollbar-thumb {
                    background: var(--radio-color);
                }
                .item {
                    img {
                        width: 120px;
                        height: 120px;
                    }
                    p {
                        color: var(--radio-color);
                    }
                }
            }
            &.video-games {
                &::-webkit-scrollbar-thumb {
                    background: var(--video-games-color);
                }
                .item {
                    img {
                        width: 120px;
                        height: 138px;
                    }
                    p {
                        color: var(--video-games-color);
                    }
                    .item-category {
                        border: 1px solid var(--video-games-color);
                        color: var(--video-games-color);
                    }
                }
            }
            .item {
                display: flex;
                gap: 20px;
                border: 1px solid var(--border-5);
                position: relative;
                img {
                    width: 180px;
                    height: 127px;
                    object-fit: cover;
                }
                a {
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                }
                .content {
                    padding: 10px 0;
                    h2 {
                        font-size: 16px;
                        color: var(--text-4);
                        margin-bottom: 6px;
                    }
                    p {
                        font-size: 13px;
                        margin-bottom: 6px;
                    }
                    .text {
                        color: var(--text-3);
                        font-size: 13px;
                        margin-bottom: 10px;
                    }
                    .meta {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        .item-category {
                            padding: 4px 10px;
                            text-transform: uppercase;
                            font-size: 12px;
                        }
                        .date {
                            color: var(--text-3);
                            font-size: 13px;
                        }
                    }
                }
            }
        }
    }
}
.banner {
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.banner .img {
    height: 100%;
}
.pagination {
    display: flex;
    align-items: center;
}
.pagination button {
    border: 1px solid #3a3840;
    color: #fff;
    background: #18171c;
    font-size: 12px;
    padding: 15px 20px;
    cursor: pointer;
}
.pagination button:first-child {
    position: relative;
    right: -1px;
}
.pagination .hide {
    display: none;
}
.pagination button:hover {
    background: #3a3840;
}
.pagination input {
    width: 28px;
    height: 28px;
    border: 1px solid #3a3840;
    background: #18171c;
    text-align: center;
    color: #fff;
    margin: 0 5px 0 35px;
    padding: 5px;
}
.pagination p {
    color: #999;
    font-size: 12px;
}
footer {
    background: #201f24;
    margin-top: auto;
}
footer .top {
    color: #fff;
    font-size: 12px;
    font-weight: 100;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #707070;
}
footer .top a {
    color: #fff;
    font-size: 12px;
    font-weight: 100;
}
footer .bottom .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0 20px;
}
footer .bottom .row .social {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
}
footer .bottom .row .social a {
    width: 40px;
    height: 40px;
    border: 1px solid #707070;
    font-family: YKIcon;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    transition: background-color 0.2s linear, box-shadow 0.2s linear, border-color 0.2s linear;
}
footer .bottom .row .social .vk:before {
    content: "\e90e";
}
footer .bottom .row .social .insta {
    position: relative;
    &::before {
        content: "\e90f";
        z-index: 1;
    }
    &::after {
        content: '';
        position: absolute;
        inset: -1px;
        opacity: 0;
        transition: opacity 0.2s linear;
        background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    }
}
footer .bottom .row .social .facebook::before {
    content: "\e90d";
}
footer .bottom .row .social .youtube::before {
    content: "\e918";
}
footer .bottom .row .social .twitter::before {
    content: "\e90f";
    font-family: icon;
}
footer .bottom .copyright {
    text-align: center;
    color: #999;
    font-size: 12px;
    font-weight: 100;
    padding-bottom: 20px;
}
footer .bottom .copyright a {
    color: #999;
    font-size: 12px;
    font-weight: 100;
}
footer {
    .contacts {
        margin: 30px 0 50px;
        display: grid;
        grid-template-columns: auto 266px 1fr;
        gap: 10px;
        div * {
            color: var(--grey-66, rgba(170, 170, 170, 0.67));
            font-family: Montserrat;
            font-size: 12px;
            font-weight: 400;
            text-transform: uppercase;
        }
        > div {
            border-right: 1px solid var(--main-color);
            padding-right: 20px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        button {
            margin: 0 0 auto auto;
            background: transparent;
            color: #fff;
            font-size: 12px;
            font-weight: 400;
            text-transform: uppercase;
            padding: 10px 30px;
            height: 40px;
            outline: none;
            border: 1px solid #fff;
            transition: color 0.3s linear, border-color 0.3s linear;
        }
    }
}
.contacts-modal-thanks,
.contacts-modal {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(24, 23, 28, 0.4);
    z-index: 1000;
    overflow-y: auto;
    scrollbar-width: none;
    &.active {
        display: flex;
    }
    .window-body {
        width: calc(100% - 40px);
        max-width: 780px;
        background: #201f24;
        position: absolute;
        top: -420px;
        border: 1px solid #fff;
        padding: 30px 30px 51px 30px;
        animation: show-feedback 0.5s forwards;
        * {
            color: #fff;
        }
        .top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            border-bottom: none;
            margin-bottom: 20px;
            .close {
                background: none;
                outline: none;
                border: none;
                &::before {
                    content: '\e907';
                    font-family: icon;
                    line-height: 1;
                    font-size: 20px;
                    transition: color 0.2s linear;
                }
            }
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            > div {
                display: grid;
                align-items: center;
                grid-template-columns: 200px 1fr;
                span {
                    transition: color .2s linear;
                    &:has(+ textarea:focus),
                    &:has(+ input:focus) {
                        color: #e53046;
                    }
                }
                :where(input, textarea) {
                    background: #201f24;
                    padding: 10px 20px;
                    border: 1px solid #fff;
                    transition: border-color .2s linear;
                    &:focus {
                        border-color: #e53046;
                    }
                    &:autofill,
                    &:-webkit-autofill,
                    &:-webkit-autofill:hover,
                    &:-webkit-autofill:focus,
                    &:-webkit-autofill:active {
                        -webkit-box-shadow: 0 0 0 30px #201f24 inset !important;
                        -webkit-text-fill-color: #fff;
                    }
                }
                input {
                    height: initial;
                }
                textarea {
                    height: 80px;
                    resize: none;
                }
            }
            button[type="submit"] {
                background: none;
                border: 1px solid #fff;
                padding: 10px 25px;
                align-self: end;
                width: 200px;
                margin-top: 20px;
                transition: color .2s linear, border-color .2s linear;
            }
        }
    }
}
@keyframes show-feedback {
    0% {
        top: -420px;
    }
    100% {
        top: calc(50% - 210px);
    }
}
.loading {
    background: rgba(32, 31, 36, 0.8);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: 0.5s loading-bg linear;
    animation-delay: 0.5s;
    animation-fill-mode: both;
    opacity: 0;
    div {
        width: 40px;
        height: 40px;
        margin: 0 10px;
        transform: scale(0.3);
        border: 1px solid transparent;
        animation: 1.45s loading linear infinite;
        &:nth-child(1) {
            animation-delay: 0.6s;
        }
        &:nth-child(2) {
            animation-delay: 0.75s;
        }
        &:nth-child(3) {
            animation-delay: 0.9s;
        }
        &:nth-child(4) {
            animation-delay: 1.05s;
        }
        &:nth-child(5) {
            animation-delay: 1.3s;
        }
    }
}
.loader {
    position: fixed;
    display: flex;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    z-index: 100;
    background: var(--bg-2, #201f24);
    &.hide {
        display: none;
    }
    & > div {
        position: relative;
        width: 12px;
        height: 12px;
        will-change: transform, width, height;
        transform: rotate(0);
        animation: scale-loader 1.6s linear forwards infinite, rotate-loader 6.4s linear forwards infinite;
    }
    span {
        position: absolute;
        display: inline-block;
        width: 4px;
        height: 4px;
        will-change: transform, width, height;
        transform: rotate(0);
        background: var(--main-color, #fff);
        animation: square-scale 1.6s linear forwards infinite, square-loader 6.4s linear forwards infinite;
        &:nth-child(1) {
            left: 0;
            top: 0;
        }
        &:nth-child(2) {
            right: 0;
            top: 0;
        }
        &:nth-child(3) {
            bottom: 0;
            right: 0;
        }
        &:nth-child(4) {
            bottom: 0;
            left: 0; 
        }
    }
}
@keyframes scale-loader {
    0% {
        width: 12px;
        height: 12px;
    }
    40% {
        width: 34px;
        height: 34px;
    }
    50% {
        width: 34px;
        height: 34px;
    }
    90% {
        width: 12px;
        height: 12px;
    }
    100% {
        width: 12px;
        height: 12px;
    }
}
@keyframes rotate-loader {
    0% {
        transform: rotate(0);
    }
    22% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    47% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    73% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    97% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.grecaptcha-badge {
    display: none;
}
@keyframes square-scale {
    0% {
        width: 4px;
        height: 4px;
    }
    40% {
        width: 11px;
        height: 11px;
    }
    80% {
        width: 11px;
        height: 11px;
    }
    90% {
        width: 4px;
        height: 4px;
    }
    100% {
        width: 4px;
        height: 4px;
    }
}
@keyframes square-loader {
    0% {
        transform: rotate(0);
    }
    12% {
        transform: rotate(0);
    }
    20% {
        transform: rotate(90deg);
    }
    25% {
        transform: rotate(90deg);
    }
    37% {
        transform: rotate(90deg);
    }
    45% {
        transform: rotate(180deg);
    }
    50% {
        transform: rotate(180deg);
    }
    62% {
        transform: rotate(180deg);
    }
    70% {
        transform: rotate(270deg);
    }
    75% {
        transform: rotate(270deg);
    }
    87% {
        transform: rotate(270deg);
    }
    95% {
        transform: rotate(360deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes loading {
    0% {
        transform: scale(1);
        border: 1px solid #2df88c;
    }
    100% {
        transform: scale(0.3);
        border: 1px solid transparent;
    }
}
@keyframes loading-bg {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@media screen and (max-width: 1310px) {
    .wrapper {
        padding: 0 20px;
    }
    header .wrapper {
        justify-content: space-between;
        height: 70px;
    }
    header .menu-wrap {
        position: absolute;
        top: 70px;
        right: 0;
        width: 0;
        height: calc(100vh - 70px);
        background: #18171c;
        z-index: 999;
        transition: 0.3s;
        overflow-y: auto;
        overflow-x: hidden;
    }
    header .menu-wrap .ws-menu {
        width: 320px;
        display: flex;
        flex-direction: column;
        padding: 30px;
    }
    header .ws-menu a {
        width: 100%;
        margin: 15px 0;
    }
    header .menu-show {
        width: 320px;
    }
    header .icon-block {
        margin-left: auto;
        gap: 20px;
    }
    header .hamburger {
        border: 1px solid #707070;
        cursor: pointer;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 40px;
        min-width: 40px;
        height: 40px;
        margin-left: 20px;
    }
    header .hamburger:hover {
        box-shadow: 0 3px 6px #000;
    }
    header .hamburger div {
        background: #fff;
        width: 100%;
        height: 2px;
    }
    footer .bottom .menu .ws-menu {
        display: none;
    }
    footer {
        .contacts {
            margin-top: 10px;
            row-gap: 30px;
            div {
                grid-row: 2/3;
            }
            button {
                grid-column: span 3;
            }
        }
    }
}
@media screen and (max-width: 768px) {
    .wrapper {
        padding: 0 15px;
    }
    header .menu .menu-search {
        order: -1;
        margin-bottom: 20px;
    }
    header .ws-menu .menu-search form {
        display: flex;
    }
    header .ws-menu .menu-search form input {
        width: calc(100% - 40px);
        height: 40px;
        padding: 0 12px;
        border: none;
        font-size: 12px;
    }
    header .ws-menu .menu-search form .send {
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #201f24;
        color: #fff;
        font-size: 16px;
        font-family: YKIcon;
    }
    header .ws-menu .menu-search form .send:hover {
        box-shadow: 0 3px 6px #000;
    }
    header .ws-menu .menu-search form .send:before {
        content: '\e915';
    }
    header .main-player .player .wrapper {
        flex-direction: column;
    }
    header .main-player .player .title {
        width: 100%;
        margin-bottom: 30px;
    }
    header .main-player .player .controls {
        flex-wrap: wrap;
        width: 100%;
        margin: 0;
    }
    header .main-player .player .controls .star {
        display: flex;
        justify-content: center;
        width: 68px;
        order: 2;
    }
    header .main-player .player .controls .buttons {
        width: 100%;
        justify-content: center;
        margin-bottom: 40px;
    }
    header .main-player .player .volume {
        width: calc(100% - 68px);
        justify-content: center;
        padding-right: 68px;
        order: 3;
    }
    header .main-player .player .volume .mute {
        padding-top: 2px;
    }
    footer .bottom .row {
        flex-direction: column;
    }
    footer .bottom .logo {
        background-position: center;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
        width: initial;
        min-width: initial;
    }
    footer .bottom .logo a {
        position: static;
    }
    footer .contacts {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        div {
            border-right: none;
            border-bottom: 1px solid var(--main-color);
            padding-bottom: 20px;
            padding-right: 0;
            p {
                max-width: 335px;
            }
        }
        button {
            order: -1;
            margin: 0 auto 20px;
        }
    }
    .contacts-modal .window-body form > div {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 10px;
        :where(input, textarea) {
            width: 100%;
        }
    }
}
@media screen and (max-width: 440px) {
    footer .bottom .row .social {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    header .logo {
        margin-right: 0;
    }
}
@media screen and (hover: hover) {
    footer .bottom .row .social a {
        &.youtube:hover {
            box-shadow: 0px 0px 20px 2px rgba(205, 32, 31, 0.70);
            background-color: rgb(205, 32, 31);
            border-color: rgb(205, 32, 31);
        }
        &.facebook:hover {
            box-shadow: 0px 0px 20px 2px rgba(1, 101, 225, 0.70);
            background-color: rgb(1, 101, 225);
            border-color: rgb(1, 101, 225);
        }
        &.vk:hover {
            box-shadow: 0px 0px 20px 2px rgba(89, 125, 163, 0.70);
            background-color: rgb(89, 125, 163);
            border-color: rgb(89, 125, 163);
        }
        &.twitter:hover {
            box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.70);
            background-color: rgb(0, 0, 0);
            border-color: rgb(0, 0, 0);
        }
        &.insta:hover {
            box-shadow: 0px 0px 20px 2px #c1358470;
            &::after {
                opacity: 1;
            }
        }
    }
    header .main-player {
        .title a:hover::after {
            color: var(--main-color);
        }
        .player {
            .progress-bar:hover .bar div {
                background-color: var(--main-color);
            }
            .volume .icon:hover::before {
                color: var(--main-color);
            }
            .controls .buttons {
                :is(.forward, .back, .play):hover:before {
                    color: var(--main-color);
                }
            }
        }
    }
    .contacts-modal .window-body {
        .top .close:hover::before {
            color: #e53046;
        }
        form {
            button[type="submit"]:hover {
                color: #e53046;
                border-color: #e53046;
            }
        }
    }
    footer .contacts .open-contact-us-form:hover {
        color: #e53046;
        border-color: #e53046;
    }
}