@charset "UTF-8";

@font-face {
    font-family: "source_sans_proregular";
    src: url('fonts/sourcesanspro-regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/sourcesanspro-regular-webfont.otf'), url('fonts/sourcesanspro-regular-webfont.woff') format('woff'), url('fonts/sourcesanspro-regular-webfont.ttf') format('truetype'), url('fonts/sourcesanspro-regular-webfont.svg#source_sans_proregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'museo_sans';
    src: url('fonts/museosans-webfont.eot');
    src: url('fonts/museosans-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/museosans-webfont.woff') format('woff'), url('fonts/museosans-webfont.ttf') format('truetype'), url('fonts/museosans-webfont.svg#museo_sans') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'sourcesanspro-semibold';
    src: url('fonts/sourcesanspro-semibold-webfont.eot');
    src: url('fonts/sourcesanspro-semibold-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/sourcesanspro-semibold-webfont.woff') format('woff'), url('fonts/sourcesanspro-semibold-webfont.ttf') format('truetype'), url('fonts/sourcesanspro-semibold-webfont.svg#museo_sans') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo_Sans_900';
    src: url('fonts/MuseoSans-900.eot');
    src: url('fonts/MuseoSans-900.eot?#iefix') format('embedded-opentype'), url('fonts/MuseoSans-900.woff2') format('woff2'), url('fonts/MuseoSans-900.woff') format('woff'), url('fonts/MuseoSans-900.ttf') format('truetype');
    url('fonts/MuseoSans-900.svg#MuseoSans-900') format('svg');
    font-weight: bold;
    font-style: normal;
}

:root {
    --main-header__title-min-size: 2.125rem; /* 34px */
    --main-header__title-max-size: 3rem; /* 48px */
    --main-header__title-font-size: clamp(var(--main-header__title-min-size), 1.688rem + 1.46vw, var(--main-header__title-max-size));
    --main-header__title-description-min-size: 1rem; /* 16px */
    --main-header__title-description-max-size: 1.25rem; /* 20px */
    --main-header__title-description-font-size: clamp(1rem, 0.875rem + 0.42vw, 1.25rem);
}


html {
    font-size: 100%;
    width: 100%;
    height: 100%;
}

body {
    background-color: #fff;
    position: relative;
    width: 100%;
    min-width: 320px;
    max-width: 100vw;
    margin: 0 auto;
    font-family: "source_sans_proregular", sans-serif;
    overflow-x: hidden;
}

@media (min-width: 1920px) {
    body {
        max-width: 1920px;
    }
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/*  helper classes  */

.link-width-arrow {
    font-weight: 600;
    font-size: 14px;
    line-height: normal;
    display: inline-block;
    color: #76CDD8;
    text-decoration: none;
}

    .link-width-arrow:after {
        margin-left: 10px;
        content: url(../images/redesign/ic_link-arrow.svg);
    }

.link-usual-underline {
    font-size: 14px;
    line-height: 21px;
    text-decoration: underline;
    color: #464547;
}

    .link-usual-underline:hover {
        text-decoration: underline;
    }

.highlighted-paragraph {
    background: #FAFAFA;
    padding: 20px 30px;
    border-left: 2px solid #76CDD8;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.bold, strong, b {
    font-weight: bold;
}


.horizontal-delimiter {
    height: 1px;
    width: 100%;
    background-color: rgba(140, 140, 140, 0.3);
}

.vertical-delimiter {
    width: 1px;
    height: 100%;
    background-color: rgba(140, 140, 140, 0.3);
}


.center {
    text-align: center;
}


.push-right {
    margin-left: auto
}

/* buttons   */

.button {
    display: inline-block;
    height: 45px;
    line-height: 35px;
    padding: 5px 25px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-right: 20px;
    text-align: center;
}

    .button:last-child {
        margin-right: 0;
    }

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

/*  tiles layout (there are media styles in media.css)  */

.tiles-wall {
    display: flex;
    flex-wrap: wrap;
}

.tile {
    background-color: #FAFAFA;
    box-shadow: inset 0px -2px 0px #39C2D7;
    padding: 20px;
    margin-bottom: 30px;
    width: calc(100%/3 - 10px);
    max-width: calc(100%/3 - 10px);
    margin-right: 14px;
}

    .tile:nth-child(3n) {
        margin-right: 0;
    }

.tile__header {
    font-weight: 600;
    line-height: 26px;
    font-size: 22px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    height: 65px;
    margin-bottom: 15px;
    color: #39C2D7;
}

.tile__header-img {
    height: 50px;
    min-width: 50px;
    margin-right: 15px;
}

.tile__body {
    line-height: 21px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
}

.tile__sub-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

    .tile__sub-title:not(:first-child) {
        margin-top: 10px;
    }

.tile__link-wrapper {
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: #464547;
}

.tiles-wall .tile .tile__body ul {
    margin: 5px 0;
}

.tile__link-wrapper:hover {
    text-decoration: none;
}

.tile-lg-third {
    width: calc(100%/3 - 10px);
    max-width: calc(100%/3 - 10px);
}

.tile-lg-two-thirds {
    width: calc(100%/3*2 - 10px);
    max-width: calc(100%/3*2 - 10px);
}

/*  header  */

.header {
    display: flex;
    flex-wrap: wrap;
    padding: 27px 100px 12px;
    background-color: #fff;
    position: relative;
}

.header-top-line {
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
}

.header__logo {
    display: block;
    width: 224px;
    flex: 0 0 224px;
    height: 27px;
    background: url(../media/205714/logo.png) no-repeat;
    background-size: 224px 27px;
    margin-right: 25px;
}

.header__title {
    width: 300px;
    flex: 0 0 300px;
    margin-right: 25px;
    height: 39px;
    font-size: 12px;
    color: #5B5B5B;
}

.header-search-form {
    margin-left: auto;
    display: flex;
    width: 237px;
    height: 30px;
    flex: 0 0 217px;
    border-bottom: 1px solid rgba(70, 69, 71, 0.4);
}

.header-search-form__input {
    border: none;
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 10px;
    outline: none;
    color: rgba(70, 69, 71, 0.6);
    background: transparent;
}

    .header-search-form__input::-webkit-input-placeholder,
    .header-search-form__input::placeholder{
        color: rgba(70, 69, 71);
    }

.header-search-form__button {
    width: 20px;
    min-width: 20px;
    height: 30px;
    cursor: pointer;
    background: url(../images/redesign/Search.svg) 50% 0 no-repeat;
    border: none;
    align-self: center;
}

.header-toggle {
    display: none;
    margin-left: auto;
}

.header-toggle__wrapper {
    display: block;
    width: 31px;
    height: 32px;
    background: url(../images/redesign/ic-menu.svg) no-repeat;
}

.header-toggle__button:checked + .header-toggle__wrapper {
    background: url(../images/redesign/ic-Close.svg) no-repeat 20% 30%;
}

.header-toggle__button {
    display: none;
}

/*   navigation   */

.header-menu {
    display: flex;
    width: 100%;
    z-index: 51;
    padding-top: 10px;
}

.header-menu__link {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #464547;
    margin-right: 35px;
    transition: 0.2s ease;
}

    .header-menu__link:hover,
    .header-menu__link.hover,
    .header-menu__link.current {
        text-decoration: none;
        color: #39C2D7;
        padding-bottom: 5px;
        border-bottom: 2px solid #39C2D7;
    }

.header-menu__link_contact {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #464547;
    margin-left: -16px;
    padding: 5px 16px;
    border: 2px solid #39C2D7;
    transition: 0.2s ease;
}

    .header-menu__link_contact:hover,
    .header-menu__link_contact.hover,
    .header-menu__link_contact.current {
        text-decoration: none;
        color: #39C2D7;
        padding-bottom: 5px;
        border-bottom: 2px solid #39C2D7;
    }


.header-sub-menu {
    display: none;
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 40px 100px;
    width: 100%;
    background: #FAFAFA;
    z-index: 51;
}

    .header-sub-menu.visible {
        display: flex;
    }

.header-sub-menu__column {
    width: 25%;
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

.header-sub-menu__news-column .news-item-date {
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
}

    .header-sub-menu__news-column .news-item-date:after {
        content: "\00a0-\00a0";
    }

.header-sub-menu__news-column .news-item-text {
    font-size: 14px;
    line-height: 21px;
    color: #464547;
}

.chapter-block--support .header-sub-menu__column {
    width: 30%;
}

.chapter-block--solutions .header-sub-menu__text {
    margin-bottom: 15px;
}

.chapter-block--about .link-usual-underline:last-of-type {
    margin-bottom: 5px;
}

.chapters {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: 60px;
    justify-content: start;
    height: 20px;
}

    .chapters .chapter-block {
        align-self: start;
        width: max-content;
    }

        .chapters .chapter-block .link {
            display: block;
            line-height: 1.2;
            min-height: 1.2em;
        }

@media (max-width: 1388px) {
    .chapters {
        column-gap: 40px;
    }
}

@media (max-width: 1224px) {
    .chapters {
        display: block;
        grid-template-columns: none;
        column-gap: 0;
        justify-content: initial;
        height: auto;
    }

        .chapters .chapter-block {
            width: 100%;
            align-self: initial;
        }

            .chapters .chapter-block .link {
                min-height: unset;
                line-height: normal;
            }
}

.header-sub-menu__column.header-sub-menu__column--double {
    width: 40%;
}

.header-sub-menu__column:last-child {
    padding-right: 0;
}

.header-sub-menu__title {
    font-family: 'Museo_Sans_900';
    font-size: 24px;
    line-height: normal;
    margin-bottom: 15px;
    color: #464547;
}

.header-sub-menu__text {
    font-size: 14px;
    line-height: 21px;
    color: #464547;
}

.header-sub-menu__link {
    font-weight: 600;
    font-size: 14px;
    line-height: 33px;
    text-transform: uppercase;
    color: #39C2D7;
    display: inline-block;
}

.header-sub-menu__all-news-link {
    margin-top: 10px;
}

.header-sub-menu__link.link-width-arrow {
    margin-top: 10px;
}

.header-sub-menu__sub-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 33px;
    text-transform: uppercase;
    color: #464547;
    margin-bottom: 10px;
}

.header-sub-menu .link-usual-underline {
    margin-bottom: 15px;
    display: inline-block;
}

.header-sub-menu__sub-links {
    border-left: 2px solid #76CDD8;
    padding-left: 20px;
    margin-bottom: 15px;
}

.header-sub-menu .sub-link {
    font-size: 14px;
    line-height: 25px;
    text-transform: uppercase;
    color: #464547;
}

.header-menu__banner {
    border: 2px solid #A3C644;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-menu__banner_pefomance_lab {
    border: 2px solid #A3C644;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-menu__banner-header {
    font-weight: bold;
    font-size: 24px;
    line-height: normal;
    text-align: center;
    color: #464547;
    margin-bottom: 10px;
    margin-top: 10px;
}

.header-menu__banner-body {
    font-size: 18px;
    line-height: normal;
    text-align: center;
    color: #464547;
}

.header-menu__banner-body_download_now {
    font-size: 24px;
    line-height: normal;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .header-menu__banner-body_download_now a {
        text-transform: uppercase;
        color: #39C2D7;
    }

.header-sub-menu__buttons {
    margin-top: 10px;
}

    .header-sub-menu__buttons .button {
        width: 45%;
        min-width: 125px;
        padding: 5px 5px;
    }

.main-content-blocker {
    display: none;
    z-index: 50;
    position: absolute;
    top: 110px;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(70, 69, 71, 0.8);
}


/* footer */

.footer {
    background: #333333;
    color: #FFFFFF;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    padding: 0 100px;
}

    .footer .products-container {
        padding: 42px 0;
    }

    .footer .products-container__list {
        display: flex;
    }

    .footer .products-container__list-item {
        display: flex;
        min-width: 100px;
        flex-grow: 1;
        height: 140px;
        margin-right: 15px;
    }

        .footer .products-container__list-item .img {
            width: 38px;
            height: 38px;
            margin-bottom: 5px;
        }

        .footer .products-container__list-item:hover a {
            opacity: 1;
        }

        .footer .products-container__list-item:hover .img {
            opacity: 1;
        }

        .footer .products-container__list-item a {
            display: flex;
            cursor: pointer;
            width: 100%;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            text-decoration: none;
            color: #ffffff;
            opacity: 0.5;
            border: 2px solid rgba(255, 255, 255, 0.12);
            border-radius: 1px;
            text-transform: uppercase;
            font-weight: bold;
        }

        .footer .products-container__list-item:last-child {
            margin-right: 0;
        }

        .footer .products-container__list-item:hover {
            background-color: #A3C644;
        }


    .footer .fixopaedia .img {
        background: url("../images/redesign/ic_50x50_book.svg") no-repeat;
        background-size: contain;
    }

    .footer .fixantennas .img {
        background: url("../images/redesign/ic_50x50_antenna.svg") no-repeat;
        background-size: contain;
    }

    .footer .fixedge .img {
        background: url("../images/redesign/ic_50x50_edge.svg") no-repeat;
        background-size: contain;
    }

    .footer .facts .img {
        background: url("../images/redesign/ic-list.svg") no-repeat;
        background-size: contain;
    }

    .footer .tools .img {
        background: url("../images/redesign/ic-wrench.svg") no-repeat;
        background-size: contain;
    }

    .footer .fixcliens .img {
        background: url("../images/redesign/ic-windows.svg") no-repeat;
        background-size: contain;
    }

    .footer .fixtcap .img {
        background: url("../images/redesign/ic-fixcap.svg") no-repeat;
        background-size: contain;
    }

    .footer .bottom-navigation {
        display: flex;
        flex-wrap: wrap;
        padding: 42px 0 0;
    }

        .footer .bottom-navigation > div {
            flex: 1;
            padding-left: 5%;
        }

            .footer .bottom-navigation > div:not(:last-child) {
                border-right: 1px solid rgba(140, 140, 140, 0.3);
            }

    .footer .call-to-action {
        font-size: 22px;
        font-weight: bold;
        color: #76CDD8;
    }

    .footer .bottom-navigation a {
        text-decoration: none;
    }

    .footer .chapter-block {
        margin-bottom: 20px;
    }

    .footer .contacts-block {
        margin-bottom: 20px;
        margin-top: 15px;
    }

    .footer .chapter-block .FIXopaedia-link {
        display: none;
    }

    .footer .chapter-block > .link {
        font-size: 18px;
        text-transform: uppercase;
        color: #76CDD8;
        font-weight: bold;
    }

    .footer .sub-link {
        margin-bottom: 20px;
        margin-top: 10px;
    }

        .footer .sub-link .link {
            line-height: 22px;
            color: #ffffff;
        }

    .footer .sub-menu {
        margin-top: 24px;
    }

    .footer .contacts-block div {
        line-height: 32px;
    }

    .footer .footer__additional-info {
        display: flex;
        flex-wrap: wrap;
        height: 84px;
        align-items: center;
    }

    .footer .footer__extra-links-and-copy {
        display: flex;
        column-gap: 40px;
        flex-wrap: wrap;
        align-items: center;
        color: rgba(140, 140, 140, 0.6);
    }

        .footer .footer__extra-links-and-copy .extra-link {
            color: rgba(140, 140, 140, 0.6);
            min-width: 100px;
        }

    .footer .footer__additional-links {
        display: flex;
        column-gap: 40px;
        flex-grow: 1;
    }

    .footer .social-media-icons-block {
        white-space: nowrap;
        text-align: center;
    }

        .footer .social-media-icons-block div {
            display: inline-block;
        }

    .footer .phone {
        white-space: nowrap;
        color: #FFFFFF;
        -webkit-text-fill-color: #FFFFFF;
    }

    .footer .phone,
    .footer .email a {
        font-size: 16px;
        line-height: 32px;
        color: #FFFFFF;
    }

    .footer .social-media-icons-block .img {
        width: 36px;
        height: 36px;
        margin-right: 10px;
    }

    .footer .footer__logo {
        width: 180px;
        min-width: 180px;
        height: 27px;
        margin-right: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .footer .footer__logo .b2bits-logo {
            background: url("../media/205719/logo-b2bits-white.png") no-repeat;
            width: 95px;
            height: 17px;
            background-size: contain;
        }

        .footer .footer__logo .epam-logo {
            background: url("../media/205724/logo-epam-white.png") no-repeat;
            width: 57px;
            height: 20px;
            margin-top: 2px;
            background-size: contain;
        }

    .footer .facebook .img {
        background: url("../images/redesign/ic-Facebook.svg") no-repeat;
        background-size: contain;
    }

    .footer .twitter .img {
        background: url("../images/redesign/ic-x.svg") no-repeat;
        background-size: contain;
    }

    .footer .linkedin .img {
        background: url("../images/redesign/ic-in.svg") no-repeat;
        background-size: contain;
    }

    .footer .rss .img {
        background: url("../images/redesign/ic-rss.svg") no-repeat;
        background-size: contain;
    }


/*   page header   */

.main-header {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    justify-content: center;
    padding: 0 100px;
    position: relative;
}

    .main-header::after {
        content: "";
        position: absolute;
        bottom: 15px;
        right: 15px;
        width: 140px;
        height: 50px;
        background: url("../images/star-level-one.png") left center / 50px 50px no-repeat, url("../images/fix-protocol-member.png") right center / 65px 31px no-repeat;
    }

.main-header-breadcrumbs,
.main-header-breadcrumbs__item {
    font-weight: 600;
    line-height: 15px;
    font-size: 14px;
    text-transform: uppercase;
    color: #CCCCCC;
    margin: 30px 0;
}

.main-header__title {
    font-family: 'Museo_Sans_900';
    line-height: 1.3;
    font-size: var(--main-header__title-font-size);
    color: #FFFFFF;
    margin-bottom: 15px;
    overflow: clip;
    max-height: 2lh;
}

.main-header__title-description {
    font-size: var(--main-header__title-description-font-size);
    line-height: 1.3;
    color: #FFFFFF;
}

/*   page body   */

.main-content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 42px 100px 100px 100px;
}

.main-article {
    width: 70%;
    font-size: 16px;
    color: #464547;
}

    .main-article .additional-copyright {
        font-size: 16px;
        line-height: 24px;
        color: #828282;
        display: flex;
    }

        .main-article .additional-copyright span:first-child {
            display: flex;
            min-width: 20px;
            justify-content: flex-end;
            margin-right: 10px;
        }

        .main-article .additional-copyright:last-of-type {
            margin-bottom: 0;
        }

    .main-article p a,
    .main-article li a {
        font-family: "sourcesanspro-semibold", sans-serif;
        color: #39C2D7;
        text-decoration: underline;
    }

    .main-article p {
        margin: 0 0 20px;
        line-height: 1.5;
        text-align: justify;
    }

        .main-article p.center {
            text-align: center;
        }
        `
        .main-article p.gray-padding {
            border: 30px solid #CCCCCC;
            padding: 10px;
        }

    .main-article__header,
    .main-article h2,
    .main-article h3 {
        font-family: 'Museo_Sans_900';
        font-size: 24px;
        margin-bottom: 20px;
        color: #464547;
    }

        .main-article h2:not(:first-child),
        .main-article h3:not(:first-child) {
            margin-top: 40px;
        }

.main-article__sub-header {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 30px;
    color: #464547;
}

.main-article-text-block {
    margin-bottom: 30px;
}

.main-article .main-article-text-block:last-of-type {
    margin-bottom: 0;
}

.main .main-article .paging {
    margin: 35px 0 0;
}

.main-article__image,
.page-table .page-table__image {
    display: inline-block;
    width: 100%;
    vertical-align: text-top;
}

/*   list   */

.main-article__lists-wrapper {
    display: flex;
}

.main-article__list-wrapper {
    margin-right: 150px;
}

    .main-article__list-wrapper:last-child {
        margin-right: 0;
    }

.main-article-list,
.main .main-article ul {
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.main .main-article__header ~ ul,
.main .main-article__header ~ .main-article-list {
    margin-top: 0;
}

.main .main-article ul ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main .main-article-list-item,
.main .main-article li {
    padding: 5px 5px 0 25px;
    margin: 0;
    line-height: 24px;
    list-style: none;
    position: relative;
}

    .main .main-article-list-item::before,
    .main .main-article li::before {
        content: "\2022";
        font-weight: bold;
        color: #39C2D7;
        font-size: 22px;
        padding-right: 14px;
        position: absolute;
        left: 3px;
    }

@media (max-width: 900px) {
    .main .main-article-list-item,
    .main .main-article li {
        padding: 5px 5px 0 25px;
        margin: 0;
        line-height: 24px;
        list-style: none;
        position: relative;
    }

        .main .main-article-list-item::before,
        .main .main-article li::before {
            content: "\2022";
            font-weight: bold;
            color: #39C2D7;
            font-size: 22px;
            padding-right: 14px;
            position: absolute;
            left: 3px;
        }
}

@media (max-width: 768px) {
    .main .main-article-list-item,
    .main .main-article li {
        padding: 10px 5px 0 25px;
        margin: 0;
        line-height: 22px;
        list-style: none;
        position: relative;
    }

        .main .main-article-list-item::before,
        .main .main-article li::before {
            content: "\2022";
            font-weight: bold;
            color: #39C2D7;
            font-size: 20px;
            padding-right: 14px;
            position: absolute;
            left: 3px;
        }
}

@media (max-width: 576px) {
    .main .main-article-list-item,
    .main .main-article li {
        padding: 8px 5px 0 22px;
        margin: 0;
        line-height: 22px;
        list-style: none;
        position: relative;
    }

        .main .main-article-list-item::before,
        .main .main-article li::before {
            content: "\2022";
            color: #39C2D7;
            font-size: 18px;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            line-height: 18px;
        }
}

.main .main-article ul li[style*="list-style: none"]:before,
.main .main-article .main-article-sublist-wrapper::before {
    content: "";
}

.main .main-article .main-article-sublist-wrapper ul {
    margin: 0;
}

.main .main-article-list-item .main-article-list-item,
.main .main-article li li {
    padding-left: 25px;
}

/* inline-list */


.inline-list {
    display: flex;
    height: 60px;
    align-items: center;
    background-color: #FAFAFA;
    border-bottom: 1px solid #ffffff;
}

.inline-list__item {
    margin-left: 20px;
}

    .inline-list__item a {
        color: #464547;
        text-decoration: underline;
        font-weight: 600;
    }

    .inline-list__item.header-item {
        width: 30%;
    }

        .inline-list__item.header-item a {
            color: #39C2D7;
            text-transform: uppercase;
            text-decoration: none;
        }

/* vertical lists */

.vertical-lists {
    display: flex;
}

.vertical-list__column {
    display: flex;
    flex-direction: column;
    width: calc(100%/2 - 15px);
    margin-right: 15px;
}

    .vertical-list__column:last-child {
        margin-right: 0;
    }

.vertical-list {
    padding: 30px;
    background: #FAFAFA;
    margin-bottom: 15px;
    /* flex-grow: 1; */
    padding-bottom: 30px;
}

    .vertical-list h4 {
        font-weight: 600;
        font-size: 18px;
        line-height: 15px;
        text-transform: uppercase;
        color: #39C2D7;
    }

    .vertical-list li a,
    .vertical-list li {
        font-size: 16px;
        line-height: 24px;
        font-weight: 600;
        color: #464547;
    }

/*    cloned buttons     */
.cloned-buttons {
    position: fixed;
    top: 0;
    right: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    z-index: 1001;
    background: transparent;
}


/*    tabs     */

.main .page-tabs {
    display: flex;
    position: absolute;
    width: calc(100% - 100px*2);
    left: 0;
    right: 0;
    top: 20px;
    margin: 0px 100px;
    height: 50px;
    align-items: center;
    box-shadow: inset 0px -1px 0px rgba(140, 140, 140, 0.3);
    background-color: #fff;
    padding-bottom: 5px;
    overflow-x: hidden;
    overflow-y: hidden;
}

.main .tabs-fixed {
    height: 60px;
    display: flex;
    width: 100%;
    align-items: center;
    box-shadow: inset 0px -1px 0px rgba(140, 140, 140, 0.3);
    margin: 0;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    padding: 10px 100px 5px;
    background-color: #fff;
    z-index: 1;
}

.tabs__scroll {
    width: 120px;
    height: 70px;
    z-index: 50;
    background-color: transparent;
    box-shadow: rgba(255,255,255,0) 0 0 20px;
    background-repeat: no-repeat;
    background-position: 0 0, 0 1px;
    background-size: 100% 100px;
    position: absolute;
    top: 0;
    cursor: pointer;
}

.tabs__scroll_right {
    right: 0;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), #fafafa), linear-gradient(90deg, rgba(255,255, 255,0), rgba(255, 255, 255, 0.62), rgba(255,255,255,0));
}

.tabs__scroll_left {
    left: 0;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), #fafafa), linear-gradient(90deg, rgba(255,255, 255,1), rgba(255, 255, 255, 0.62), rgba(255,255,255,0));
}

.tabs__scroll.fixed {
    position: fixed;
    height: 60px;
}


.fake-tabs {
    height: 2px;
}

.main .page-tab {
    margin-right: 30px;
    height: 100%;
    padding-top: 10px;
    border-bottom: 2px solid transparent;
}

.main .page-anchor-tab {
}

.main .page-tab-link {
    height: 100%;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    color: #464547;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.main .page-tab.active {
    border-bottom: 2px solid #76CDD8;
}

    .main .page-tab.active .page-tab-link {
        color: #39C2D7;
        cursor: default;
    }

.main .page-anchor-tab-content {
    padding-top: var(--tabs-height, 70px);
    margin-top: -70px;
    margin-bottom: 40px;
}

    .main .page-anchor-tab-content:last-child {
        margin-bottom: 0;
    }

.main .page-tab-content {
    display: none;
}

    .main .page-tab-content.visible {
        display: block;
    }

/*    aside    */

.main-aside {
    width: 27%;
    list-style: none;
    display: flex;
    flex-direction: column;
}

/*    aside navigation    */

.aside-navigation {
    margin-bottom: 40px;
}

.main-aside-submenu {
    display: none;
    width: 100%;
}

    .main-aside-submenu .main-aside-submenu-item:first-child {
        padding-top: 12px;
    }

.main-aside-item.expanded .main-aside-submenu {
    display: block;
}

.main-aside-item.expanded .main-aside-item__arrow,
.expanded .accordion-item__arrow {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.main-aside-item .main-aside-item__arrow,
.accordion-item__arrow {
    display: inline-block;
    width: 15px;
    height: 9px;
    background: url(../images/redesign/ic_dropdown.svg) no-repeat center center;
    background-size: contain;
}

.main-aside-item .main-aside-item__arrow-wrapper,
.accordion-item__arrow-wrapper {
    display: inline-block;
    padding: 12px 25px 12px 25px;
    width: 20%;
    cursor: pointer;
    vertical-align: top;
    text-align: right;
}

.main-aside-item .items-count {
    color: #76CDD8;
}

.main-aside-item_current .items-count {
    color: #fff;
}

.main-aside-item_current .main-aside-item__arrow,
.main-aside-item.chosen .main-aside-item__arrow {
    background: url(../images/redesign/ic_dropdown-white.svg) no-repeat;
    background-size: contain;
}

.main-aside-item,
.main-aside-first_item {
    background-color: #FAFAFA;
    border-bottom: 1px solid rgba(140, 140, 140, 0.3);
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.main-aside-first_item {
    border-top: 1px solid rgba(140, 140, 140, 0.3);
}

.main-aside-item__content,
.main-aside-submenu-item__content {
    display: inline-block;
    padding: 0 35px 12px 25px;
    line-height: 21px;
    font-size: 14px;
    text-transform: uppercase;
    color: #4F4F4F;
}

.main-aside-item__content {
    font-weight: 600;
    width: 80%;
    padding: 12px 35px 12px 25px;
}

    .main-aside-item__content:hover,
    .main-aside-submenu-item__content:hover {
        text-decoration: none;
    }

.main-aside-item_current,
.main-aside-first_item_current,
.main-aside-item.chosen {
    background-color: #76CDD8;
}

.main-aside-submenu-item__content_current {
    color: #76CDD8;
}

.main-aside-item__content_current,
.main-aside-item__content.chosen {
    color: #FFFFFF;
}

.main-aside-submenu-item {
    background-color: #FFFFFF;
}

.stories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/*    aside download   */

.download-links {
    background-color: #A3C644;
    margin-bottom: 40px;
    color: #fff;
}

    .download-links .download-links__header {
        font-weight: bold;
        font-size: 21px;
        padding: 25px;
        line-height: normal;
        text-align: center;
        color: #fff;
        margin-bottom: 0;
    }

.download-links__list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 25px;
}

    .download-links__list-item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.4);
    }

    .download-links__list-item:last-child {
        border-bottom: 0px;
    }

.download-links__link,
.download-links__link:hover {
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    color: #fff;
}

/*    aside documentation   */

.documentation-block {
    background-color: #76CDD8;
    margin-bottom: 40px;
    color: #fff;
}

    .documentation-block .documentation-block__header {
        font-weight: bold;
        font-size: 21px;
        padding: 25px;
        line-height: normal;
        color: #fff;
        text-align: center;
        margin-bottom: 0;
    }

.documentation-block__list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 25px;
}

    .documentation-block__list-item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.4);
    }

    .documentation-block__list-item:last-child {
        border-bottom: 0px;
    }

.documentation-block__link,
.documentation-block__link:hover {
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    color: #fff;
}
/* Aside Succes story */

.success-stories-block {
    background-color: #008ACE;
    margin-bottom: 40px;
    color: #fff;
}

    .success-stories-block .success-stories-block__header {
        font-weight: bold;
        font-size: 21px;
        padding: 25px;
        line-height: normal;
        color: #fff;
        text-align: center;
        margin-bottom: 0;
    }

.success-stories-block__list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px 25px;
}

    .success-stories-block__list-item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.4);
    }

    .success-stories-block__list-item:last-child {
        border-bottom: 0;
    }

.success-stories-block__link,
.success-stories-block__link:hover {
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    color: #fff;
}
/*    aside compare   */

.compare-block {
    margin-bottom: 40px;
    color: #464547;
    border: 2px solid #76CDD8;
    padding: 25px;
    text-align: center;
}

.compare-block__link-text {
    font-weight: bold;
    font-size: 21px;
    line-height: normal;
    text-align: center;
}

.compare-block__learn-more {
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    text-transform: uppercase;
    margin-top: 30px;
    display: inline-block;
    color: #76CDD8;
}

    .compare-block__learn-more:after {
        margin-left: 5px;
        content: url(../images/redesign/ic_link-arrow.svg);
    }

/*    aside project experience   */

.main-aside .project-experience {
    border: 2px solid #CCCCCC;
    margin-bottom: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-aside .project-experience__title {
    font-size: 21px;
    text-align: center;
    padding: 30px;
}

.main-aside .project-experience__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
    max-width: 700px;
    width: 100%;
}

.main-aside .project-experience__item {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

/* cant-find-platform block */

.cant-find-platform {
    background: #FAFAFA;
    padding: 25px;
    text-align: center;
    margin-top: 40px;
}

.cant-find-platform__controls {
    display: flex;
    justify-content: center;
}

.cant-find-platform__title {
    font-family: 'Museo_Sans_900';
    font-size: 20px;
    margin-bottom: 20px;
    line-height: normal;
    text-align: center;
}

.sales-link {
    background: #FFFFFF;
    display: flex;
    align-items: center;
    height: 45px;
    color: #464547;
    font-size: 16px;
    line-height: normal;
    padding: 0 10px;
    min-width: 300px;
}

    .sales-link .mail-icon {
        width: 20px;
        height: 16px;
        margin-right: 10px;
    }

.button--contact-us {
    width: 240px;
}

/*  forms  */

.page-request-form-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 71px 45px 51px 44px;
    background-color: #FAFAFA;
}

.page-request-form-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

    .page-request-form-item:last-of-type {
        margin-bottom: 0;
    }

.page-request-form-item_small {
    width: 45%;
}

.page-request-form-item_large {
    width: 100%;
}

.page-request-form-item__label {
    font-weight: 600;
    font-size: 18px;
    line-height: 15px;
    text-transform: uppercase;
    white-space: nowrap;
    margin-top: 20px;
}

.page-request-form-item__input,
.page-request-form-item__select {
    width: 100%;
    border: 1px solid #CCCCCC;
    height: 55px;
    padding: 0 20px;
    outline: none;
    margin-top: 6px;
}

.page-request-form-item__textarea {
    border: 1px solid #CCCCCC;
    width: 100%;
    height: 162px;
    padding: 20px;
    outline: none;
    resize: none;
    margin-top: 6px;
    margin-bottom: 40px;
}

    .page-request-form-item__textarea:placeholder-shown {
        font-style: italic;
    }

.page-request-form-item__validator {
    order: 2;
    padding: 7px 0;
}

    .page-request-form-item__validator[style*=visible] ~ input,
    .page-request-form-item__validator[style*=visible] ~ select,
    .page-request-form-item__validator[style*=visible] ~ textarea {
        border: 1px solid #ff0000;
    }

    .page-request-form-item__validator[style*="visibility:hidden"] {
        display: none !important;
    }

    .page-request-form-item__validator[style*="visibility:visible"] {
        display: block;
    }

.page-request-form-item__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../images/redesign/ic_form_drop.svg');
    background-position: 95% center;
    background-repeat: no-repeat;
}

    .page-request-form-item__select::-ms-expand {
        display: none;
    }

.page-request-form-checkbox-list__checkbox,
.page-request-form-checkbox-list__radio {
    display: flex;
    align-items: center;
    margin-top: 23px;
}

    .page-request-form-checkbox-list__checkbox label,
    .page-request-form-checkbox-list__radio label {
        cursor: pointer;
    }

.page-request-form-checkbox-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.page-request-form-checkbox-list__group.sub {
    margin: 23px 14px 0 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

    .page-request-form-checkbox-list__group.sub::before {
        content: "";
        margin-right: 14px;
        background: #76CDD8;
        border: 1px solid #76CDD8;
        outline: 2px solid #76CDD8;
        width: 22px;
        height: 22px;
        margin-left: 23px;
    }

.page-request-form-checkbox-list__checkbox.sub {
    margin: 23px 14px 0 23px;
}

.page-request-form-checkbox-list__group.sub::after {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    position: absolute;
    left: calc(23px + 7px);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    transition: transform .2s;
    pointer-events: none;
}

.page-request-form-checkbox-list__group.sub.open::after {
    transform: translateY(-50%) rotate(-135deg);
}

.page-request-form-checkbox-list .page-request-form-checkbox-list__checkbox {
    width: 45%;
}

.page-request-form-checkbox-list-column .page-request-form-checkbox-list__checkbox {
    width: auto;
    padding-left: 15px;
}

.page-request-form-checkbox-list-column {
    width: 45%;
}

.page-request-form-checkbox-list__group {
    margin: 23px 14px 0 2px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

    .page-request-form-checkbox-list__group::before {
        content: "";
        margin-right: 14px;
        background: #76CDD8;
        border: 1px solid #76CDD8;
        outline: 2px solid #76CDD8;
        width: 22px;
        height: 22px;
    }

.page-request-form-checkbox-list__group-checkbox.page-request-form-checkbox-list__checkbox {
    margin: 23px 14px 0 -23px;
    font-weight: 600;
}

.page-request-form-item_large table {
    width: 100%;
}

.page-request-form-checkbox-list__checkbox > input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 22px;
    min-width: 22px;
    height: 22px;
    border: 1px solid #76CDD8;
    outline: 2px solid #76CDD8;
    margin: 0 14px 0 10px;
    cursor: pointer;
}

    .page-request-form-checkbox-list__checkbox > input:checked {
        background-image: url('../images/redesign/Form_Check_on.svg');
        background-position: center;
        background-repeat: no-repeat;
    }

.page-request-form-checkbox-list__radio > input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    width: 23px;
    min-width: 23px;
    height: 23px;
    border: 2px solid #76CDD8;
    border-radius: 23px;
    margin: 0 14px 0 10px;
    -webkit-border-radius: 23px;
    -moz-border-radius: 23px;
    -ms-border-radius: 23px;
    -o-border-radius: 23px;
    outline: none;
    cursor: pointer;
}

    .page-request-form-checkbox-list__radio > input:checked {
        background: url('../images/redesign/Ellipse.svg') center no-repeat;
        background-size: 21px;
    }

.page-request-form-agreement {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 28px 39px 20px 44px;
    font-size: 14px;
    line-height: 21px;
    background-color: #F2F2F2;
}

.page-request-form-agreement-recaptcha {
    display: flex;
    justify-content: flex-end;
    width: 49%;
}

.page-request-form-agreement-text {
    width: 50%;
}

.page-request-form-agreement-text__list {
    display: flex;
}

    .page-request-form-agreement-text__list span {
        margin-right: 5px;
    }

.page-request-form-agreement__header {
    font-weight: bold;
    width: 100%;
}

.page-request-form-agreement .page-request-form-item__checkbox > input {
    margin-left: 0;
}

.page-request-form-buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.page-request-form__button {
    width: 241px;
    height: 56px;
    border: none;
    margin-left: 26px;
    text-transform: uppercase;
    color: #FFFFFF;
    cursor: pointer;
    background-color: #A3C644;
}

.page-request-form__button_disabled {
    cursor: auto;
    background-color: #CCCCCC;
}

.page-request-form__button_active {
    cursor: pointer;
    background-color: #A3C644;
}

.form-item-additional {
    padding: 7px 0;
    margin: 0 0 10px;
}

/* table */
.page-table {
    width: 100%;
    text-align: left;
    margin-bottom: 40px;
}

.page-table--zebra .page-table__row:nth-child(2n+1) {
    background: rgba(250, 250, 250, 0.6);
}

.page-table--zebra .page-table__row,
.page-table--zebra .page-table__row a {
    color: #464547;
}

.page-table__row,
.page-table__caption-row {
    border-bottom: 1px solid #d8d8d8;
}

.page-table.page-table--one-row .page-table__row {
    border-top: 1px solid #d8d8d8;
}

.page-table.page-table--without-header .page-table__row:first-child {
    border-top: 1px solid #d8d8d8;
}

.page-table__row.no-border {
    border: 0;
}

.page-table__row.first-col-without-border {
    border: 0;
}

    .page-table__row.first-col-without-border td:not(:first-child) {
        border-bottom: 1px solid #d8d8d8;
    }

.page-table__row td,
.page-table__row th {
    line-height: 24px;
    font-size: 16px;
    color: #464547;
    padding: 15px 25px;
}

.page-table__row th {
    color: #fff;
    font-weight: 600;
}

.page-table__row--blue {
    background: #76CDD8;
}

.page-table__row--subsection {
    background: #FAFAFA;
}

    .page-table__row--subsection tr,
    .page-table__row--subsection th {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        text-transform: uppercase;
        color: #39C2D7;
    }

.page-table__row td p {
    margin: 0 0 5px;
    text-align: left;
}

.page-table__row a {
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    color: #39C2D7;
}

.page-table__row .dark-td a {
    color: #464547;
}

.page-table__row .dark-td {
    background: rgba(250, 250, 250, 0.6);
    font-weight: 600;
    line-height: 24px;
    font-size: 16px;
    text-align: left;
    color: #464547;
}

.page-table__row_white :first-child {
    background-color: #FFFFFF;
    font-weight: normal;
}

.page-table__caption-row th {
    background: #FAFAFA;
    font-weight: 600;
    line-height: 15px;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(70, 69, 71, 0.6);
    padding: 24px;
}

.page-table .page-table__link {
    text-decoration: none;
    display: flex;
    width: 31px;
    height: 11px;
    background: url(../images/redesign/ic_link-arrow.svg) no-repeat;
    margin: 0 auto;
    align-items: center;
}

.main .page-table ul {
    margin-top: 0;
    margin-bottom: 0;
}


/*  dropdown  */

.dropdown {
    position: relative;
}

.dropdown-btn,
.purchase-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 45px;
    line-height: 35px;
    padding: 5px 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-right: 20px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    outline: none;
    border: none;
    position: relative;
    font-weight: bold;
    font-size: 16px;
}

.dropdown-btn--green {
    background-color: #A3C644;
    color: #fff;
}

.dropdown-menu {
    z-index: 1;
    display: none;
    background: #fff;
    min-width: 200px;
    position: absolute;
    top: calc(100% - 10px);
    -webkit-box-shadow: 0px 5px 13px 0px rgba(117,113,117,1);
    -moz-box-shadow: 0px 5px 13px 0px rgba(117,113,117,1);
    box-shadow: 0px 5px 13px 0px rgba(117,113,117,1);
}

    .dropdown-menu.fixed {
        position: fixed;
        top: 50px;
    }

.dropdown-menu--active {
    display: block;
    width: min-content;
}

.dropdown-menu__item {
    padding: 10px;
    color: #4F4F4F;
}

    .dropdown-menu__item:hover {
        background-color: #E5E5E5;
    }

    .dropdown-menu__item a {
        color: #4F4F4F;
        padding: 0px 10px;
        display: inline-block;
        width: 100%;
    }

.dropdown-btn__arrow {
    position: absolute;
    right: 25px;
    top: 20px;
    height: 7px;
}

.dropdown-btn--download {
    width: 200px;
    margin-top: 20px;
}

.dropdown-btn__arrow {
    position: static;
    height: 7px;
    transform: translateY(2px);
}

#tabs .dropdown-download,
#tabs .dropdown-purchase {
    display: none;
    margin-left: auto;
}

#tabs .buttons-wrapper {
    margin-left: auto;
}

#tabs .dropdown-btn,
#tabs .purchase-btn {
    height: 35px;
    line-height: 25px;
    margin-top: 5px;
    margin-right: 0;
}

#tabs .dropdown-download .dropdown-btn__arrow,
#tabs .dropdown-purchase .dropdown-btn__arrow {
    top: 15px;
}

#tabs.tabs-fixed .dropdown-download,
#tabs.tabs-fixed .dropdown-purchase {
    display: inline-block;
}

    #tabs.tabs-fixed .dropdown-download .dropdown-menu,
    #tabs.tabs-fixed .dropdown-purchase .dropdown-menu {
        position: fixed;
        top: 50px;
    }


/* accordion */

.accordion:not(:last-of-type) {
    margin-bottom: 40px;
}

.accordion-item {
    display: inline-block;
    width: 100%;
    border-bottom: 2px solid #ffffff;
}

.accordion-item-header {
    width: 100%;
    background-color: #FAFAFA;
    padding-top: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.accordion-item-header__text {
    display: inline-block;
    width: 80%;
    padding: 7px 18px;
    line-height: 21px;
}

.accordion-item-content {
    display: none;
    background-color: #ffffff;
    padding-left: 36px;
}

.expanded .accordion-item-content {
    display: block;
}

.expanded .accordion-item-header {
    background-color: #76CDD8;
    margin-bottom: 28px;
}

    .expanded .accordion-item-header > .accordion-item-header__text {
        color: #ffffff;
    }

.accordion__common-toggle {
    padding-left: 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: #76CDD8;
    cursor: pointer;
}

.expanded .accordion-item__arrow {
    background: url(../images/redesign/ic_dropdown-white.svg) no-repeat center center;
    background-size: contain;
}

/*    photos    */

.photos {
    background: #76CDD8;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 0 5px;
    margin-bottom: 40px;
}

.photos__title {
    font-family: 'Museo_Sans_900';
    font-size: 20px;
    line-height: normal;
    text-align: center;
    color: #FFFFFF;
    width: 100%;
    padding: 15px;
}

.photo {
    margin-bottom: 5px;
    width: calc(100% / 4 - 5px);
    margin-right: 5px;
    text-align: center;
}

    .photo:last-child {
        margin-right: 0;
    }



/*   license */

#license_html {
    background: none;
}

.license {
    width: 94%;
    margin: 10px 20px 20px 20px;
}

    .license h1 {
        font-size: 1.6em;
        margin: 14px 0;
        padding-right: 19px;
        color: #036;
    }

    .license p {
        margin: 12px 0;
        font-size: 1.2em;
    }

    .license ol {
        list-style-type: decimal;
        list-style-position: inside;
        padding: 0;
        margin: 0;
    }

        .license ol li {
            font-size: 1.2em;
            margin: 10px 0;
        }

            .license ol li p {
                font-size: 1em;
            }

            .license ol li ol {
                list-style-type: lower-roman;
                margin: 0 20px;
            }

                .license ol li ol li {
                    font-size: 1em;
                    margin: 4px 0;
                }

#licenseBlock {
    margin: 30px 0 0 0;
}

    #licenseBlock input {
        margin: 0;
        width: 20px;
    }

    #licenseBlock label {
        display: inline;
        padding: 0;
        margin: 0;
        vertical-align: top;
    }

        #licenseBlock label,
        #licenseBlock label a {
            font-size: 0.9em;
        }

.code_fragment {
    background-color: #ffff99;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
}


/*  styles for old tables */

.zebra-table {
    width: 100%;
    text-align: left;
    margin-bottom: 40px;
}

    .zebra-table tr {
        border-bottom: 1px solid #d8d8d8;
    }


    .zebra-table td,
    .zebra-table th {
        line-height: 24px;
        font-size: 16px;
        color: #464547;
        padding: 15px 25px;
        vertical-align: middle;
    }


        .zebra-table td p {
            margin: 0 0 5px;
        }

    .zebra-table a {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        text-decoration: underline;
        color: #39C2D7;
    }



    .zebra-table:not(.twoColumns):not(.page-table) tr:not(.page-table__row) td:first-child {
        background: rgba(250, 250, 250, 0.6);
        font-weight: 600;
        line-height: 24px;
        font-size: 16px;
        text-align: left;
        color: #464547;
        width: 30%;
    }



    .zebra-table th {
        background: #FAFAFA;
        font-weight: 600;
        line-height: 15px;
        font-size: 14px;
        text-transform: uppercase;
        color: rgba(70, 69, 71, 0.6);
        padding: 24px;
    }


    .zebra-table ul {
        margin-top: 0;
        margin-bottom: 0;
    }

.buttons-wrapper {
    display: flex;
    gap: 10px;
}

.dropdown-purchase {
    padding-left: 15px;
}

.pdf-invoice-btn_disabled {
    height: 45px;
    line-height: 35px;
    text-transform: uppercase;
    cursor: not-allowed;
    font-weight: 600;
    color: #CCCCCC;
}

.pdf-invoice-btn {
    height: 45px;
    line-height: 35px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    color: #add8e6;
}

    .pdf-invoice-btn:hover {
        color: #007bff;
        text-decoration: underline;
    }

.page-purchase-form-consent {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0px 39px 38px 44px;
    font-size: 14px;
    line-height: 21px;
    background-color: #F2F2F2;
}

.page-request-form-checkbox-list__checkbox a {
    font-family: "sourcesanspro-semibold", sans-serif;
    color: #39C2D7;
}

    .page-request-form-checkbox-list__checkbox a:hover {
        color: #0056b3;
    }

.disabled-link {
    pointer-events: none;
    color: gray;
    text-decoration: none;
    cursor: not-allowed;
}

    .disabled-link + label {
        cursor: not-allowed !important;
    }

.page-purchase-disclaimer-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.page-purchase-notice {
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 92%;
}

    .page-purchase-notice .page-request-form-agreement-recaptcha {
        display: block;
        justify-content: initial;
        width: auto;
        padding: 0;
    }

.page-purchase-match-company {
    font-size: 14px;
    line-height: 21px;
}

.disabled-checkbox {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.5;
}

.checkbox-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1px;
}

.custom-tooltip {
    display: none;
    position: absolute;
    top: -35px;
    left: 0;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
}

    .custom-tooltip::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 10px;
        border-width: 5px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
    }

    .dropdown-btn--download {
        width: 200px;
        margin-top: 20px;
    }

    .dropdown-btn__arrow {
        position: static;
        height: 7px;
        transform: translateY(2px);
    }

    #tabs .dropdown-download,
    #tabs .dropdown-purchase {
        display: none;
        margin-left: auto;
    }

    #tabs .buttons-wrapper {
        margin-left: auto;
    }

    #tabs .dropdown-btn,
    #tabs .purchase-btn {
        height: 35px;
        line-height: 25px;
        margin-top: 5px;
        margin-right: 0;
    }

    #tabs .dropdown-download .dropdown-btn__arrow,
    #tabs .dropdown-purchase .dropdown-btn__arrow {
        top: 15px;
    }

    #tabs.tabs-fixed .dropdown-download,
    #tabs.tabs-fixed .dropdown-purchase {
        display: inline-block;
    }

        #tabs.tabs-fixed .dropdown-download .dropdown-menu,
        #tabs.tabs-fixed .dropdown-purchase .dropdown-menu {
            position: fixed;
            top: 50px;
        }


    /* accordion */

    .accordion:not(:last-of-type) {
        margin-bottom: 40px;
    }

    .accordion-item {
        display: inline-block;
        width: 100%;
        border-bottom: 2px solid #ffffff;
    }

    .accordion-item-header {
        width: 100%;
        background-color: #FAFAFA;
        padding-top: 5px;
        cursor: pointer;
        display: flex;
        align-items: center;
    }

    .accordion-item-header__text {
        display: inline-block;
        width: 80%;
        padding: 7px 18px;
        line-height: 21px;
    }

    .accordion-item-content {
        display: none;
        background-color: #ffffff;
        padding-left: 36px;
    }

    .expanded .accordion-item-content {
        display: block;
    }

    .expanded .accordion-item-header {
        background-color: #76CDD8;
        margin-bottom: 28px;
    }

        .expanded .accordion-item-header > .accordion-item-header__text {
            color: #ffffff;
        }

    .accordion__common-toggle {
        padding-left: 20px;
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        color: #76CDD8;
        cursor: pointer;
    }

    .expanded .accordion-item__arrow {
        background: url(../images/redesign/ic_dropdown-white.svg) no-repeat center center;
        background-size: contain;
    }

    /*    photos    */

    .photos {
        background: #76CDD8;
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        padding: 0 5px;
        margin-bottom: 40px;
    }

    .photos__title {
        font-family: 'Museo_Sans_900';
        font-size: 20px;
        line-height: normal;
        text-align: center;
        color: #FFFFFF;
        width: 100%;
        padding: 15px;
    }

    .photo {
        margin-bottom: 5px;
        width: calc(100% / 4 - 5px);
        margin-right: 5px;
        text-align: center;
    }

        .photo:last-child {
            margin-right: 0;
        }



    /*   license */

    #license_html {
        background: none;
    }

    .license {
        width: 94%;
        margin: 10px 20px 20px 20px;
    }

        .license h1 {
            font-size: 1.6em;
            margin: 14px 0;
            padding-right: 19px;
            color: #036;
        }

        .license p {
            margin: 12px 0;
            font-size: 1.2em;
        }

        .license ol {
            list-style-type: decimal;
            list-style-position: inside;
            padding: 0;
            margin: 0;
        }

            .license ol li {
                font-size: 1.2em;
                margin: 10px 0;
            }

                .license ol li p {
                    font-size: 1em;
                }

                .license ol li ol {
                    list-style-type: lower-roman;
                    margin: 0 20px;
                }

                    .license ol li ol li {
                        font-size: 1em;
                        margin: 4px 0;
                    }

    #licenseBlock {
        margin: 30px 0 0 0;
    }

        #licenseBlock input {
            margin: 0;
            width: 20px;
        }

        #licenseBlock label {
            display: inline;
            padding: 0;
            margin: 0;
            vertical-align: top;
        }

            #licenseBlock label,
            #licenseBlock label a {
                font-size: 0.9em;
            }

    .code_fragment {
        background-color: #ffff99;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 20px;
    }


    /*  styles for old tables */

    .zebra-table {
        width: 100%;
        text-align: left;
        margin-bottom: 40px;
    }

        .zebra-table tr {
            border-bottom: 1px solid #d8d8d8;
        }


        .zebra-table td,
        .zebra-table th {
            line-height: 24px;
            font-size: 16px;
            color: #464547;
            padding: 15px 25px;
            vertical-align: middle;
        }


            .zebra-table td p {
                margin: 0 0 5px;
            }

        .zebra-table a {
            font-weight: 600;
            font-size: 16px;
            line-height: 24px;
            text-decoration: underline;
            color: #39C2D7;
        }



        .zebra-table:not(.twoColumns):not(.page-table) tr:not(.page-table__row) td:first-child {
            background: rgba(250, 250, 250, 0.6);
            font-weight: 600;
            line-height: 24px;
            font-size: 16px;
            text-align: left;
            color: #464547;
            width: 30%;
        }



        .zebra-table th {
            background: #FAFAFA;
            font-weight: 600;
            line-height: 15px;
            font-size: 14px;
            text-transform: uppercase;
            color: rgba(70, 69, 71, 0.6);
            padding: 24px;
        }


        .zebra-table ul {
            margin-top: 0;
            margin-bottom: 0;
        }

    .buttons-wrapper {
        display: flex;
        gap: 10px;
    }

    .dropdown-purchase {
        padding-left: 15px;
    }

    .pdf-invoice-btn_disabled {
        height: 45px;
        line-height: 35px;
        text-transform: uppercase;
        cursor: not-allowed;
        font-weight: 600;
        color: #CCCCCC;
    }

    .pdf-invoice-btn {
        height: 45px;
        line-height: 35px;
        text-transform: uppercase;
        cursor: pointer;
        font-weight: 600;
        color: #add8e6;
    }

        .pdf-invoice-btn:hover {
            color: #007bff;
            text-decoration: underline;
        }

    .page-purchase-form-consent {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0px 39px 38px 44px;
        font-size: 14px;
        line-height: 21px;
        background-color: #F2F2F2;
    }

    .page-request-form-checkbox-list__checkbox a {
        font-family: "sourcesanspro-semibold", sans-serif;
        color: #39C2D7;
    }

        .page-request-form-checkbox-list__checkbox a:hover {
            color: #0056b3;
        }

    .disabled-link {
        pointer-events: none;
        color: gray;
        text-decoration: none;
        cursor: not-allowed;
    }

        .disabled-link + label {
            cursor: not-allowed !important;
        }

    .page-purchase-disclaimer-container {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }

    .page-purchase-notice {
        width: 49%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 92%;
    }

        .page-purchase-notice .page-request-form-agreement-recaptcha {
            display: block;
            justify-content: initial;
            width: auto;
            padding: 0;
        }

    .page-purchase-match-company {
        font-size: 14px;
        line-height: 21px;
    }

    .disabled-checkbox {
        pointer-events: none;
        cursor: not-allowed;
        opacity: 0.5;
    }

    .checkbox-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        gap: 1px;
    }

    .custom-tooltip {
        display: none;
        position: absolute;
        top: -35px;
        left: 0;
        background: #333;
        color: white;
        padding: 5px 10px;
        border-radius: 2px;
        font-size: 12px;
        white-space: nowrap;
        z-index: 1000;
    }

        .custom-tooltip::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 10px;
            border-width: 5px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }

    /*  styles for modal search panel */
    /*  modal search bar */

    .mobile-search-icon {
        display: none;
        margin-left: 8px;
        margin-bottom: 8px;
        height: 30px;
    }

    .search-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: flex-start;
        z-index: 1000;
    }

    .search-modal-content {
        position: fixed;
        top: 50px;
        left: 50%;
        transform: translateX(-50%);
        background-color: white;
        padding: 20px;
        border-radius: 8px;
        width: clamp(250px, 90%, 650px);
    }

    .modal-search-form {
        margin: 0 auto;
        display: flex;
        max-width: 650px;
        min-width: 300px;
        min-height: 40px;
        border-bottom: 1px solid rgba(70, 69, 71, 0.4);
    }

    .modal-search-form__input {
        flex-grow: 1;
        border: none;
        font-size: 18px;
        line-height: 24px;
        padding-bottom: 10px;
        outline: none;
        color: rgba(70, 69, 71, 0.6);
        background: transparent;
        width: 100%;
    }

    .modal-search-form__button {
        width: 20px;
        min-width: 20px;
        height: 30px;
        cursor: pointer;
        background: url(../images/redesign/Search.svg) 50% 0 no-repeat;
        border: none;
        align-self: center;
        flex-shrink: 0;
    }

    /* Archive banner */

    .archive-banner-notice {
        background: #fff3cd;
        border-left: 4px solid #d6a300;
        color: #856404;
        padding: 14px 18px;
        margin: 20px 0;
        font-size: 14px;
    }

    .archive-banner-footer {
        margin: 40px 0 20px;
        padding: 16px 18px;
        background: #f5f5f5;
        border-left: 4px solid #999;
        font-size: 14px;
        color: #555;
    }

        .archive-banner-footer a {
            color: #39C2D7;
            text-decoration: underline;
        }

    /* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */
