@import "variables.css";
@import "header.css";
@import "button.css";
@import "footer.css";
@import "card.css";
@import "form.css";
@import "sidebar.css";

html,*{
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    margin: 0;
    padding: 0;
    background: linear-gradient(0deg, rgb(0, 9, 44) 0%, rgb(0, 22, 58) 100%);
    min-height: 100vh;
}

::-webkit-scrollbar {
    height: 3px;
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-5);
    border-radius: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

body{
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Roboto,  sans-serif;
    background: linear-gradient(0deg, rgb(0, 9, 44) 0%, rgb(0, 22, 58) 100%);
    color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

// Убираем возможные белые линии
* {
    border-color: transparent;
}

// Убираем дефолтные отступы браузера
*::before,
*::after {
    border-color: transparent;
}

// Убираем возможные белые границы у элементов
div, section, article, aside, nav, header, footer, main {
    border: none;
    outline: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    height: inherit;
}

a {
    text-decoration: none;
}

.admin-bar main {
    margin-top: 30px;
}

main {
    margin-top: 65px;
    flex: 1 0 auto;
    display: flex;
    width: 100%;
}

footer {
    flex: 0 0 auto;
}


table {
    margin-block-start: 15px!important;
    margin-block-end: 15px!important;
    border-collapse: collapse;
}

table td {
    border: 1px solid white;
    padding: 10px;
}

.table_wrapper tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.1);
}

.table_wrapper {
    overflow: auto;
}

.arrow_wrapper {
    display: flex;
    align-items: center;
    gap: 10px;

    .arrow {
        position: static;
        width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--color-7);
        height: 32px;
        background: var(--color-7);
        cursor: pointer;
        border-radius: 8px;

        svg {
            width: 14px;
            height: 14px;
        }

        &.arrow--disabled {
            opacity: 0.5;
        }
    }
}

.navigation-wrapper .arrow.arrow--disabled {
    display: none;
}



.swiper-button-next:after, .swiper-button-prev:after {
    color: white;
    font-weight: bold;
}

.swiper-button-next {
    right: 0;
    left: auto;
}

.swiper-button-prev {
    left: 0;
    right: auto;
}

.block__head__title {
    font-size: 14px;
    color: white;
}

html :where(.wp-block) {
    max-width: 100vw;
}

section {
    padding-bottom: 40px;
}

.wp-block-group p a {
    color: var(--color-4);
}


.content_wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.page__content {
    flex: 1;

}

body.active  .page__content {
    filter: blur(10px);
}


@media (max-width: 768px) {
    .play-button {
    height: 40px;
    width: 40px;
}
.demo-button {
    padding: 5px 5px;
}
}



