@import '/assets/fonts/Gilroy-Thin/style.css';
@import '/assets/fonts/Gilroy-Light/style.css';
@import '/assets/fonts/Gilroy-Regular/style.css';
@import '/assets/fonts/Gilroy-Medium/style.css';
@import '/assets/fonts/Gilroy-Bold/style.css';
@import '/assets/fonts/Gilroy-SemiBold/style.css';
@import '/assets/fonts/Gilroy-ExtraBold/style.css';

@import '/assets/css/system/buttons.css';

* {
    box-sizing: border-box;
    font-family: 'Gilroy', sans-serif;
}

html,
body {
    min-height: 100vh;
    background-color: #fff;
}

body {
    position: relative;
}

img {
    max-width: 100%;
}

#loadingBlock {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 500ms all;
}

#loadingBlock.show {
    display: block;
}

.sk-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
}

.sk-circle .sk-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sk-circle .sk-child:before {
    display: block;
    width: 15%;
    height: 15%;
    margin: 0 auto;
    content: '';
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-circleBounceDelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.burgerMenuBlock {
    width: 13px;
    height: 12px;
    padding: 0;
    margin: 0;
    font-size: 0;
}

.burgerMenu {
    position: relative;
    left: 0;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    z-index: 10;
    display: flex;
    width: 13px;
    height: 12px;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    transition: 500ms all;
    transition-delay: 0ms;
    cursor: pointer;
}

.burgerMenu:focus {
    outline: none;
}

.burgerMenu__line {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #0a131d;
    transition: 500ms all;
}

.burgerMenu__opened {
    position: absolute;
    top: 29px;
    left: 216px;
}

.burgerMenu__opened .burgerMenu__line {}

.burgerMenu__opened .burgerMenu__line:nth-child(1) {
    position: absolute;
    transform: rotate(45deg) translate(3px, 4px);
}

.burgerMenu__opened .burgerMenu__line:nth-child(2) {
    opacity: 0;
}

.burgerMenu__opened .burgerMenu__line:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -4px);
}


.header {
    position: fixed;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
    display: flex;
    width: 100%;
    padding-top: 27px;
    padding-right: 23px;
    padding-bottom: 23px;
    padding-left: 23px;
    background-color: #fff;
    border-bottom: 2px solid #e7e7e8;
}

.header__rightSide {
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.header__avatara {
    font-size: 0;
}

.header__avatara img {
    border-radius: 50%;
}

.pageContent {
    width: 100%;
}

.header__navButton {
    display: none;
}

.userInfo {
    align-items: center;
    display: none;
    margin-right: 37px;

    grid-auto-flow: column;
    grid-gap: 30px;
}

.userInfo__name,
.userInfo__uid {
    color: #08141d;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
}

.userInfo__sep {
    width: 1px;
    height: 17px;
    background-color: #030b17;
}

.userInfo__exitBttn {
    color: #d0a749;
    font-size: 14px;
    font-weight: bold;
}

.userInfo__exitBttn:hover {
    color: #ab8631;
}

.pageBlock {
    display: flex;
}

.sideNavigation {
    position: fixed;
    top: 0;
    left: -259px;
    z-index: 10;
    width: 258px;
    height: 100vh;
    min-width: 258px;
    overflow: auto;
    background-color: #fff;
    border-right: 1px solid #e2e9fa;
    transition: 500ms all;
}

.sideNavigation__opened {
    left: 0;
}

.sideNavigation__logo {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 38px;
    margin-left: 29px;
    font-size: 0;
}

.sideNavigation__logo svg {
    width: 130px;
}

.headerBlock {}

.headerBlock .container {
    align-items: center;
    justify-content: space-between;
    display: flex;
    padding-top: 21px;
}

.headerBlock__logoBlock {
    font-size: 0;
}

.headerBlock__logo {}

.headerBlock__logo svg {
    width: 98px;
}

.headerBlock__logo svg path {
    fill: #0a131d;
}

.footerBlock {
    padding-bottom: 23px;
}

.footerBlock .container {
    flex-direction: column-reverse;
    display: flex;
}

.footerBlock__copyright {
    max-width: 220px;
    color: #191a20;
    font-size: 13px;
    font-weight: 500;
}

.footerBlock__menuBlock {
    flex-direction: row;
    flex-wrap: wrap;
    display: flex;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dfe0e2;
}

.footerBlock__menuBlock a {
    position: relative;
    display: inline-block;
    color: #191a20;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.footerBlock__menuBlock a:not(:last-child) {
    padding-right: 15px;
}

.footerBlock__menuBlock a:before,
.footerBlock__menuBlock a:before {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background: #000;
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.footerBlock__menuBlock a:hover:before {
    transform: scaleX(1);
}

.footerBlock__menuBlock a:hover:before {
    position: absolute;
    content: '';
    transition: transform 0.5s ease;
}

.footerBlock__menuBlock a:hover {
    text-decoration: none;
}

.bodyContent {
    min-height: calc(100vh - 517px);
}

.bodySimple .bodyContent {
    align-items: center;
    display: flex;
    min-height: calc(100vh - 185px);
    padding: 30px 0;
}

.bodySimple .bodyContent .section {
    flex-grow: 1;
}


.container {
    margin: 0 10px;
}

.bodySimple .container {
    margin: 0 23px;
}


.footer {
    padding-top: 50px;
    padding-bottom: 100px;
    background-color: #fff;
    border-top: 1px solid #e2e9fa;
}

.flexBlock {
    flex-direction: column-reverse;
    display: flex;
}

.footerMenuBlock {
    flex-wrap: wrap;
    justify-content: space-around;
    display: flex;
}

.footerMenu__columnn>h2 {
    color: #12131a;
    font-size: 14px;
    font-weight: 800;
}

.footerMenu__columnn div {
    margin-bottom: 12px;
}

.footerMenu__columnn div:last-child {
    margin-bottom: 0;
}

.footerMenu__columnn div>a {
    color: #12131a;
    font-size: 14px;
    font-weight: 500;
}

.appBlock {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
    width: 100%;
    margin: 70px 0;
}

.logoBlock {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
    margin: 0 28px;
}

.logoBlock__link {
    font-size: 0;
}

.logoBlock__link svg {
    width: 160px;
}

.logoBlock__p {
    margin-top: 30px;
    color: #12131a;
    font-size: 15px;
    font-weight: 500;
    line-height: 160%;
    text-align: justify;
}

.footerBottom {
    flex-direction: column-reverse;
    display: flex;
}

.footerBottom__right {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
    margin: 30px 0;
}

.footerBottom__link {
    margin-bottom: 20px;
    color: #12131a;
    font-size: 13px;
    font-weight: 500;
}

.footerBottom__link:last-of-type {
    margin-bottom: 0;
}

.footerBottom__p {
    margin: 0;
    color: #12131a;
    font-size: 13px;
    font-weight: 500;
    line-height: 140%;
    text-align: center;
}

.getUp__arrow-up {
    display: none;
    -webkit-transition: bottom 500ms;
    transition: bottom 500ms;
}

.getUp__arrow-up.getUp__arrow-active {
    position: fixed;
    right: 10px;
    bottom: 20px;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #fff;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.75);
    border: 1px solid #dedee0;
    border-radius: 50%;
    outline: none;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-name: getUp-up-mobile;
    cursor: pointer;
    opacity: 1;
}

.getUp__arrow-up.getUp__arrow-active:hover {
    opacity: 1;
}

.getUp__arrow-up.getUp__arrow-active:before {
    position: absolute;
    top: 16px;
    right: 9px;
    display: block;
    width: 12px;
    height: 3px;
    clear: both;
    content: '';
    background-color: #12131a;
    border-radius: 3px;
    transform: rotate(45deg);
}

.getUp__arrow-up.getUp__arrow-active:after {
    position: absolute;
    top: 16px;
    left: 9px;
    display: block;
    width: 12px;
    height: 3px;
    clear: both;
    content: '';
    background-color: #12131a;
    border-radius: 3px;
    transform: rotate(-45deg);
}

.getUp__arrow-down {
    display: none;
}

.getUp__arrow-down.getUp__arrow-active {
    position: fixed;
    right: 10px;
    bottom: 20px;
    display: block;
    width: 40px;
    height: 40px;
    background-color: #fff;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.75);
    border: 1px solid #dedee0;
    border-radius: 50%;
    outline: none;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-name: getUp-down-mobile;
    cursor: pointer;
    opacity: 1;
}

.getUp__arrow-down.getUp__arrow-active:before {
    position: absolute;
    top: 19px;
    right: 9px;
    display: block;
    width: 12px;
    height: 3px;
    clear: both;
    content: '';
    background-color: #12131a;
    border-radius: 3px;
    transform: rotate(135deg);
}

.getUp__arrow-down.getUp__arrow-active:after {
    position: absolute;
    top: 19px;
    left: 9px;
    display: block;
    width: 12px;
    height: 3px;
    clear: both;
    content: '';
    background-color: #12131a;
    border-radius: 3px;
    transform: rotate(-135deg);
}

@keyframes getUp-up-mobile {
    0% {
        bottom: 0;
        opacity: 0;
    }

    100% {
        bottom: 20px;
        opacity: 1;
    }
}

@keyframes getUp-down-mobile {
    0% {
        bottom: 50px;
        opacity: 0;
    }

    100% {
        bottom: 20px;
        opacity: 1;
    }
}

.footerMenu__columnn a:before,
.footerBottom__link:before {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    content: '';
    background: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footerMenu__columnn a:after,
.footerBottom__link:after {
    position: absolute;
    content: '';
    transition: transform 0.3s ease;
}

.footerMenu__columnn a:hover,
.footerBottom__link:hover {
    text-decoration: none;
}

.footerMenu__columnn a:hover:before,
.footerBottom__link:hover:before {
    transform: scaleX(1);
}

/* breadcrumbs */
.breadcrumbs {
    align-items: center;
    display: none;
}

.breadcrumbs__ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.breadcrumbs__li {
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 0;
    margin-right: 14px;
}

.breadcrumbs__link {
    padding: 6px 22px;
    color: #999ca0;
    font-size: 13px;
    font-weight: bold;
    background-color: #fff;
    box-shadow: 0 5px 12px 0 rgba(212, 216, 222, 0.19);
    border: 1px solid #e2e9fa;
    border-radius: 14px;
    transition: 500ms all;
}

.breadcrumbs__link-home {
    font-size: 0;
}

.breadcrumbs__link-home:hover,
.breadcrumbs__link-home:focus {
    background-color: #fff !important;
}

.breadcrumbs__li:last-child .breadcrumbs__link {
    color: #252a48;
    background-color: #f1f4fa;
}

.breadcrumbs__link svg {
    width: 14px;
}

.breadcrumbs__link svg path {
    transition: 500ms all;

    fill: #999ca0;
}

.breadcrumbs__link:hover svg path {
    fill: #252a48;
}

.breadcrumbs__link:hover {
    color: #252a48;
    background-color: #f7f8ff;
}

.notificationBlock {
    font-size: 0;
    margin-right: 10px;
}

.notif-block {
    border: 1px solid #E5E5E5;
    border-radius: 3px;
}

.notificationBlock svg {
    width: 20px;
}

.notificationBlock svg path {
    transition: 500ms all;
}

.notificationBlock svg path.ring {
    fill: #979b9f;
}

.notificationBlock:hover svg path.ring,
.notificationBlock-active svg path.ring {
    fill: #030b17;
}

.notificationBlock svg path.elipse {
    display: none;

    fill: #ccac44;
}

.notificationBlock-active svg path.elipse {
    display: block;
}

.notificationBlock-active {
    cursor: pointer;
}

#preloaders {
    display: none;
}

.sideNavigation__block {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    padding-bottom: 20px;
}

.sideNavigation__li {
    min-height: 45px;
    margin-bottom: 5px;
}

.sideNavigation__link {
    position: relative;
    align-items: center;
    display: flex;
    height: 45px;
    color: #6f7180;
    font-size: 24px;
    font-weight: 600;
    border-radius: 0;
    transition: 200ms all;
}

.sideNavigation__link:hover {
    color: #252a48;
}

.sideNavigationSubmenu {
    display: none;
    transition: 500ms all;
}

.sideNavigation__li:hover .sideNavigationSubmenu {
    display: block;
}

.sideNavigation__link-active~.sideNavigationSubmenu {
    display: block;
}

.sideNavigationSubmenu,
.sideNavigation__link {
    padding-right: 25px;
    padding-left: 40px;
    margin-right: 3px;
}

.sideNavigationSubmenu__li {
    margin: 10px 0;
}

.sideNavigationSubmenu__link {
    position: relative;
    color: #6c6e70;
    font-size: 15px;
    font-weight: bold;
    transition: 500ms all;
}

.sideNavigationSubmenu__link:hover,
.sideNavigationSubmenu__link-active {
    color: #404142;
}

.sideNavigationSubmenu__link-active:before {
    position: absolute;
    top: 50%;
    left: -14px;
    display: block;
    width: 4px;
    height: 4px;
    clear: both;
    content: '';
    background-color: #404142;
    border-radius: 4px;
    transform: translateY(-50%);
}

.sideNavigation__link.sideNavigation__link-fractal {
    padding-left: 25px;
    margin-left: 25px;
    color: #d3be33;
    background-color: #fffae0;
    border: 1px solid #faf5dc;
    border-radius: 23.5px;
}

.sideNavigation__link-fractal svg {
    width: 34px;
    margin-right: 14px;
}

.sideNavigation__link.sideNavigation__link-fractal:hover {
    background-color: #fff3b7;
    border: 1px solid #eac46f;
}

.sideNavigation__link:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 0;
    height: 100%;
    clear: both;
    content: '';
    background-color: #f5f5f5;
    border-radius: 0 21.5px 21.5px 0;
    transition: 500ms all;
}

.menuBtnBlock {
    margin-bottom: 20px;
    text-align: center;
}

.menuBtnBlock:last-of-type {
    margin-bottom: 0;
}

.menuBtn {
    padding: 10px;
    display: grid;
    justify-content: center;
    align-items: center;
    background-color: #e6c96d;
    margin: 0 40px;
    transition: 500ms all;
    color: #6f7180;
    font-size: 24px;
    font-weight: 600;
}

.menuBtn:hover {
    background-color: #f7e2a0;
    color: #252a48;
}

.paymentTransaction {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
    width: 100%;
}

.paymentTransaction__main {
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #f0ede4;
    box-shadow: 0px 3px 10px 0px rgba(202, 210, 229, 0.21);
    background-color: #fff;
}

.paymentTransaction_right {
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #f0ede4;
    box-shadow: 0px 3px 10px 0px rgba(202, 210, 229, 0.21);
    background-color: #fff;
    position: relative;
    /* display: flex;
    flex-direction: column;
    justify-content: space-between; */
}

.paymentTransactionRight__title {
    margin-bottom: 30px;
}

.paymentTransactionRightTitle-span {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 3px solid #314de2;
}

.paymentTransaction__list {
    display: flex;
    flex-direction: column;
}

.paymentTransaction__item {
    display: flex;
    margin-bottom: 20px;
}

.paymentTransaction__item:last-of-type {
    margin-bottom: 0;
}

.paymentTransaction__element {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}

.paymentTransaction__element:last-of-type {
    font-weight: bold;
    display: flex;
    justify-content: flex-end;
}

.paymentTransaction__item-total .paymentTransaction__element {
    font-size: 20px;
}

.paymentTransactionFrom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 120px;
    align-items: center;
    position: relative;
    justify-content: center;
}

.paymentTransactionFrom:after {
    content: "";
    clear: both;
    height: 100%;
    width: 1px;
    background-color: #314DE2;
    position: absolute;
    transform: translate(-50%, 0);
    left: 50%;
}

.paymentTransactionFrom__left {}

.paymentTransactionFrom__title {
    font-size: 30px;
    font-weight: bold;
}

.paymentTransactionFrom__subTitle {
    font-size: 18px;
    font-weight: 500;
    color: #989ea6;
}

.signForm__form {
    margin: 20px 0px;
}

.signRow {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.signInput {
    width: 100%;
    border: 1px solid #f0ede4;
    height: 50px;
    padding: 0 10px;
    border-radius: 6px;
    font-weight: 500;
}

.signBttn {}

.paymentTransactionFrom__right {}

.styledChk {
    display: inherit;
}

.styledChk__inp {}

.styledChk__checkbox {}

.styledChk__label {}

.styledChk__inp {
    margin-right: 10px;
    margin-top: 4px;
}

.paymentTransactionFrom .btn {
    display: flex;
    margin: 0 auto;
}

.paymentTransactionRight__wrap {
    /* margin-top: 130px; */
}

.btnGoToProfile {
    position: absolute;
    right: 10px;
    top: 10px;
}

.styledChk {
    align-items: flex-start;
    display: flex;
    cursor: pointer;
}

.styledChk__checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    margin-right: 15px;
    border: 1px solid #ced1d4;
    border-radius: 3px;
    transition: 500ms all;
}

.styledChk__label {
    color: #212529;
    font-size: 15px;
    font-weight: bold;
    transition: 500ms all;
}

.styledChk__label a {
    display: inline-block;
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
}

.styledChk__inp[type=checkbox] {
    display: none;
}

.styledChk__inp[type=checkbox]:checked ~ .styledChk__checkbox:after {
    display: block;
    width: 10px;
    height: 10px;
    margin: 3px;
    clear: both;
    content: '';
    background-color: #314de2;
    transition: 500ms all;
}

.styledChk__inp[type=checkbox]:disabled ~ .styledChk__checkbox {
    border: 2px solid #999;
}

.styledChk__inp[type=checkbox]:checked:disabled ~ .styledChk__checkbox:after {
    background-color: #999;
}

.styledChk__inp[type=checkbox]:disabled ~ .styledChk__label {
    color: #999;
}

.bootstrap-dialog-close-button {
    display: none!important;
}

@media(min-width: 575px) {
    .headerContent {
        margin: 18px 22px;
    }

    .headerBlock .container {
        padding-top: 30px;
    }

    .headerBlock__logo svg {
        width: 129px;
    }

    .bodyContent {
        padding-top: 30px;
    }

    .bodySimple .bodyContent {
        min-height: calc(100vh - 192px);
        padding: 40px 0;
    }

    .footerBlock {
        padding-bottom: 33px;
    }

    .container {
        margin: 0 22px;
    }


    .logoBlock {
        margin-top: 40px;
    }

    .footerMenuBlock h2,
    .footerMenuBlock a {
        margin: 10px 0;
        color: #12131a;
        font-size: 14px;
        font-weight: bold;
    }

    .footerMenu__columnn a {
        position: relative;
        text-decoration: none;
        transition: 500ms all;
    }

    .appBlock a {
        border-radius: 4px;
        transition: 100ms all;
    }

    .appBlock a:before {
        content: none !important;
    }

    .footerMenu__columnn a:hover,
    .footerBottom__link:hover {
        text-decoration: none;
    }

    .appBlock a:hover {
        box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
    }

    .footerBottom__p,
    .footerBottom__link {
        position: relative;
    }

    .footer {
        padding-bottom: 20px;
    }
}

@media(min-width: 768px) {
    .bodySimple .bodyContent {
        min-height: calc(100vh - 149px);
        padding: 50px 0;
    }

    .headerBlock .container {
        padding-top: 40px;
    }

    .footerBlock {
        padding-bottom: 43px;
    }

    .headerBlock__logo svg {
        width: 152px;
    }

    .bodySimple .container {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        margin: 0 auto;
    }

    .footerBlock__copyright {
        flex: 1;
        max-width: initial;
    }

    .footerBlock__menuBlock {
        flex: 1;
        justify-content: flex-end;
        padding: 0;
        margin: 0;
        text-align: right;
        border-bottom: none;
    }

    .footerBlock__menuBlock a {
        font-size: 13px;
    }

    .footerBlock__menuBlock a:not(:last-child) {
        padding-right: 15px;
    }

    .container {
        max-width: 1200px;
        padding-right: 22px;
        padding-left: 22px;
        margin: 0 auto;
    }

    .appBlock {
        justify-content: flex-start;
        width: initial;
        margin: 0;
    }

    .getUp__arrow-up.getUp__arrow-active {
        animation-name: getUp-up-desk;
    }

    .getUp__arrow-down.getUp__arrow-active {
        animation-name: getUp-down-desk;
    }

    .getUp__arrow-up.getUp__arrow-active,
    .getUp__arrow-down.getUp__arrow-active {
        right: 20px;
        bottom: 40px;
    }

    @keyframes getUp-up-desk {
        0% {
            bottom: 0;
            opacity: 0;
        }

        100% {
            bottom: 40px;
            opacity: 1;
        }
    }

    @keyframes getUp-down-desk {
        0% {
            bottom: 60px;
            opacity: 0;
        }

        100% {
            bottom: 40px;
            opacity: 1;
        }
    }
}

@media(min-width: 1024px) {

    .sideNavigationSubmenu,
    .sideNavigation__link {
        padding-right: 35px;
        padding-left: 50px;
        margin-right: 3px;
    }

    body {
        overflow: initial !important;
    }

    .header {
        position: relative;
    }

    .pageContent {
        padding-left: 298px;
    }

    .footerBlock__menuBlock a:not(:last-child) {
        padding-right: 32px;
    }

    .bodyContent {
        padding: 0;
    }

    .burgerMenu__opened {
        display: none;
    }

    .burgerMenuBlock {
        display: none;
    }

    .sideNavigation__logo {
        margin-top: 37px;
        margin-bottom: 64px;
        margin-left: 50px;
    }

    .sideNavigation {
        top: initial;
        left: initial;
        display: block;
        width: 298px;
        min-width: 298px;
        height: 100%;
    }

    .breadcrumbs {
        display: flex;
    }

    .userInfo {
        display: grid;
    }

    .header__navButton {
        display: flex;
    }

    .bodySimple .bodyContent {
        min-height: calc(100vh - 182px);
    }

    .headerBlock .container {
        padding-top: 55px;
    }

    .header__avatara {
        display: none;
    }

    .footerBlock {
        padding-bottom: 53px;
    }

    .headerBlock__logo svg {
        width: 165px;
    }

    body.bodySimple {
        background: url(/assets/images/body/pattern_left.svg) no-repeat top left, url(/assets/images/body/pattern_right.svg) no-repeat bottom right;
        background-size: 18%, 16%;
    }

    .footerBlock__menuBlock {
        text-align: left;
    }

    .flexBlock {
        flex-direction: row;
    }

    .footer {
        padding-top: 75px;
        padding-bottom: 50px;
    }

    .logoBlock {
        align-items: flex-start;
        flex: 2;
        justify-content: flex-start;
        margin: 0;
    }

    .footerMenuBlock {
        flex: 3;
        justify-content: space-around;
        display: flex;
    }

    .logoBlock__p {
        margin-top: 40px;
        margin-right: 80px;
        line-height: 190%;
    }

    .footerBottom {
        flex-direction: row;
        margin-top: 40px;
    }

    .footerBottom__left {
        flex: 2;
    }

    .footerBottom__p {
        text-align: left;
    }

    .footerBottom__right {
        flex: 3;
        flex-direction: row;
        justify-content: space-evenly;
        margin: 0;
    }

    .footerBottom__link {
        margin-bottom: 0;
    }
}

@media(min-width: 1200px) {}

.bootstrap-dialog-close-button button {
    color: white;
    background: unset;
    border: 0;
}

@media(max-width: 768px) {
    .container {
        margin: 0 auto!important;
    }
}

@media(max-width: 575px) {
    .paymentTransactionFrom {
        grid-template-columns: 1fr;
        grid-gap: 40px;
    }

    .paymentTransactionFrom:after {
        left: initial;
        top: 42%;
        width: 100%;
        height: 1px;
        transform: translate(0, -50%);
    }

    .btnGoToProfile {
        top: -50px;
    }
}