:root {
    --accent-color: #0077FF;

    --primary-text-color: #3f4254;

    --primary-border-radius: 10px;

    --transition-duration: 250ms;
    --transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

    --mobile-header-height: 50px;

    /* colors gray background */
    --color-gray-100: #f3f6f9;
    --color-gray-200: #ebedf3;
    --color-gray-300: #e4e6ef;
    --color-gray-400: #d1d3e0;
    --color-gray-500: #b5b5c3;
    --color-gray-600: #7e8299;
    --color-gray-700: #5e6278;
    --color-gray-800: #3f4254;
    --color-gray-900: #181c32;

    /* colors dark text */
    --color-dark-75: #3f4254;
    --color-dark-65: #5e6278;
    --color-dark-50: #7e8299;
    --color-dark-40: #b5b5c3;
    --color-dark-25: #d1d3e0;

    --color-text-body: #3f4254;

    /* font size */
    --font-size-text: 14px;
    --font-size-xs: 10px;
    --font-size-sm: 12px;
    --font-size-lg: 14px;
    --font-size-h6: 15px;
    --font-size-h5: 16px;
    --font-size-h4: 18px;
    --font-size-h3: 20px;
    --font-size-h2: 23px;
    --font-size-h1: 26px;
}

@font-face {
    font-family: 'CeraPro';
    src: url('../fonts/CeraPro/CeraPro-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'CeraPro';
    src: url('../fonts/CeraPro/CeraPro-Medium.ttf');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'CeraPro';
    src: url('../fonts/CeraPro/CeraPro-Black.ttf');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'CeraPro';
    src: url('../fonts/CeraPro/CeraPro-Bold.ttf');
    font-weight: 700;
    font-style: normal;
}

.lynx-color-dark-75 {
    color: var(--color-dark-75) !important;
}

.lynx-color-dark-65 {
    color: var(--color-dark-65) !important;
}

.lynx-color-dark-55 {
    color: var(--color-dark-50) !important;
}

.lynx-color-dark-40 {
    color: var(--color-dark-40) !important;
}

.lynx-color-dark-25 {
    color: var(--color-dark-25) !important;
}

.lynx-fs-text {
    font-size: var(--font-size-text) !important;
}

.lynx-fs-xs {
    font-size: var(--font-size-xs) !important;
}

.lynx-fs-sm {
    font-size: var(--font-size-sm) !important;
}

.lynx-fs-lg {
    font-size: var(--font-size-lg) !important;
}

.lynx-fs-h6 {
    font-size: var(--font-size-h6) !important;
}

.lynx-fs-h5 {
    font-size: var(--font-size-h5) !important;
}

.lynx-fs-h4 {
    font-size: var(--font-size-h4) !important;
}

.lynx-fs-h3 {
    font-size: var(--font-size-h3) !important;
}

.lynx-fs-h2 {
    font-size: var(--font-size-h2) !important;
}

.lynx-fs-h1 {
    font-size: var(--font-size-h1) !important;
}

.lynx-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


html,
body {
    min-height: 100%;

    font-family: "CeraPro", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-h6);
    line-height: 1.25;
    color: var(--primary-text-color);
    background-color: #fff;
}

body {
    background-image: url('/static/images/header-background.svg');
    background-position: 0 0, center;
    background-repeat: no-repeat;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.lynx-hr-dashed {
    padding: 10px 0;
}

.lynx-hr-dashed:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    border-bottom: 1px dashed #ebedf2;
}

.lynx-hr-dashed--padding-out {
    margin: 0 -20px;
    width: calc(100% + 40px);
}

.lynx-link {
    color: var(--accent-color);
    transition: all var(--transition-duration) var(--transition-timing-function);
}

.lynx-link:hover {
    color: #0268da;
}

img {
    max-width: 100%;
    height: auto;
}

.wrapper {
    display: flex;
    flex-direction: column;

    min-height: 100%;
}

.main {
    flex-grow: 1;
}

.text-blue {
    color: var(--accent-color);
}

.lynx-note-marker {
    color: rgb(246, 78, 96);
    font-size: var(--font-size-sm);
}

.navigate {
    padding: 12px 20px;

    @media (max-width: 767px) {
        display: flex;
        align-items: center;

        padding: 0 20px;
        height: var(--mobile-header-height);
    }
}

.navigate__inner {
    display: flex;
    align-items: center;

    @media (max-width: 767px) {
        width: 100%;
    }
}

.navigate__brand img {
    max-height: 25px;
}

.navigate__brand--desk {
    @media (max-width: 1000px) {
        display: none;
    }
}

.navigate__brand--mobile {
    display: none;

    @media (max-width: 1001px) {
        display: block;
    }
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;

    background-color: rgb(86 84 84 / 20%);
    background-image: url('/static/images/invite-background.svg');
    background-position: 50% 50%, center;
    background-repeat: no-repeat;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(8px);

    transition: background-color var(--transition-duration) var(--transition-timing-function);
}

.menu {
    display: none;
    flex-direction: row;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.menu a {
    font-style: normal;
    font-size: var(--font-size-text);
    line-height: 17px;
    text-decoration: none;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500;
}

.menu__buttons {
    display: none;
    gap: 15px;
    justify-content: flex-end;
}

.mobile-menu__wrapper {
    position: fixed;
    top: var(--mobile-header-height);
    left: 0;
    z-index: 9999;

    width: 100%;
    height: calc(100vh - var(--mobile-header-height));

    overflow: hidden;
    pointer-events: none;
}

.mobile-menu {
    height: 100%;
    width: 100%;
    padding: 40px 0;

    background-image: url('/static/images/header-background.svg');
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;

    transform: translateX(120%);
    transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    opacity: 0.8;
}

.mobile-menu__wrapper.active {
    pointer-events: auto;
}

.mobile-menu__wrapper.active .mobile-menu {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-evenly;

    min-height: 100%;
}

.mobile-menu__navigations {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mobile-menu__navigations a {
    width: 100%;

    font-style: normal;
    font-weight: 500;
    font-size: var(--font-size-h1);
    line-height: 1.25;
    color: #000000;
    text-align: center;
}

.mobile-menu__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-menu__buttons a {
    min-width: 120px;

    text-align: center;
}

.mobile-menu-toggle {
    text-align: center;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle button {
    color: var(--accent-color);

    border: transparent;
    background: transparent;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--primary-border-radius);
    font-family: "CeraPro", serif;
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-text);
    line-height: 17px;
    cursor: pointer;

    transition: all var(--transition-duration) var(--transition-timing-function);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.button:disabled {
    opacity: 0.65;
    pointer-events: none;
}

.button--invisible {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.button--invisible:hover {
    color: #fff;
}

.button--invisible:hover,
.button--primary:hover {
    background: #288eff;
    border: 1px solid #288eff;
}

.button--primary {
    color: #fff;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.button--large {
    padding: 15px;
}

.hero-block {
    padding: 20px;
}

.hero-block__title {
    margin-top: 40px;
    font-weight: 700;
    font-size: var(--font-size-h1);
    line-height: 38px;
    color: #000000;
}

.hero-block__description {
    display: flex;
    margin-top: 20px;
    font-style: normal;
    font-weight: 500;
    font-size: var(--font-size-h4);
    line-height: 22px;
    color: var(--color-dark-75);
}

.hero-buttons {
    display: flex;
    margin-top: 40px;
    gap: 30px;
}

.button-play {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

.button-play__icon {
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    font-size: var(--font-size-h3);
    border-radius: 50%;
    background: #fff;
    color: var(--accent-color);
}

.button-play__icon i {
    line-height: normal;
}

.button-play__text {
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-text);
    line-height: 17px;
    /* identical to box height */
    color: var(--color-dark-75);
}

.hero-images {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.hero-clients-block {
    margin-top: 30px;
}

.hero-clients__title {
    display: flex;
    padding: 20px 0 0 0;
}

.hero-clients {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-end;
    overflow: hidden;
}

.hero-clients img {
    max-height: 100px;
}

@media (min-width: 768px) {
    .hero-block, .navigate {
        padding: 12px;
    }

    .menu {
        display: flex;
    }

    .menu__buttons {
        display: flex;
    }

    .hero-block__title {
        margin-top: 100px;
        font-size: 48px;
        line-height: 58px;
    }

    .hero-clients-block {
        margin-top: 70px;
    }

    .hero-clients {
        overflow: inherit;
    }
}


.manage {
    margin-top: 50px;
}

.manage__title {
    font-weight: 700;
    font-size: var(--font-size-h2);
    line-height: 28px;
    text-align: center;
    color: #000000;
}

.manage__description {
    margin-top: 15px;
    font-size: var(--font-size-h4);
    text-align: center;
}

.manage-cards {
    flex-direction: column;
    margin-top: 30px;
    gap: 10%;
    justify-content: center;
    align-items: center;
}

.manage-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 25px;
    width: 90%;
    margin-bottom: 25px;
    background: #fff;
    box-shadow: 0 81px 304px rgba(0, 0, 0, 0.07), 0 18px 68px rgba(0, 0, 0, 0.0417275), 0 5px 20px rgba(0, 0, 0, 0.0282725);
    border-radius: var(--primary-border-radius);
}

.manage-cards__image {
    display: flex;
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.manage-cards__image--pure {
    background: #E7D9F2;
}

.manage-cards__image--green {
    background: #CFE2B1;
}

.manage-cards__image--yellow {
    background: #F5E3C0;
}

.manage-cards__title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: var(--font-size-h4);
    color: #000000;
}

@media (min-width: 768px) {
    .manage {
        margin-top: 100px;
    }

    .manage__title {
        font-size: var(--font-size-h1);
        line-height: 34px;
    }

    .manage__description {
        font-size: var(--font-size-h3);
        line-height: 29px;
    }

    .manage-cards {
        flex-direction: row;
        align-items: stretch;
        margin-top: 110px;
        gap: 5%;
    }

    .manage-card {
        width: 30%;
        margin-bottom: 0;
    }
}

.always-events {
    margin-top: 40px;
}


.always-events-images {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.always-events-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.always-events__title {
    margin-top: 40px;
    font-style: normal;
    font-weight: 700;
    font-size: var(--font-size-h2);
    line-height: 28px;
    text-align: center;
    color: #000000;
}

.always-events-item {
    display: flex;
    width: 100%;
    flex-direction: row;
    gap: 30px;
}

.always-events-item__images {
    display: flex;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.always-events-item-text {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.always-events-item-text__title {
    margin-bottom: 10px;

    font-style: normal;
    font-weight: 700;
    font-size: var(--font-size-h4);
    line-height: 22px;
    color: #000000;
}

.always-events-item--blue {
    background: #D5E3FE;
}

.always-events-item--light-blue {
    background: #D5F3FE;
}

.always-events-item--purple {
    background: #E7D9F2;
}

@media (min-width: 500px) {
    .always-events-content,
    .saas-cloud-content {
        padding-left: 20px;
    }
}

@media (min-width: 768px) {
    .always-events {
        margin-top: 100px;
    }

    .always-events__title {
        font-size: var(--font-size-h1);
        line-height: 34px;
        text-align: left;
    }

    .always-events-content,
    .saas-cloud-content {
        align-items: baseline;
        padding-left: 0;
    }

    .always-events-item-text {
        width: 300px;
    }
}

.process-automation {
    margin-top: 20px;
}

.process-automation-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px
}

.process-automation__title {
    font-style: normal;
    font-weight: 700;
    font-size: var(--font-size-h2);
    line-height: 28px;
    text-align: center;
    color: #000000;
}

.process-automation__description {
    text-align: center;
}

.process-automation-images {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

@media (min-width: 768px) {
    .process-automation__title {
        font-size: var(--font-size-h1);
        line-height: 34px;
    }
}


.saas-cloud {
    margin-top: 40px;
}

.saas-cloud-images {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}

.saas-cloud-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.saas-cloud__title {
    margin-top: 40px;
    font-style: normal;
    font-weight: 700;
    font-size: var(--font-size-h2);
    line-height: 28px;
    text-align: center;
    color: #000000;
}

.saas-cloud-item {
    display: flex;
    flex-direction: row;
    gap: 30px;

    width: 100%;
}

.saas-cloud-item__images {
    display: flex;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

.saas-cloud-item-text {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.saas-cloud-item-text__title {
    margin-bottom: 10px;

    font-style: normal;
    font-weight: 700;
    font-size: var(--font-size-h4);
    line-height: 22px;
    color: #000000;
}

.saas-cloud-item-text__description {
    line-height: 20px;
}

.saas-cloud-item--blue {
    background: #D5E3FE;
}

.saas-cloud-item--light-blue {
    background: #D5F3FE;
}

.saas-cloud-item--dark-blue {
    background: #98B7FF;
}

@media (min-width: 768px) {
    .saas-cloud__title {
        font-size: var(--font-size-h1);
        line-height: 34px;
        text-align: left;
    }

    .saas-cloud-content {
        align-items: baseline;
    }

    .saas-cloud-item-text {
        width: 300px;
    }
}

.invite-block {
    margin-top: 50px;
}

.invite {
    display: flex;
    flex-direction: row;
    height: 240px;
    padding: 20px;
    background-color: #D9D9D9;
    background-image: url('/static/images/invite-background.svg');
    background-position: 50% 50%, center;
    background-repeat: no-repeat;
    border-radius: var(--primary-border-radius);
}

.invite-info {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.invite-title {
    font-weight: 700;
    font-size: var(--font-size-h2);
    color: #000000;
}

.invite-title--blue {
    color: var(--accent-color);
}

.invite-description {
    font-size: var(--font-size-h4);
    text-align: center;
}

.invite-image-position {
    display: none;
    position: relative;
    width: 760px;
    height: 430px;
    right: -5%;
    top: -50%;
    background: url("https://static.files.roxydesk.com/api/public/dl/IhLgsHm2?inline=true") no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

@media (min-width: 992px) {
    .invite-block {
        margin-top: 100px;
    }

    .invite {
        height: 300px;
        padding: 40px;
        border-radius: var(--primary-border-radius);
    }

    .invite-info {
        align-items: start;
    }

    .invite-description {
        text-align: left;
    }

    .invite-image-position {
        display: block;
        right: 0;
        top: -69%;
    }
}

@media (min-width: 1200px) {
    .invite-block {
        margin-top: 50px;
    }

    .invite-image-position {
        top: -66%;
        background-size: 86%;
    }
}

@media (min-width: 1400px) {
    .invite-block {
        margin-top: 50px;
    }

    .invite-image-position {
        top: -66%;
        background-size: 86%;
    }
}

/**
  ************ FOOTER **************
*/

.footer-block {
    margin-top: 80px;
}

.footer-block__top {
    border-top: 1px solid #ccc;
    padding-top: 30px;
}

@media (min-width: 768px) {
    .footer-block__top {
        display: flex;
        gap: 20px;
    }
}

.footer-logo-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-blocks__brand {
    padding: 3px 10px;
    max-width: fit-content;

    background-color: rgb(86 84 84 / 20%);
    background-image: url('/static/images/invite-background.svg');
    background-position: 50% 50%, center;
    background-repeat: no-repeat;

    border-radius: var(--primary-border-radius);
}

.footer-logo-blocks__brand img {
    height: 24px;
}

.footer-logo-description {
    font-weight: 500;
    line-height: 20px;
    color: #555555;

}

.footer-menus {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;

    width: 100%;

    @media (max-width: 767px) {
        gap: 0;
    }
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;

    margin-top: 20px;
    width: 100%;
}

.footer-menu-item:hover {
    color: var(--accent-color);
}

@media (min-width: 768px) {
    .footer-menus {
        justify-content: space-around;
        flex-wrap: nowrap;
    }

    .footer-menu {
        width: auto;
        margin-top: 0;
    }
}

.footer-menu-title {
    font-weight: 700;
    font-size: var(--font-size-h4);
    color: #000000;
}

.footer-menu-item {
    color: var(--color-dark-75);
}

.copyright-block {
    margin-top: 20px;
    border-top: 1px solid #ccc;
}

.copyright {
    padding: 20px 10px;
    font-style: normal;
    font-size: var(--font-size-sm);
    color: #000000;
}

/**
  ************ END FOOTER **************
*/

/**
  ************ PRICE PAGE **************
*/

.price {
    margin-top: 90px;
    margin-bottom: 25px;
}

@media (max-width: 1000px) {
    .price.container {
        max-width: 100%;
        padding: 0;
    }
}

.price-table__container {
    overflow-x: auto;
    max-width: 100%;
    background-color: #ffffff;
    padding: 40px;
    border-radius: var(--primary-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1000px) {
    .price-table__container {
        padding: 0;
    }
}

.price-table {
    width: auto;
    margin: 0 auto;

    table-layout: auto;
    border-collapse: collapse;
}

.price-table .button {
    box-shadow: none;
}

.price-table .button--invisible {
    background-color: transparent;
}

.price-table .button--invisible:hover {
    background-color: var(--accent-color);
}

.price-table__title {
    font-weight: 700;
    font-size: var(--font-size-h2);
    color: #000000;
}

.price-table__subtitle {
    flex-grow: 1;

    font-weight: 500;
    font-size: var(--font-size-h4);
    text-align: center;
}

.price-table__text {
    font-weight: 400;
}

.price-table__btn-wrap {
    flex-grow: 1;

    display: flex;
    align-items: flex-end;
}

.price-table .switch__buttons button {
    min-width: 90px;
    margin-bottom: 10px;
}

.price-table .switch__text {
    margin-bottom: 15px;

    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-text);
    line-height: 20px;
    color: #555555;
}

.price-table th .inner button {
    max-width: max-content;
}

.price-table th:first-child,
.price-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;

    min-width: 120px;
    max-width: 240px;

    background-color: rgb(220 238 255 / 97%);
}

@media (min-width: 768px) {
    .price-table th:first-child,
    .price-table td:first-child {
        background-color: transparent;
    }
}

.price-table th,
.price-table td {
    padding: 8px;

    text-align: center;

    overflow: hidden;
    text-overflow: ellipsis;
}

.price-table th {
    position: sticky;
    top: 0;

    padding-left: 15px;
    padding-right: 15px;
}

.price-table th:not(:first-child) {
    vertical-align: top;
}

.price-table th .inner {
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 353px;
}

@media (min-width: 768px) {
    .price-table th .inner {
        height: 338px;
    }
}

@media (min-width: 1200px) {
    .price-table th .inner {
        height: auto;
    }
}

.price-table th .inner > *:not(:first-child):not(:last-child) {
    margin-bottom: 10px;
}

.price-table .green {
    color: #14d87d;
}

.price-table .red {
    color: #ff5252;
}

.price-table .gold {
    color: #FFD700;
}

.price-table .first-col {
    padding-top: 14px;
    padding-bottom: 14px;

    text-align: left;
}

.price-table .subtitle__row {
    background-color: rgb(91 178 255 / 37%);
}

.price-table .first-col.subtitle {
    padding-top: 12px;
    padding-bottom: 12px;

    font-style: normal;
    font-weight: 700;
    font-size: var(--font-size-h5);
    color: #000000;
}

[data-period-current="month"] [data-period="year"],
[data-period-current="year"] [data-period="month"] {
    display: none;
}

.price-table__price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;

    font-weight: 500;
}

@media (min-width: 768px) {
    .price-table .first-col {
        padding-left: 25px;

        text-align: left;
    }
}

.price-table .img-wrap {
    display: flex;
    justify-content: center;

    height: 135px;
}

.price-table__notes {
    display: flex;
    flex-direction: column;
    gap: 10px;

    padding: 20px;
}

.price-table__note {
    font-size: var(--font-size-sm);
}

.price-table__note sup {
    font-size: var(--font-size-xs);

}

/**
  ************ END PRICE PAGE **************
*/

/**
  ************ CONTACTS PAGE **************
*/

.contacts {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 70px;

    margin: 40px auto 0 auto;
}

@media (min-width: 768px) {
    .contacts {
        flex-direction: row;

        margin: 90px auto 25px auto;
        max-width: 950px;
    }

    .callback-form__wrapper {
        width: 55%;
        min-width: 55%;
    }

    .info__wrapper {
        flex-grow: 1;
    }
}

.callback-form__wrapper {
    background-color: #ffffff;
    padding: 40px;
    border-radius: var(--primary-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.callback-form__button {
    width: 100%;
}

.callback-form__button-inner--loading {
    display: none;
}

.callback-form__title {
    font-style: normal;
    font-weight: 600;
    font-size: var(--font-size-h1);
    line-height: 1.25;
    color: #000000;
}

.callback-form__desc {
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-h6);
    color: #555555;
}

.callback-form__label {
    font-style: normal;
    font-weight: 400;
    font-size: var(--font-size-text);
    line-height: 1.5;
    color: var(--color-dark-75);
}

.callback-form textarea {
    height: 205px;
}

.info__img-wrap {
    margin-bottom: 25px;

    text-align: center;
}

.info__img {
    width: 250px;
    height: auto;
}

.info__list {
    margin-bottom: 20px;
}

.info__list-row:not(:last-child) {
    margin-bottom: 25px;
}

.info__list-row--2 {
    display: flex;
    gap: 25px;
}

.info__item {
    display: flex;
    flex-direction: column;
}

.info__item-title {
    font-style: normal;
    font-weight: 600;
    font-size: var(--font-size-h4);
    line-height: 1.25;
    color: #000000;
}

.info__item-numbers-wrap {
    display: flex;
    flex-direction: column;

    margin-bottom: 10px;
}

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

.contacts__socials-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts__socials-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;

    min-width: 122px;
}

.contacts__socials--telegram {
    color: #fff;
    background: #0E8ED4;
}

.contacts__socials--telegram:hover {
    color: #fff;
}

.contacts__socials--viber {
    background: #7b4d9b;
    color: #fff;
}

.contacts__socials--viber:hover {
    color: #fff;
}


/**
  ************ END CONTACTS PAGE **************
*/

/**
  ************ SOCIALS **************
*/

.socials-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

a.socials-link {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.socials-link i {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 20px;
    min-height: 20px;
}

.socials-link--telegram {
    color: #0E8ED4;
}

.socials-link--telegram:hover {
    color: #0E8ED4;
}

.socials-link--facebook {
    color: #0866FF;
}

.socials-link--facebook:hover {
    color: #0866FF;
}

.socials-link--instagram {
    color: #E1306C;
}

.socials-link--instagram:hover {
    color: #E1306C;
}

.socials-link--viber {
    background: #7b4d9b;
}

.socials-link--viber:hover {
    background: #7b4d9b;
}

.socials-desc {
    margin-left: 5px;
}

/**
  ************ END SOCIALS **************
*/

/**
  ************ ALERT **************
*/

.lynx-alert {
    position: fixed;
    transform: translateX(120%);
    transition: transform 500ms;
    right: 30px;
    bottom: 95px;

    display: flex;
    align-items: center;
    gap: 15px;

    width: 365px;
    padding: 7px 20px 7px 15px;

    border-left: 5px solid #1bc5bd;
    border-radius: var(--primary-border-radius);
    background-color: #f9f9f9;
    box-shadow: 3px 3px 10px 2px rgba(82, 63, 105, .2);

    @media (max-width: 450px) {
        right: 20px;

        width: 290px;
    }
}

.lynx-alert.is-open {
    transform: translateX(0);
}

.lynx-alert__icon {
    color: #1bc5bd;

    border-radius: 5px;
}

.lynx-alert__content {
    flex-grow: 1;
}

.lynx-alert__title {
    margin-bottom: 5px;

    font-size: var(--font-size-text);
    font-weight: bold;
    color: #3f4254;
}

.lynx-alert__message {
    margin-bottom: 0;

    overflow: hidden;
    text-overflow: ellipsis;
    color: #7e8299;
}

.lynx-alert__close {
    cursor: pointer;
    transition: color var(--transition-duration) var(--transition-timing-function);
}

.lynx-alert__close:hover {
    color: #f64e60;
}

/**
  ************ END ALERT **************
*/

/**
   ***** cookie-consent *****
 */

.lynx-cookie-consent {
    position: fixed;
    left: 40px;
    bottom: 40px;
    z-index: 99999999;

    width: 80%;
    max-width: 335px;
    background: #fff;
    border-radius: var(--primary-border-radius);
    box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 2px 6px 2px;
}

.lynx-cookie-consent__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 36px 20px 20px;
    position: relative;
}

.lynx-cookie-consent__icon {
    display: block;
    margin: -64px auto 32px;
    position: relative;
}

.lynx-cookie-consent__title {
    font-size: var(--font-size-text);
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
    width: 100%;
}

.lynx-cookie-consent__text {
    margin-bottom: 16px;
    text-align: justify;
    width: 100%;
}

.lynx-cookie-consent__link {
    font-weight: 600;
}


/**
   ***** end cookie-consent *****
 */

/**
   ***** docs-page *****
 */

.lynx-docs-page {
    display: flex;
    gap: 30px;

    margin-top: 40px;
}

@media (max-width: 767px) {
    .lynx-docs-page {
        flex-direction: column;
    }
}

.lynx-docs-page h1,
.lynx-docs-page h2 {
    margin: 0;
}

.lynx-docs-sidebar {
    position: sticky;
    top: 104px;

    height: fit-content;
    min-width: 235px;
    padding: 20px 0;
}

@media (max-width: 767px) {
    .lynx-docs-sidebar {
        top: -9px;
    }
}

.lynx-docs-content {
    padding: 20px;
}

.lynx-docs-sidebar,
.lynx-docs-content {
    background: #fff;
    border-radius: var(--primary-border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.lynx-docs-sidebar__title {
    padding-left: 20px;
    font-size: var(--font-size-h3);
    font-weight: 500;
    color: var(--color-dark-75);
}

.lynx-docs-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lynx-docs-sidebar li {
    margin-bottom: 4px;
}

.lynx-docs-sidebar a {
    display: block;
    padding: 8px 20px;
    color: var(--primary-text-color);
    transition: background-color var(--transition-duration) var(--transition-timing-function),
    color var(--transition-duration) var(--transition-timing-function);
}

.lynx-docs-sidebar a:hover,
.lynx-docs-sidebar a.active {
    background-color: rgba(0, 119, 255, 0.06);
}

.lynx-docs-sidebar a.active {
    font-weight: 500;
    color: var(--primary-text-color);
    position: relative;
}

.lynx-docs-sidebar a.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background-color: var(--accent-color);
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

/**
   ***** end docs-page *****
 */
