

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Lato/Lato-Thin.ttf');

}
@font-face {
    font-family: 'Inter Black';
    src: url('../fonts/Lato/Lato-Black.ttf');

}
@font-face {
    font-family: 'Inter Bold';
    src: url('../fonts/Lato/Lato-Bold.ttf');

}
@font-face {
    font-family: 'Inter ExtraLight';
    src: url('../fonts/Lato/Lato-Light.ttf');

}
@font-face {
    font-family: 'Inter ExtraBold';
    src: url('../fonts/Inter/Inter-ExtraBold.ttf');

}
@font-face {
    font-family: 'Inter Light';
    src: url('../fonts/Inter/Inter-Light.ttf');

}
@font-face {
    font-family: 'Inter Medium';
    src: url('../fonts/Inter/Inter-Medium.ttf');

}
@font-face {
    font-family: 'Inter Regular';
    src: url('../fonts/Inter/Inter-Regular.ttf');

}
@font-face {
    font-family: 'Inter SemiBold';
    src: url('../fonts/Inter/Inter-SemiBold.ttf');

}

:root {
/*    !*
    --background-color: #151718;
    *!*/
    --text-color: #FBFAFB;
    --primary-color: #00c8ff;
    --border-color: #52525B;
    --dark-secondary: #1C1C1D;
    --error-color: #E3352F;
    --green-color: #10B981;
    --white-color: #fff;
}

.text-inter-extra-bold{
    font-family: 'Inter ExtraBold', sans-serif;
}
.text-inter{
    font-family: 'Inter', sans-serif;
}
.text-inter-black{
    font-family: 'Inter Black', sans-serif;
}
.text-inter-bold{
    font-weight: 500;
    font-family: 'Inter Bold', sans-serif;
}
.text-inter-extra-light{
    font-family: 'Inter ExtraLight', sans-serif;
}
.text-inter-light{
    font-family: 'Inter Light', sans-serif;
}
.text-inter-medium{
    font-family: 'Inter Medium', sans-serif;
}
.text-inter-regular{
    font-family: 'Inter Regular', sans-serif;
}
.text-inter-semibold{
    font-family: 'Inter SemiBold', sans-serif;
}


p {
    -webkit-text-size-adjust: none !important;
    /*
    padding: 0 0 48px 0;
    */
    margin: 0;
    font-size: 20px;
    line-height: 140%;
    color: #2F2F2F;
}

a img {
    border: 0;
}

input[type='submit']:hover {
    cursor: pointer;
}

form label.error {
    display: none !important;
}

.clearfix:after {
    content: " ";
    display: block;
    width: 100%;
    height: 0px;
    clear: both;
}

label.error {
    display: none !important;
}

body.compensate-for-scrollbar {
    overflow: visible;
    margin: 0;
}

.ref {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    text-decoration: none;
    display: block;
}

.header .hidden-on-desktop {
    display: none !important;
}
body form * {
    font-family: 'Inter Medium', sans-serif !important;
}


html {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter Medium', sans-serif;
    font-weight: 400;
/*    min-width: 767px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -moz-transition: all 0s;
    -webkit-transition: all 0s;
    transition: all 0s;
    overflow-x: hidden;
    background-color: var(--background-color);
    color: var(--text-color);*/
}
/*
    body form * {
        font-family: 'Inter Medium', sans-serif !important;
    }



.page-container {
    width: 100%;
    !*max-width: 1920px;*!
    box-sizing: border-box;
    position: relative;
    padding: 0;
    margin: 0 auto;
    opacity: 1;
    !*overflow-x: hidden;*!
}
*/
p a, li a {
    display: inline;
    color: #E81F76;
    text-decoration: none;
    border-bottom: 1px solid #E81F76;
}

p a:hover, li a:hover {
        border-color: transparent;
 }

.button, .button {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 48px;
    padding: 0px 30px;
    background: rgba(255,255,255,0.1);
    text-decoration: none;
    border: 0;
    border: 0px solid #fff;
    border-radius: 16px;
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    text-transform: none;
    color: #fff;
    -moz-transition: all 0.4s;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    outline: none;
    box-shadow: none;
    background-repeat: no-repeat;
    background-position: 0 0;
    font-family: Onest, sans-serif;
}

   
    .button:active {
        background: rgba(255,255,255,0.25);
    }

    .button a {
        color: inherit;
        text-decoration: none;
    }

    .button[disabled], .button[disabled]:hover, .button[disabled]:active, .button.disabled {
        cursor: default;
        background-color: #F4F3F7 !important;
        border-color: #F4F3F7 !important;
        color: #A0A0A0 !important;
    }


.transparent-button {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

    .transparent-button:hover {
        background: rgba(255,255,255,0.25);
        cursor: pointer;
    }

    .transparent-button:active {
        background: rgba(255,255,255,0.25);
    }

.white-button {
    color: #252525;
    background: #fff;
    border: 1px solid transparent;
}

    .white-button:hover {
        opacity: 0.8;
        background: #fff;
    }

        .white-button:hover svg path {
        }

    .white-button:active {
        opacity: 0.9;
        background: #fff;
    }

        .white-button:active svg path {
        }

.button-with-icon {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

    .button-with-icon span {
        flex: 0 1 0;
        white-space: nowrap;
    }

.red-button {
    background: #E81F76;
    color: #fff;
}

    .red-button:hover {
        background: #E81F76;
        color: #fff;
        opacity: 0.9;
    }

.red-outline-button {
    background: #fff;
    color: #252525;
}


.green-button {
    background: #00AA40;
    color: #fff;
}

    .green-button:hover {
        background: #00AA40;
        color: #fff;
        opacity: 0.9;
    }

    .green-button:active {
        background: #00AA40;
        color: #fff;
    }

.green-outline-button {
    background: #fff;
    border: 2px solid #00AA40;
    color: #252525;
}

    .green-outline-button:hover {
        background: #fff;
        border: 2px solid #00AA40;
        color: #252525;
        opacity: 0.9;
    }

.slick-prev, .slick-next {
    width: 48px;
    height: 48px;
    background: #E81F76 url(../img/interface/arrow-prev.png) no-repeat center center;
    border-radius: 50%;
    top: 100%;
    transform: none;
    border: 0px solid #00A552;
    margin-top: 32px;
}

.slick-slider .slick-prev {
    z-index: 2;
    left: auto;
    right: 0%;
    margin-right: 64px;
    background-image: url(../img/interface/arrow-prev.png);
}

.slick-prev:hover {
    opacity: 0.7;
}

.slick-next {
    left: auto;
    right: 0%;
    margin-right: 0px;
    background-image: url(../img/interface/arrow-next.png);
}

    .slick-next:hover {
        opacity: 0.7;
    }

    .slick-prev:before, .slick-next:before, .slick-prev:after, .slick-next:after {
        display: none;
    }

.green-slider .slick-prev, .green-slider .slick-next {
    background-color: #00AA40;
}


.main {
    clear: both;
    !*position: relative;*!
    padding: 0 0 0px 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0;
!*    color: #222;*!
    margin: 0 75px!important;
}

.diagnostics{
    display: flex;
    flex-direction: row!important;
    justify-content: space-around
}
.inner-section {
    width: 100%;
    max-width: 1456px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
    padding-bottom: 10px;
}

.header {
!*    position: absolute;
    top: 0;
    left: 0;
    width: 100%;*!
    padding: 32px 24px !important;
    z-index: 97;
    transition: all 0s;
    background-color: var(--background-color);
    !*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);*!
}

.inner-header {
    padding-bottom: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    display: inline-block;
}

    .header .logo a {
        text-decoration: none;
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        gap: 16px;
        color: #fff;
        font-size: 24px;
    }

    .header .logo img {
        display: block;
        max-width: 100%;
    }


.header-menu {
    display: inline-block;
    position: relative;
}

    .header-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        overflow: hidden;
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        gap: 24px;
    }

        .header-menu ul li {
            display: inline-block;
        }


            .header-menu ul li a {
                display: block;
                text-decoration: none;
                font-weight: 500;
                font-size: 14px;
                line-height: 150%;
                color: black;
!*                color: #FFFFFF;*!
                !*
                color: var(--text-color);
                *!
                border:0;
            }

                .header-menu ul li a:hover {
                    opacity: 0.8;
                }
                

            .header-menu ul li:first-child {
                display: flex;
                flex-flow: row wrap;
                align-items: center;
                gap: 8px;
            }

!*
                .header-menu ul li:first-child:after {
                    content: "";
                    display: block;
                    width: 16px;
                    height: 16px;
                    background: url(../img/interface/arrow-down.png) no-repeat center center;
                }
                *!

.header-menu-dropdown-content {
    display: none;
    width: 225px;
    padding: 16px;
    border: 8px solid #F4F3F7;
    background: #fff;
    border-radius: 24px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 90;
    margin-top: 16px;
    transform: translateX(-25%);
}


.header-menu ul li:first-child:hover .header-menu-dropdown-content {
    display: block;
}

.header-menu-dropdown-content:before {
    content: "";
    display: block;
    width: 100%;
    height: 16px;
    z-index: 2;
    position: absolute;
    top: -24px;
    left: 0;
}

.header-menu-dropdown-content ul {
    list-style: none;
    margin: 0;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    gap: 16px;
}

    .header-menu-dropdown-content ul li {
        width: 100%;
        display: block;
    }

        .header-menu-dropdown-content ul li a {
            font-size: 14px;
            color: #A0A0A0;
            font-weight: 400;
        }

            .header-menu-dropdown-content ul li a:hover {
                color: #00AA40;
            }

        .header-menu-dropdown-content ul li:first-child:after {
            display: none;
        }


.header-menu-toggler {
    display: none;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: #fff;
    position: relative;
}


.top-container {
    min-height: 650px;
    background-size: cover;
    padding: 160px 0 0px 0;
    color: #fff;
    margin-bottom: 80px;
}

    .top-container .inner-section {
        display: flex;
        flex-flow: row wrap;
        justify-content: flex-start;
        align-items: center;
        padding-bottom: 0;
    }

.top-container-left {
    width: 36.4%;
    width: 480px;
}

.top-container-right {
    flex: 0 1 0;
    margin-left: auto;
    display: grid;
    grid-template-columns: 210px 210px 345px;
    gap: 10px;
}

    .top-container-right img {
        border-radius: 16px;
        transition: all 0.4s;
    }

        .top-container-right img:hover {
            transform: scale(1.02);
        }

        .top-container-right img:nth-child(1) {
            grid-column: 1 / span 2;
        }

        .top-container-right img:nth-child(2) {
            grid-column: 1 / 2;
            grid-row: 2 / 3;
        }

        .top-container-right img:nth-child(3) {
            grid-column: 2 / 3;
            grid-row: 2 / 3;
        }

        .top-container-right img:nth-child(4) {
            grid-column: 3 / -1;
            grid-row: 1 / 3;
        }

.top-container-buttons {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding: 0;
    margin: 0 0 24px 0;
}



ul, ol {
    margin:0 24px 0 20px;
}

li {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding: 0;
    margin: unset;
}

h1 {
    font-size: 60px;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 32px 0;
    padding: 0;
}

h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
    margin: 0 0 32px 0;
    padding: 0;
}

h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 115%;
    margin: 0 0 16px 0;
    padding: 0;
}

.top-container h1 {
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 100%;
}

.top-container p {
    color: #fff;
    margin: 0 0 24px 0;
}

.content-block-section {
     padding:30px 0 0 0;
}

.green-content-block-section {
    color: #00AA40;
}

.content-block-section .inner-section {
    
}

.inner-section-home {
     
}

.content-block-section-head {
    color: inherit;
    height: 150px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-end;
    margin-right: -48px;
    margin-bottom: 40px;
}

    .content-block-section-head.decor-red {
    }

.block-decor {
    flex: 1 1 0;
    max-width: 832px;
    height: 100%;
}



.content-block-section-panel {
    padding: 8px 8px;
    border-radius: 22px;
    background-color: currentColor;
    margin-bottom: 24px;
}

.content-block-section-head-text {
    color: inherit;
    width: 473px;
    max-width: 100%;
}

    .content-block-section-head-text h2 {
        color: #222;
        margin-bottom: 8px;
    }

    .content-block-section-head-text p {
        font-size: 18px;
        color: inherit;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.events-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 20px;
}

.slick-slider.events-slider {
    margin-bottom: 74px;
}

.events-slider .slick-dots {
    border-radius: 32px;
    background: #F4F3F7;
    bottom: auto;
    top: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    width: calc(100% - 138px);
    padding: 0;
    margin: 53px 0 0 0;
}

    .events-slider .slick-dots li {
        width: auto;
        height: 8px;
        margin: 0;
        background: transparent;
        flex: 1;
        border-radius: 50px;
        transition: all 0.4s;
    }

        .events-slider .slick-dots li:first-child:last-child {
            display: none !important;
        }

        .events-slider .slick-dots li button {
            padding: 0;
            width: 100%;
            height: 100%;
        }

    .events-slider .slick-dots .slick-active {
        background: #E81F76;
    }

.green-slider .slick-dots .slick-active {
    background: #00AA40;
}

.events-slider .slick-dots li button:before {
    display: none;
}

.events-slider .slick-track {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 20px;
}

.events-list-item {
    width: 440px;
    max-width: 100%;
    padding: 24px 24px;
    border-radius: 24px;
    background: #F4F3F7;
    color: #252525;
}

.events-list-item-info {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    height: 50px;
    border-radius: 66px;
    margin: -16px -16px 24px -16px;
    color: #222;
    background: #fff;
    gap: 16px;
    padding: 0 8px;
}

.events-list-item-status {
    display: inline-flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    height: 34px;
    border-radius: 32px;
    font-size: 14px;
    color: #fff;
    background-color: #00AA40;
    padding: 0 8px;
}

    .events-list-item-status span {
    }

    .events-list-item-status svg {
    }

.events-list-item-info-p {
    font-size: 14px;
    font-weight: 400;
}

.events-list-item-head {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    margin: 0 0 16px 0;
}

    .events-list-item-head .img {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: center;
        width: 110px;
        height: 110px;
        border-radius: 22px;
        background: #fff;
    }

        .events-list-item-head .img img {
            max-width: 90%;
        }

.events-list-item-head-text {
    flex: 1 1 0;
}

.events-list-item-title {
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.events-list-item-note {
    font-size: 16px;
    font-weight: 400;
}

.events-list-item p {
    font-size: 16px;
    margin: 0 0 24px 0;
}

.events-list-item-buttons {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    gap: 16px;
}

    .events-list-item-buttons .button {
        justify-content: center;
    }

.news-list {
}

.news-list-item {
    padding: 0;
    border-radius: 32px;
    position: relative;
    height: 520px;
}

.news-list-item-img {
    width: 100%;
    height: 100%;
    border-radius: 32px;
}

    .news-list-item-img img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 32px;
    }

.news-list-item-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.0) 40%, rgba(0, 0, 0, 0.7) 100%);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-end;
    padding: 24px 24px;
    transition: all 0.4s;
}

.news-list-item:hover .news-list-item-info {
    opacity: 0;
    z-index: 1;
}

.news-list-item-title {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 8px 0;
    line-height: 1.25em;
}

.news-list-item-date {
    font-size: 14px;
    color: #999;
    line-height: 1.25em;
}

.tags {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 16px;
}

.tag {
    padding: 0 16px;
    background: #fff;
    color: #252525;
    font-size: 14px;
    line-height: 29px;
    font-weight: 500;
    border-radius: 50px;
}

.news-list-item-info .tags {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.news-list-item-caption {
    opacity: 0;
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 1;
    width: 100%;
    width: calc(100% - 48px);
    height: 100%;
    height: calc(100% - 48px);
    transition: all 0.4s;
    padding: 16px;
    border-radius: 24px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
}

.news-list-item:hover .news-list-item-caption {
    opacity: 1;
    z-index: 2;
}

.news-list-item-caption .button {
    justify-content: center;
    margin-top: auto;
}

.news-list-item-caption .tags {
    margin-bottom: 8px;
}

.news-list-item-caption .tag {
    background: #00A552;
    color: #fff;
}

.news-list-item-caption-name {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5em;
    margin: 0 0 8px 0;
}

.news-list-item-caption-date {
    font-size: 14px;
    color: #999;
    line-height: 1.3em;
    margin: 0 0 16px 0;
}

.news-list-item-caption-text {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5em;
    margin: 0 0 16px 0;
}

.footer {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 1456px;
    margin: 0 auto 80px;
}



.social {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

    .social a {
        width: 53px;
        height: 56px;
        background: rgba(255,255,255,0.1);
        border-radius: 16px;
        display: flex;
        flex-flow: column wrap;
        justify-content: center;
        align-items: center;
    }

.social-footer {
    position: absolute;
    top: 48px;
    left: 48px;
    z-index: 3;
}

.footer-logo {
    margin-bottom: 40px;
}

    .footer-logo a {
        display: block;
        text-decoration: none;
    }

    .footer-logo img {
        display: block;
    }

.footer-menu {
    color: #fff;
}

    .footer-menu li a {
        color: #fff;
    }

.footer-partners-logo {
    margin-top: auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 42px;
    margin-bottom: 48px;
}

    .footer-partners-logo a {
    }

    .footer-partners-logo img {
    }

.footer-bottom {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

    .footer-bottom .copy {
    }

    .footer-bottom * {
        font-size: 12px;
        font-weight: 500;
        color: #fff;
    }

    .footer-bottom a {
        text-decoration: none;
        line-height: 1.2em;
        border-bottom: 1px solid rgba(255,255,255,0.4);
    }

        .footer-bottom a:hover {
            text-decoration: none;
            border-color: transparent;
        }

.form-block {
    border-radius: 40px;
    padding: 48px 48px;
    background: #fff;
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.05);
}

.footer .form-block {
    flex: 1;
}

.form-title {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 100%;
}

.form-text {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.form-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-item-wide {
    grid-column: 1 / -1;
}

.form-item label {
    !*display: block;*!
    font-size: 14px;
    !*color: #A0A0A0;*!
    font-weight: 400;
    line-height: 150%;
    !*margin-bottom: 8px;*!
}

.form-item input[type="date"] {
    height: 60px;
    width: 100%;
    border-radius: 16px;
    display: block;
    padding: 0 16px;
    border: 2px solid #DADADA;
}

.form-item input[type="text"] {
    height: 60px;
    width: 100%;
    border-radius: 16px;
    display: block;
    padding: 0 16px;
    !*
    border: 2px solid #DADADA;
    *!
}

    .form-item input[type="text"].valid {
        border-color: #00AA40;
    }

.form-item textarea {
    height: 118px;
    width: 100%;
    border-radius: 16px;
    display: block;
    padding: 16px 16px;
    border: 2px solid #DADADA;
}

    .form-item textarea.valid {
        border-color: #00AA40;
    }

.form-item .select2-container {
    width: 100% !important;
}

    .form-item .select2-container .select2-selection {
        height: 37px!important;
        width: 100%!important;
        border-radius: 8px!important;
        display: block!important;
        padding: 6px 10px!important;
        border: 2px solid rgba(244, 243, 247, 1)!important;
        background-color: rgba(37, 37, 37, 1)!important;
        color: rgba(255, 255, 255, 1)!important;
    }

.form-item .select2-container--open .select2-selection {
    border-color: #00AA40;
}



.select2-container--open .select2-selection__arrow {
    transform: rotate(180deg);
}

.form-item .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}
    .form-item-checkbox label {
        margin: 0;
    }

    .form-item-checkbox span {
        font-size: 14px;
        color: #222;
        font-weight: 400;
    }

        .form-item-checkbox span a {
            color: inherit;
        }

            .form-item-checkbox span a:hover {
                text-decoration: none;
            }

.form-item [type="submit"] {
    width: 100%;
    justify-content: center;
    height: unset;
border: unset!important;
}

.ez-checkbox {
width: 32px;
height: 32px;

}

.ez-checked {
background-position: 0 -32px;
}

.page-bottom-decor {
height: 293px;
width: 100%;

display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
}

.to-top {
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
width: 80px;
height: 80px;
background: #fff;
border-radius: 50%;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
z-index: 2;
position: relative;
transition: all 0.4s;
}

.to-top:hover {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    background: #f9f9f9;
}

.modal {
width: 670px;
max-width: 100%;
display: none;
background: #fff;
border-radius: 40px;
padding: 48px 48px;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
overflow: visible;
}

.fancybox-slide--html .fancybox-close-small {
width: 48px;
height: 48px;
background: #E34D4D;
color: #fff;
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
position: absolute;
top: 0px;
right: -60px;
border-radius: 50%;
opacity: 1;
}

.fancybox-slide--html .fancybox-close-small:hover {
    opacity: 0.8;
}

.fancybox-close-small svg path {
fill: #fff;
}


.users-btn {
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #FFFFFF;
padding: 16px 10px 24px 50px;
text-decoration: none;
}

.users-btn:hover {
color: #fff;
}

.mail-link {
display: block;
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #FFFFFF;
padding: 24px 10px 16px 50px;
text-decoration: none;
border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.mail-link:hover {
color: #fff;
}

.logout-button-wrap {
padding: 16px 10px 16px 50px;
}

.logout-button-wrap .logout-btn {
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #FFFFFF;
padding: 0;
}

.logout-button-wrap .logout-btn svg {
display: inline-block;
vertical-align: middle;
margin-right: 12px;
}

.cke_chrome {
background: #FFFFFF !important;
border: 1px solid #C5C8D9 !important;
border-radius: 5px !important;
box-shadow: none !important;
outline: none !important;
overflow: hidden;
}

.cke_bottom {
padding: 6px 8px 2px;
background: transparent !important;
}

.cke_contents {
min-height: 130px !important;
}




::-webkit-datetime-edit-fields-wrapper {
}

::-webkit-datetime-edit-text {
}

::-webkit-datetime-edit-month-field {
}

::-webkit-datetime-edit-day-field {
}

::-webkit-datetime-edit-year-field {
}

::-webkit-inner-spin-button {
display: none;
}







.content-section {
padding: 60px 0 60px 0;
margin: 0;
}

.content-section h1 {
display: block;
font-weight: 600;
font-size: 24px;
line-height: 130%;
color: #30364D;
padding: 0;
margin: 0 0 24px 0;
}

.controls-panel {
margin-bottom: 24px;
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
align-items: center;
}

.controls-panel-right {
margin-left: auto;
display: flex;
padding-top:20px;
padding-right:10px;
}

.controls-panel-right .button {
 
width: auto;
margin-left: 7px;
}

.search-block {
position: relative;
display: inline-block;
}

.search-block form {
display: inline-block;
}

.search-block input[type="text"] {
width: 354px;
max-width: 100%;
height: 49px;
padding: 0 46px 0 16px;
border: 1px solid #C5C8D9;
border-radius: 5px;
outline: none;
font-weight: 400;
font-size: 14px;
color: #777D98;
background: transparent;
}

.search-block input[type="text"]::-webkit-input-placeholder, .search-block input[type="text"]:-moz-placeholder {
font-weight: 400;
font-size: 14px;
color: #777D98;
}


.search-block [type="submit"]:hover {
cursor: pointer;
opacity: 0.8;
}

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

header::-webkit-scrollbar-track {
background: #344813;
border-radius: 20px;
}

header::-webkit-scrollbar-thumb {
background: #344813;
border-radius: 20px;
border: 0;
}

.table-wrap {
max-height: 70vh;
overflow-y: auto;
}

.table-wrap::-webkit-scrollbar {
width: 6px;
height: 6px;
}

.table-wrap::-webkit-scrollbar-track {
background: #F4F4F4;
border-radius: 20px;
}

.table-wrap::-webkit-scrollbar-thumb {
background: rgba(255, 107, 0, 1)!important;
border-radius: 20px;
border: 0;
}

.table-content {
background: #FFFFFF;
border-radius: 5px;

}

table {
border-collapse: collapse;
width: 100%;
margin: 0 !important;
vertical-align: middle !important;
}

table tr {

}

table th {
text-align: left;
border-bottom: 0 !important;
padding: 10px 20px 10px 20px !important;
font-weight: 400;
font-size: 12px;
line-height: 130%;
color: #777D98;
background: #F4F3F7;
}

th {
position: sticky;
top: 0;
z-index: 2;
background: #fff;
background: linear-gradient(90deg, #fff, #fff, #fff, #fff);
}

table th:first-child {
width: 160px;
}

th:after {
content: "";
display: block;
width: 100%;
height: 2px;
background: #F4F4F4;
position: absolute;
top: 100%;
left: 0;
z-index: 3;
margin-top: -2px;
}


table td {
text-align: left;
border-bottom: 2px solid #F4F4F4 !important;
padding: 10px 20px 10px 20px !important;
font-weight: 400;
font-size: 12px;
line-height: 130%;
color: #30364D;
}

table tr:last-child td {
border-bottom: 0 !important;
}

table td strong, table td b {
font-weight: 600;
}

table td a {
color: inherit;
text-decoration: none;
}

.sort-table-button {
display: block;
text-decoration: none;
color: #30364D;
padding: 0 0 0 30px;

background-size: 13.33px;
}

.sort-table-button:hover {
color: #30364D;
}

.sort-table-button.up {
background-size: 13.33px;
}

.sort-table-button svg {
display: inline-block;
vertical-align: middle;
}

.table-img {
display: inline-block;
vertical-align: middle;
width: 49px;
height: 49px;
background: #777D98;
border-radius: 5px;
margin-right: 8px;
}

.table-controls-container {
position: relative;
}

.table-controls-head {

}

.table-controls-head-button {
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items: center;
width: 15px;
height: 35px;
background: transparent;
border: 0;
outline: none;
margin-left: auto;
}

.table-controls-head-button.disabled svg path {
fill: #C5C8D9;
}

.table-controls-menu {
display: none;
background: #FFFFFF;
box-shadow: 0px 4px 20px rgba(48, 54, 77, 0.08);
border-radius: 5px;
z-index: 97;
padding: 7px 0;
width: 142px;
position: absolute;
top: 100%;
right: 0px;
}

.table-controls-menu.active {
display: block;
}

.table-controls-menu ul {
list-style: none;
margin: 0;
padding: 0;
}

.table-controls-menu li {
margin: 0;
padding: 0;
}

.table-controls-menu a {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: center;
text-decoration: none;
font-weight: 400;
font-size: 12px;
line-height: 14px;
padding: 8px 16px 8px 16px;
color: #777D98;
}

.table-controls-menu a:hover {
color: #30364D;
background: rgba(197, 200, 217, 0.1);
}

.table-controls-menu a svg path {
fill: #777D98;
}

.table-controls-menu a:hover svg path {
fill: #30364D;
}

.page-size{
padding: 30px 0 0 0;
}

.pagination {
display: block;
width: 100%;
clear: both;
text-align: center;
padding: 0 0 30px 0;
}

.pagination ul {
display: inline-block;
list-style: none;
}

.pagination li {
display: inline-block;
vertical-align: middle;
font-weight: 400;
font-size: 14px;
line-height: 26px;
color: #30364D;
}

.pagination li.prev, .pagination li.next {
color: #777D98;
padding: 0;
}

.pagination li.prev {
margin-right: 86px;
}

.pagination li.next {
margin-left: 86px;
}

.pagination li svg {
display: inline-block;
vertical-align: middle;
}

.pagination li.prev svg {
margin-right: 14px;
}

.pagination li.next svg {
margin-left: 14px;
}

.pagination a {
display: inline-block;
text-decoration: none;
font-weight: 400;
font-size: 14px;
line-height: 26px;
padding: 0 8px;
border-radius: 5px;
color: #30364D;
}

.pagination a:hover {
opacity: 0.8;
}

.pagination .active a, .pagination a.active {
background: #C5C8D9;
color: #fff;
opacity: 1;
}

.bottom-form-buttons {
padding: 4px 0 0 0;
display: flex;
flex-flow: row wrap;
justify-content: space-between;
}

.bottom-form-buttons .button {
width: 48.5%;
}

.red {
color: #EE505A !important;
}

.main-login .inner-section {
padding: 0 40px;

}

.disabled {
background-color: #DDD !important;
color: #999 !important;
}

.td-controls-container {
display: inline-flex;
flex-flow: row wrap;
justify-content: space-between;
width: 40px;
}

.td-controls {
display: inline-block;
vertical-align: middle;
}

.send-sms {
color: #0d95e8;
cursor: pointer;
text-decoration: none;
}

.send-sms:hover {
color: rgba(13, 149, 232, 0.7);
}

.positive-button {
font-family: 'Exo 2', sans-serif;
text-decoration: none;
border: 1px solid #344813;
border-radius: 5px;
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #30364D;
padding: 15px 67px;
outline: none;
background: transparent;
}

.positive-button:hover {
background: #EDEFE9;
border-color: #EDEFE9;
cursor: pointer;
}

.positive-button:active, .positive-button.active {
background: #D7DFC8;
border-color: #8EAD5C;
}

.positive-button:disabled, .positive-button.disabled {
background: #F4F4F4;
border-color: #F4F4F4;
color: #777D98;
}

.negative-button {
font-family: 'Exo 2', sans-serif;
text-decoration: none;
border: 1px solid #EE505A;
border-radius: 5px;
font-weight: 400;
font-size: 14px;
line-height: 130%;
color: #30364D;
padding: 15px 67px;
outline: none;
background: transparent;
}

.negative-button:hover {
background: #FFF0F1;
border-color: #FFF0F1;
cursor: pointer;
}

.negative-button:active, .negative-button.active {
background: #F8D6D8;
border-color: #F98C92;
}

.negative-button:disabled, .negative-button.disabled {
background: #F4F4F4;
border-color: #F4F4F4;
color: #777D98;
}

@media screen and (max-width: 1000px) {
.table {
    background: #FFFFFF;
}
}

.form-item-file {
padding: 8px 0 10px 0;
display: inline-block;
vertical-align: middle;
margin: 0 30px 0 0;
}

.form-item-file-content {
position: relative;
}

.form-item-fluid {
flex: 1;
}

.form-item-group-fluid {
gap: 20px;
}

.form-item-group-fluid .form-item:nth-child(2) {
width: auto;
}

.file-placeholder {
font-weight: 700;
font-size: 20px;
line-height: 170%;
text-transform: uppercase;
color: #2B2B2B;
}

.file-placeholder svg {
display: inline-block;
vertical-align: middle;
margin: 0 8px 0 0;
}

.file-placeholder span {
display: inline-block;
vertical-align: middle;
}

.form-item-file input[type="file"] {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
z-index: 9;
}







