.msg {
    position: fixed;
    pointer-events: none;
    overflow: hidden;
    z-index: 30;
    right: 60px;
    padding: 20px 30px 26px 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
    transition: all 0.5s;
    text-align: center;
    top: 40px;
    transform: translateX(100%);
}

@media screen and (max-width: 1200px) {
    .msg {
        top: 160px;
    }
}

@media screen and (max-width: 780px) {
    .msg {
        top: 100px;
    }
}

@media screen and (max-width: 560px) {
    .msg {
        max-width: calc(100% - 40px);
        right: 20px;
        top: 80px;
    }
}

.msg.show {
    opacity: 1;
    transform: translateX(0);
}

.msg::before {
    content: "";
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    bottom: 0;
    left: 0;
}

.msg--danger {
    background: #d31a1a;
    color: #ffffff;
    box-shadow: 0px 5px 70px 0 rgba(238, 61, 72, 0.4);
}

.msg--danger::before {
    background: #B40A1B;
}

.msg--success {
    background: linear-gradient(180deg, #1ad31d 0%, #17bc1a 100%);
    box-shadow: 0px 5px 70px 0 rgba(75, 180, 98, 0.4);
    color: #ffffff;
}

.msg--success::before {
    background: #128f14;
}

.paginator {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.paginator-holder {
    margin-top: 65px;
}

.paginator__item {
    margin-left: 4px;
    margin-right: 4px;
}

.paginator__item.active {
    margin-left: 8px;
    margin-right: 8px;
}

.paginator__item.active .paginator__link {
    pointer-events: none;
    color: #cdd4dd;
}

.paginator__link {
    font-size: 19px;
    font-weight: 600;
    color: #3553ce;
    text-decoration: none;
    transition: all 0.3s;
}

.paginator__link:hover {
    opacity: 0.8;
}

.paginator__link:active {
    opacity: 0.6;
}

.paginator__link-next, .paginator__link-prev {
    transition: all 0.3s;
}

.paginator__link-next svg, .paginator__link-prev svg {
    fill: #cdd4dd;
    width: 8px;
    height: 21px;
}

.paginator__link-next:hover, .paginator__link-prev:hover {
    opacity: 0.8;
}

.paginator__link-next:active, .paginator__link-prev:active {
    opacity: 0.6;
}

.burger-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
    padding-top: 266px;
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.5s;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
}

@media screen and (max-width: 960px) {
    .burger-menu {
        padding-top: 224px;
    }
}

@media screen and (max-width: 749px) {
    .burger-menu {
        padding-top: 137px;
    }
}

@media screen and (max-height: 800px) {
    .burger-menu {
        padding-top: 180px;
    }
}

@media screen and (max-height: 660px) {
    .burger-menu {
        padding-top: 100px;
    }
}

@media screen and (max-height: 590px) {
    .burger-menu {
        padding-top: 50px;
    }
}

@media screen and (max-width: 1600px) and (max-height: 660px) {
    .burger-menu {
        padding-left: 130px;
    }
}

@media screen and (max-width: 960px) and (max-height: 660px) {
    .burger-menu {
        padding-left: 160px;
    }
}

@media screen and (max-width: 749px) and (max-height: 660px) {
    .burger-menu {
        padding-left: 0;
        padding-top: 130px;
    }
}

.burger-menu .container {
    overflow-y: auto;
    max-height: 100%;
}

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

.burger-menu.active .burger-menu__nav {
    pointer-events: all;
    max-width: calc(100% - 100px);
}

.burger-menu.active .burger-menu__socials {
    pointer-events: all;
}

.burger-menu.active .burger-menu__btns {
    pointer-events: all;
}

.burger-menu__nav {
    padding-top: 10px;
}

.burger-menu__nav ul {
    margin: 0;
    padding: 0 0 0 88px;
    list-style: none;
}

@media screen and (max-width: 960px) {
    .burger-menu__nav ul {
        padding-left: 33px;
    }
}

@media screen and (max-width: 560px) {
    .burger-menu__nav ul {
        padding-left: 6px;
    }
}

.burger-menu__nav ul li:not(:last-child) {
    margin-bottom: 3px;
}

@media screen and (max-width: 960px) {
    .burger-menu__nav ul li:not(:last-child) {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 560px) {
    .burger-menu__nav ul li:not(:last-child) {
        margin-bottom: 11px;
    }
}

.burger-menu__nav a {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.41;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
}

@media screen and (max-width: 960px) {
    .burger-menu__nav a {
        font-size: 37px;
    }
}

@media screen and (max-width: 749px) {
    .burger-menu__nav a {
        font-size: 28px;
    }
}

@media screen and (max-width: 560px) {
    .burger-menu__nav a {
        font-size: 17px;
    }
}

.burger-menu__nav a::before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% + 66px);
    left: -33px;
    top: 50%;
    height: calc(100% + 9px);
    background: #1A52D3;
    transition: all 0.3s;
    transform: translateY(-50%) translateX(-40px) scaleX(0.5);
    opacity: 0;
    transform-origin: 0 50%;
}

@media screen and (max-width: 960px) {
    .burger-menu__nav a::before {
        height: calc(100% + 22px);
        top: calc(50% - 3px);
        width: calc(100% + 90px);
    }
}

@media screen and (max-width: 560px) {
    .burger-menu__nav a::before {
        width: calc(100% + 195px);
        height: calc(100% + 12px);
        top: 50%;
    }
}

.burger-menu__nav a.active::before {
    opacity: 1;
    transform: translateX(0) scaleX(1) translateY(-50%);
}

.burger-menu__nav a span {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.burger-menu__nav a:hover::before {
    opacity: 1;
    transform: translateX(0) scaleX(1) translateY(-50%);
}

.burger-menu__socials {
    display: flex;
    margin-top: 41px;
    padding-left: 55px;
}

@media screen and (max-width: 960px) {
    .burger-menu__socials {
        padding-left: 2px;
        margin-top: 38px;
    }
}

@media screen and (max-width: 560px) {
    .burger-menu__socials {
        margin-top: 25px;
        padding-left: 0;
        margin-left: -4px;
    }
}

.burger-menu__social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 30px;
    color: #a0a0a0;
    transition: color 0.3s;
    font-weight: 600;
}

@media screen and (max-width: 960px) {
    .burger-menu__social-link {
        font-size: 25px;
    }
}

@media screen and (max-width: 560px) {
    .burger-menu__social-link {
        font-size: 16px;
    }
}

.burger-menu__social-link:not(:last-child) {
    margin-right: 40px;
}

@media screen and (max-width: 960px) {
    .burger-menu__social-link:not(:last-child) {
        margin-right: 30px;
    }
}

@media screen and (max-width: 560px) {
    .burger-menu__social-link:not(:last-child) {
        margin-right: 11px;
    }
}

.burger-menu__social-link img {
    margin-right: 21px;
    width: 47px;
    display: inline-block;
}

@media screen and (max-width: 960px) {
    .burger-menu__social-link img {
        margin-right: 15px;
    }
}

@media screen and (max-width: 560px) {
    .burger-menu__social-link img {
        width: 35px;
        margin-right: 13px;
    }
}

.burger-menu__social-link:hover {
    color: #d0cece;
}

.burger-menu__social-link:active {
    color: #ffffff;
}

.burger-menu__btns {
    display: none;
}

@media screen and (max-width: 600px) {
    .burger-menu__btns {
        display: block;
    }
}

.burger-menu__btns .h-head__cab-links {
    display: flex;
    transform: none !important;
    opacity: 1 !important;
    margin-top: 30px;
}

body.burger-menu-active.home .burger-menu__btns .h-head__cab-links {
    opacity: 1 !important;
    transform: none !important;
}


.tg-hero {
    background: url(../img/auth-page-bg.jpg) no-repeat center / cover, #030911;
    background-attachment: fixed;
}

.tg-hero__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-bottom: 38px;
    padding-top: 27px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.tg-hero__language {
    position: absolute;
    right: 0;
    top: 0;
}
.tg-hero__language .h-head__lang {
    margin-right: 0;
}
.tg-hero__img {
    margin-bottom: 12px;
    max-width: 140px;
}

.tg-hero__title {
    margin: 0 0 83px;
    text-align: center;
    font-size: 16px;
    color: #374351;
    max-width: 274px;
    margin-left: auto;
    margin-right: auto;
}

.tg-hero__register-btn {
    font-size: 16px;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 10px;
    background: #1A52D3;
    transition: all 0.3s;
    color: #ffffff;
    text-decoration: none;
    margin: 0 0 28px;
}

.tg-hero__register-btn:hover {
    background: #2e65e3;
}

.tg-hero__register-btn:active {
    opacity: 0.8;
}

.tg-hero__login-btn {
    font-size: 14px;
    color: #999daf;
    transition: all 0.3s;
    text-decoration: none;
    margin-bottom: 30px;
}

.tg-hero__login-btn:hover {
    color: #1a52d3;
}

.tg-hero__login-btn:active {
    opacity: 0.8;
}

.tg-hero__support-btn {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-left: 24px;
    margin-top: auto;
}

.tg-hero__support-btn::before {
    content: '';
    display: block;
    position: absolute;
    width: 16px;
    height: 15px;
    background: url("../img/icon-tg2.svg") no-repeat center / contain;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tg-hero__support-btn:hover {
    opacity: 0.8;
}

.tg-hero__support-btn:active {
    opacity: 0.6;
}

.tg-cab-head {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    padding: 9px 13px;
    background: rgba(0,0,0,0);
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
    transition: all 0.3s;

}

.tg-cab-head.--fixed {
    background: rgba(4, 11, 21, 0.7);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

}

.tg-cab-head__row {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 11;
}

.tg-cab-head__user {
    background: #151C26;
    border-radius: 10px;
    padding: 11px 9px;
    margin-right: 3px;
    display: flex;
    align-items: center;
}

.tg-cab-head__user-name {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    margin-right: 10px;
    min-width: 50px;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tg-cab-head__user-bal {
    font-size: 12px;
    color: #d9d9d9;
    padding-left: 10px;
    position: relative;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.tg-cab-head__user-bal::before {
    content: '';
    display: block;
    position: absolute;
    width: 2px;
    height: 14px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #999DAF;
}

.tg-cab-head__user-bal-val {
    display: inline-block;
    max-width: 75px;

    overflow: hidden;
    text-overflow: ellipsis;
}

.tg-cab-head__user-bal-curr {
    display: inline-block;
    color: #1852d2;
    margin-left: 0.2em;
}

.tg-cab-head__languages {
    margin-left: auto;
}

.tg-cab-head .h-head__lang {
    position: relative;
}


.tg-cab-head .h-head__lang-btn {
    padding: 0;
    background: transparent;
    border: none;
    display: block;
    padding-right: 25px;
    transition: opacity 0.3s;
}

.tg-cab-head .h-head__lang-btn:hover {
    opacity: 0.8;
}

.tg-cab-head .h-head__lang-btn:active {
    opacity: 0.6;
}

.tg-cab-head .h-head__lang-btn::before {
    content: '';
    display: block;
    position: absolute;
    width: 14px;
    height: 9px;
    background: url("../img/icon-lang-arrow.svg") no-repeat center / contain;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tg-cab-head .h-head__lang img {
    width: 21px;
    display: block;
}

.tg-cab-head .h-head__lang-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tg-cab-head .h-head__lang.active .h-head__lang-dropdown {
    opacity: 1;
    pointer-events: all;
}

.tg-cab-head .h-head__lang-dropdown img {
    width: 21px;
}

.tg-cab-head .h-head__lang-dropdown a {
    transition: opacity 0.3s;
}

.tg-cab-head .h-head__lang-dropdown a:hover {
    opacity: 0.8;
}

.tg-cab-head .h-head__lang-dropdown a:active {
    opacity: 0.6;
}

.tg-cab-head__settings-btn {
    position: relative;
    flex-basis: 24px;
    margin-left: 19px;
    width: 24px;
    height: 24px;
    display: block;
    border: none;
    background: transparent;
    transition: opacity 0.3s;
}

.tg-cab-head__settings-btn:hover {
    opacity: 0.8;
}

.tg-cab-head__settings-btn:active {
    opacity: 0.6;
}

.tg-cab-head__settings-btn .icon-settings,
.tg-cab-head__settings-btn .icon-close {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 0.3s;
}

.tg-cab-head__settings-btn .icon-settings {
    background: url("../img/icon-settings.svg") no-repeat center / contain;
}

.tg-cab-head__settings-btn .icon-close {
    background: url("../img/icon-close.svg") no-repeat center / contain;
    opacity: 0;
}

.tg-cab-head__settings-btn.active .icon-settings {
    opacity: 0;
}

.tg-cab-head__settings-btn.active .icon-close {
    opacity: 1;
}

body.tg-app .page-layout {
    padding-left: 13px;
    padding-right: 13px;
}

body.tg-app .page-layout__body {
    padding: 0;
}

body.tg-app .page-layout {
    padding-bottom: 94px;
}

body.tg-app .admin-link {
    display: none;
}


.tg-submenu {
    display: flex;
    margin-left: -1px;
    margin-right: -1px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.tg-submenu__link {
    background: #1B2949;
    color: #ffffff;
    transition: all 0.3s;
    padding: 11px 20px;
    border-radius: 10px;
    width: calc(50% - 2px);
    margin-left: 1px;
    margin-right: 1px;
    margin-bottom: 2px;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tg-submenu__link:hover {
    opacity: 0.8;
}

.tg-submenu__link:active {
    opacity: 0.6;
}

.tg-submenu__link.active {
    background: #3D4958;
    pointer-events: none;
}

.tg-cab-head__dropdown-menu {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 0 0 30px 30px;
    background: #374351;
    padding: 70px 15px 38px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 10;
}

.tg-cab-head__dropdown-menu.active {
    opacity: 1;
    pointer-events: all;
}

.tg-cab-head__dropdown-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tg-cab-head__dropdown-menu li.mt {
    margin-top: 24px;
}

.tg-cab-head__dropdown-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.tg-cab-head__dropdown-menu a .icon {
    margin-right: 12px;
    width: 24px;
}

.tg-cab-head__dropdown-menu a .icon svg {
    width: 100%;
    fill: #F4F4F4;
    transition: fill 0.3s
}

.tg-cab-head__dropdown-menu a:hover {
    color: #7ba3ff;
}
.tg-cab-head__dropdown-menu a:hover svg {
    fill: #7ba3ff;
}
.tg-cab-head__dropdown-menu a:active {
    opacity: 0.8;
}

.tg-cab-head__dropdown-menu a.disabled {
    pointer-events: none;
    opacity: 0.3;
}

.tg-cab-head__dropdown-menu a.active {
    color: #1a52d3;
    font-weight: 700;
}

.tg-cab-head__dropdown-menu a.active svg {
    fill: #1a52d3;
}

* {
    -webkit-tap-highlight-color: transparent;
}


body.tg-app .page-layout__body {
    padding-top: 63px;
}

div[data-uloginbutton]:last-child {
    margin-right: 0 !important;
}
.ulogin-buttons-container {
    width: auto !important;
}


@media screen and (max-width: 780px) {
    .h-head__lang-dropdown {
        padding: 10px;
        border-radius: 8px;
        background: #192134;
        left: -10px !important;
    }
    .h-head__lang-dropdown-item {
        margin-bottom: 12px !important;
    }
    .h-head__lang-dropdown-item:last-child {
        margin-bottom: 0 !important;
    }
}

body.tg-app .page-layout {
    min-height: 100vh;
}
body.tg-app .page-layout__body {
    min-height: unset;
    margin-right: auto;
    margin-left: auto;
}

.faq__row {
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 780px) {
    .faq__row {
        flex-direction: column;
    }
}

.faq__left {
    position: relative;
    flex: 0 0 357px;
    margin-right: 32px;
    border-radius: 10px;
    background-color: rgba(61, 73, 88, 0.26);
}

@media screen and (max-width: 960px) {
    .faq__left {
        flex-basis: 280px;
    }
}

@media screen and (max-width: 780px) {
    .faq__left {
        flex: unset;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.faq__left .indicator {
    position: absolute;
    left: 0;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 3px 75px 0 rgba(255, 255, 255, 0.1);
    background-color: #1a52d3;
    transition: top 0.3s, height 0.3s;
}

.faq__right {
    flex: 1 1 auto;
    max-width: 745px;
}

.faq__tab-btn {
    position: relative;
    z-index: 3;
    display: block;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    background: transparent;
    border: none;
    transition: all 0.3s;
    padding: 29px 20px;
}

.faq__tab-btn.active {
    pointer-events: none;
    color: #ffffff !important;
}

.faq__tab-btn.active:hover {
    color: #ffffff !important;
}

.faq__tab-btn:hover {
    color: #1a52d3;
}

.faq__tab-btn:active {
    opacity: 0.8;
}

.faq__tab-btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 10px;
    box-shadow: 0px 3px 75px 0 rgba(255, 255, 255, 0.1);
    background-color: #1a52d3;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
    z-index: 1;
}

.faq__tab-btn span {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.faq__tab-btn:focus {
    outline: none;
}

.faq__tab {
    display: none;
}

.faq__tab.active {
    display: block;
}

.faq-item {
    border-radius: 10px;
    background-color: rgba(61, 73, 88, 0.25);
    margin-bottom: 15px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item__head {
    position: relative;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.32;
    text-align: left;
    color: #fff;
    background: transparent;
    border: none;
    display: block;
    width: 100%;
    padding: 21px 50px 21px 29px;
    border-radius: 10px;
    transition: all 0.3s;
}

@media screen and (max-width: 560px) {
    .faq-item__head {
        font-size: 14px;
        padding: 20px 50px 20px 20px;
    }
}

.faq-item__head:hover {
    color: #7b9eff;
}

.faq-item__head:active {
    color: #5680ff;
}

.faq-item__head:focus {
    outline: none;
}

.faq-item__head::after {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 8px;
    background: url("../img/icon-faq-arrow.svg") no-repeat center/contain;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.faq-item__content {
    padding: 40px 50px 37px 30px;
    display: none;
}

@media screen and (max-width: 560px) {
    .faq-item__content {
        padding: 20px 50px 20px 20px;
    }
}

.faq-item__content p {
    margin: 0;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.47;
    text-align: left;
    color: #fff;
}

@media screen and (max-width: 560px) {
    .faq-item__content p {
        font-size: 14px;
    }
}

.faq-item__content p a {
    text-decoration: underline;
    color: #ffffff;
    transition: all 0.3s;
}

.faq-item__content p a:hover {
    opacity: 0.8;
}

.faq-item__content p a:active {
    opacity: 0.6;
}

.faq-item.active .faq-item__head {
    background-color: rgba(61, 73, 88, 0.25);
}

.faq-item.active .faq-item__head::after {
    transform: rotate(-180deg) translateY(50%);
}

.news-widget {
    height: 700px;
}