@-webkit-keyframes fill {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fill {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fade {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fade {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@-webkit-keyframes copyTextSupport {
    0% {
        transform: translateY(-45px)
    }

    23% {
        transform: translateY(43px)
    }

    77% {
        transform: translateY(43px)
    }

    to {
        transform: translateY(-45px)
    }
}

@keyframes copyTextSupport {
    0% {
        transform: translateY(-45px)
    }

    23% {
        transform: translateY(43px)
    }

    77% {
        transform: translateY(43px)
    }

    to {
        transform: translateY(-45px)
    }
}

@-webkit-keyframes move-gradient-3colors {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(66.7%)
    }
}

@keyframes move-gradient-3colors {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(66.7%)
    }
}

@-webkit-keyframes skeletonFlare {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(200%)
    }
}

@keyframes skeletonFlare {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(200%)
    }
}

.search-bar__text-field {
    background: #fff;
    border: none;
    border-radius: 15px;
    caret-color: var(--color-headers-text);
    color: var(--color-headers-text);
    font-size: 14px;
    height: 38px;
    padding: 0 45px 0 16px;
    position: relative;
    z-index: 10
}

.search-bar__search-button {
    right: 10px;
    top: 2px;
    z-index: 10
}

.pre-search-list {
    background: #fff;
    border-radius: 0 0 15px 15px;
    display: none;
    padding-bottom: 15px;
    padding-top: 34px;
    position: absolute;
    top: 24px;
    width: 100%;
    z-index: 5
}

.pre-search-item {
    cursor: pointer;
    height: 49px;
    padding: 7px 14px
}

.pre-search-item:hover {
    background: var(--color-section-bg-opaque)
}

.pre-search-item:hover .pre-search-item__path-container .pre-search-item__path-tab,.pre-search-item:hover .pre-search-item__search-result {
    color: var(--color-headers-text)
}

.pre-search-item__search-result {
    color: rgba(0,0,0,.6);
    display: block;
    font-size: 14px
}

.pre-search-item__path-container {
    align-items: center;
    -moz-column-gap: 4px;
    column-gap: 4px;
    display: flex;
    margin-top: 6px
}

.pre-search-item__path-tab {
    color: rgba(0,0,0,.6);
    font-size: 10px
}

.pre-search-item__path-separator-icon {
    fill: rgba(0,0,0,.6);
    height: 6px;
    width: 3px
}

.search-bar__text-field:focus {
    border-color: var(--color-brand-green)
}

.search-bar__text-field:focus~.pre-search-list {
    display: block
}

.tabs-list {
    display: flex;
    flex-direction: column;
    max-width: 277px;
    padding-bottom: 50px;
    row-gap: 4px;
    width: 100%
}

.tabs-list[data-loaded=true] .tabs-item>.tabs-list {
    display: flex;
    left: 0;
    position: absolute
}

@media (max-width: 419px) {
    .tabs-list {
        max-width:326px
    }
}

.tabs-list .tabs-item {
    flex-shrink: 0;
    overflow: hidden;
    position: relative
}

.tabs-list .tabs-item>.tabs-list {
    display: none
}

.tabs-list .tabs-item .tabs-list {
    padding-bottom: 0;
    padding-left: 16px;
    padding-top: 4px
}

.tabs-list .tabs-item .tabs-item__header {
    align-items: center;
    background-color: #f7f8f8;
    color: var(--color-headers-text);
    -moz-column-gap: 10px;
    column-gap: 10px;
    display: flex;
    justify-content: space-between;
    line-height: 19px;
    position: relative;
    transition: .25s;
    z-index: 1
}

.tabs-list .tabs-item .tabs-item__header .tabs-item__header-icon {
    flex-shrink: 0;
    height: 13px;
    transform: rotate(0deg);
    transition: .2s;
    width: 7px
}

.tabs-list .tabs-item .tabs-item__link {
    display: block;
    line-height: 19px
}

.tabs-list .tabs-item .tabs-item__header,.tabs-list .tabs-item .tabs-item__link {
    border-radius: 15px;
    color: rgba(0,0,0,.6);
    padding: 10px 13px 10px 10px
}

.tabs-list .tabs-item .tabs-item__header:hover,.tabs-list .tabs-item .tabs-item__link:hover,.tabs-list .tabs-item .tabs-item__link_active {
    background-color: var(--color-section-bg-opaque);
    color: var(--color-headers-text)
}

.tabs-list .tabs-list__checkbox {
    display: none
}

.tabs-list .tabs-list__checkbox:checked+.tabs-item>.tabs-item__header {
    color: #252b36
}

.tabs-list .tabs-list__checkbox:checked+.tabs-item>.tabs-item__header .tabs-item__header-icon {
    transform: rotate(90deg)
}

.tabs-list:not([data-loaded=true])>.tabs-list__checkbox:checked+.tabs-item>.tabs-list {
    display: flex
}

.content {
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 8px;
    width: 100%
}

.content .main-title {
    font-size: 26px;
    margin-top: 20px
}

.content .content__integrators-link {
    align-items: center;
    background-color: #e8ecf3;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    margin-top: 25px;
    padding: 10px;
    text-align: center;
    transition: .25s
}

.content .content__integrators-link:hover {
    background-color: #dae0e7;
    color: #04b
}

.content>.description:last-of-type {
    margin-bottom: 80px
}

.content>.search-bar {
    display: none
}

.content .section-title {
    font-size: 24px;
    margin-bottom: 5px
}

.description {
    display: flex;
    flex-direction: column;
    row-gap: 26px
}

.description__text {
    color: var(--color-headers-text)
}

.description__image[alt=confidentiality] {
    max-width: 391px;
    width: 100%
}

.description__image-container {
    align-items: center;
    display: flex;
    gap: 20px
}

.anchor-nav-container {
    align-self: flex-start;
    flex-shrink: 0;
    max-width: 250px;
    padding-right: 10px;
    position: -webkit-sticky;
    position: sticky;
    top: 78px
}

.anchor-nav {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-left: 10px;
    margin-top: 23px;
    max-width: 290px
}

.anchor-nav__title {
    font-size: 18px;
    font-weight: 700;
    padding: 4px
}

.anchor-nav__link {
    color: var(--color-headers-text);
    padding: 4px;
    position: relative
}

.anchor-nav__link:before {
    background: rgba(64,64,64,.71);
    border-radius: 2px;
    bottom: -2px;
    content: "";
    height: 3px;
    left: 3px;
    opacity: 0;
    position: absolute;
    transition: .2s;
    width: 0
}

.anchor-nav__link:hover:before {
    opacity: 1;
    width: calc(100% - 6px)
}

.anchor-nav-container .anchor-nav .anchor-nav__title {
    font-size: 18px
}

@media (max-width: 1099px) {
    .anchor-nav-container {
        display:none!important
    }

    .content {
        max-width: none
    }
}

@media (max-width: 920px) {
    .description__image-container,.path {
        flex-wrap:wrap
    }
}

@media (max-width: 773px) {
    .content {
        padding:0 20px 30px
    }

    .path {
        margin-top: 0
    }

    .content>.search-bar {
        display: block;
        max-width: none
    }

    .content>.search-bar .pre-search-list,.content>.search-bar .search-bar__text-field {
        background: #f1f4f8
    }

    .content>.search-bar .pre-search-list .pre-search-item:hover,.content>.search-bar .search-bar__text-field:focus {
        background: #fff
    }
}

.search-container {
    max-width: 277px;
    position: relative;
    width: 100%;
    z-index: 10
}

@media (max-width: 419px) {
    .search-container {
        max-width:326px
    }
}

.search-wrapper {
    position: relative;
    z-index: 1
}

.search-bar {
    position: relative;
    z-index: 10
}

.search-bar input {
    background: #fff;
    border-radius: 15px;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    height: 38px;
    line-height: 0;
    padding-left: 16px;
    padding-right: 45px;
    width: 100%
}

.search-bar .search-bar__input_active {
    outline: 2px solid #25b372
}

.search-bar .search-bar__button {
    height: 19.5px;
    position: absolute;
    right: 15px;
    top: 9px;
    width: 19px
}

.search-bar .search-bar__button svg {
    height: inherit;
    width: inherit
}

.search-list.loading {
    height: 112px
}

.search-list.loading div {
    align-items: center;
    display: flex;
    height: 39px;
    justify-content: center
}

.search-list {
    background: #fff;
    border: 1px solid #e8ecf3;
    border-radius: 0 0 15px 15px;
    padding-top: 25px;
    position: absolute;
    top: 19px;
    width: 100%;
    z-index: 2
}

.search-list ul {
    max-height: 300px;
    overflow-y: auto;
    padding: 0
}

.search-list ul::-webkit-scrollbar {
    background: transparent;
    border-radius: 7px;
    padding: 2px;
    width: 13px
}

.search-list ul::-webkit-scrollbar-thumb {
    background: #cdcdcd;
    border: 4px solid #fff;
    border-radius: 7px
}

.search-list li {
    color: rgba(0,0,0,.6);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    list-style: none;
    text-align: left;
    transition: .3s ease
}

.search-list li a {
    align-items: center;
    color: inherit;
    display: flex;
    padding: 11px 16px;
    text-decoration: none
}

.search-list li:hover {
    background: #e8ecf3;
    color: #000
}

.search-list li div span,.search-list li div svg {
    cursor: pointer;
    margin-right: 4px
}

.search-list a:last-child li {
    padding-bottom: 0;
    padding-top: 0
}

.search-list a:last-child li:first-child {
    align-items: center;
    border-radius: 0 0 15px 15px;
    border-top: 1px solid rgba(0,0,0,.06);
    color: #3288d7;
    display: flex;
    height: 46px;
    justify-content: space-between;
    padding: 0 16px;
    text-decoration: underline
}

.search-list li div {
    font-size: 10px;
    margin-top: 6px
}

.search-list li div:first-child {
    margin-right: 4px
}

.search-page-container {
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 44px
}

@media (max-width: 699px) {
    .search-page-container {
        padding:0 27px
    }
}

@media (max-width: 450px) {
    .search-page-container {
        padding:0 20px
    }
}

.search-page-container .main-title {
    margin-top: 40px
}

.search-content-container {
    flex-grow: 1;
    width: 100%
}

.search-content {
    flex-direction: column;
    margin: 0 auto;
    max-width: 1154px
}

.search-content,.search__input {
    align-items: center;
    display: flex
}

.search__input {
    background: #f1f4f8;
    border-radius: 15px;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    justify-content: space-between;
    line-height: 17px;
    margin-top: 78px;
    max-width: 636px;
    padding: 10px 13px 10px 16px;
    width: 100%
}

@media (max-width: 1220px) {
    .search__input {
        margin-top:50px
    }
}

@media (max-width: 699px) {
    .search__input {
        margin-top:30px
    }
}

.search__input input {
    background: transparent;
    border: 0;
    outline: 0;
    padding-right: 10px;
    width: 100%
}

.search__input input:focus {
    outline: none
}

.search__input span {
    height: 19px;
    width: 19px
}

.search-content-list {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 37px;
    width: 100%
}

.search-content-list h2 {
    color: #252b36;
    font-family: Inter;
    font-size: 31px;
    font-style: normal;
    font-weight: 600;
    line-height: 118.52%;
    margin: 0;
    text-align: center
}

@media (max-width: 699px) {
    .search-content-list h2 {
        font-size:26px
    }
}

.search-content-list a {
    color: inherit;
    margin-top: 41px;
    text-decoration: none
}

.search-content-list ul {
    list-style: none;
    margin: 33px 0 0;
    max-height: calc(50vh - 39px);
    overflow: auto;
    padding: 0 10px 0 0;
    width: 100%
}

@media (max-width: 699px) {
    .search-content-list ul {
        max-height:40vh
    }
}

.search-content-list ul::-webkit-scrollbar {
    border-radius: 3px;
    width: 5px
}

.search-content-list ul::-webkit-scrollbar-thumb {
    background: #cdcdcd;
    border-radius: 5px;
    width: 5px
}

.search-content-list ul li {
    border-bottom: 1px solid rgba(0,0,0,.16);
    color: #252b36;
    padding-bottom: 14px;
    padding-top: 14px
}

.search-content-list ul li a {
    color: inherit;
    text-decoration: none
}

.search-content-list ul li a h5 {
    font-size: 18px;
    font-weight: 500
}

.search-content-list ul li a h5,.search-content-list ul li a p {
    color: #252b36;
    font-family: Inter;
    font-style: normal;
    line-height: 118.52%
}

.search-content-list ul li a p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 8px
}

.search-content-list ul li:last-child {
    border-bottom: none
}

.search-content-list a div {
    align-items: center;
    background: #f1f4f8;
    border-radius: 17px;
    display: flex;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    height: 57px;
    justify-content: center;
    line-height: 24px;
    position: relative;
    width: 253px
}

.search-content-list a div span {
    display: block;
    left: 22px;
    position: absolute
}

.request-education-button {
    background: transparent;
    border-radius: 20px;
    display: block;
    flex-shrink: 0;
    font-weight: 500;
    height: 39px;
    margin-top: 20px;
    max-width: 277px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 10;
    z-index: 1
}

.request-education-button:before {
    -webkit-animation: move-gradient-3colors 1.3s linear infinite;
    animation: move-gradient-3colors 1.3s linear infinite;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
    background: linear-gradient(90deg,#c5fce7 0,#d6e7fd 33.3%,#c5fce7 66.7%,#d6e7fd);
    content: "";
    height: 100%;
    left: -200%;
    position: absolute;
    top: 0;
    transition: .5s;
    width: 300%;
    z-index: -1
}

.request-education-button:hover:before {
    -webkit-animation-play-state: running;
    animation-play-state: running
}

@media (max-width: 773px) {
    .request-education-button {
        margin-top:70px
    }
}

.app-modal-root {
    align-items: center;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background-color: rgba(111,126,140,.2);
    height: 100vh;
    justify-content: center;
    left: 0;
    overflow: hidden;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 5000
}

.app-modal-root.visible {
    display: flex
}

.app-modal-root .app-button-close {
    fill: #fff;
    align-items: center;
    background: hsla(0,0%,39%,.5);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 10px;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 5005
}

.app-modal-root .app-modal img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}
