﻿body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #F4F4F4;
    font-family: var(--main-font);
    overflow-x: hidden;
}

.btn-primary {
    height: 60px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    background: #F7CC35;
    background: linear-gradient(90deg,rgba(247, 204, 53, 1) 0%, rgba(0, 135, 81, 1) 100%);
    line-height: 60px;
    font-size: var(--standart-font-size);
    font-style: normal;
    font-weight: 700;
    color: var(--color-white) !important;
    padding: 0 46px;
    text-align: center;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(90deg,rgba(247, 204, 53, 1) 0%, rgba(0, 135, 81, 1) 100%);
    border: none;
    opacity: 0.8;
}

.btn-default {
    height: var(--button-standart-height);
    border: 1px solid var(--color-secondary-link);
    border-radius: var(--secondary-border-radius);
    -webkit-border-radius: var(--secondary-border-radius);
    -moz-border-radius: var(--secondary-border-radius);
    padding: 14px 24px;
    font-size: var(--standart-font-size);
    line-height: var(--standart-font-size);
    color: var(--color-secondary-link);
    text-decoration: none;
    font-weight: var(--font-middle-bold);
}

.btn-close {
    height: var(--button-standart-height);
    padding: 11px 51px;
    border: 1px solid rgba(17, 24, 28, 0.10);
    border-radius: var(--secondary-border-radius);
    -moz-border-radius: var(--secondary-border-radius);
    -webkit-border-radius: var(--secondary-border-radius);
    color: var(--color-secondary-link);
    font-weight: var(--font-middle-bold);
    font-size: var(--standart-font-size);
}

.btn-close:hover {
    border-color: var(--color-secondary-link);
    background: transparent;
    color: var(--color-secondary-link);
}

.btn-small, .btn-link {
    background-color: rgba(0, 135, 81, 0.2);
    border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    color: var(--color-secondary-link);
    font-size: var(--button-font-size);
    padding: 3px 10px;
    border: 1px solid var(--color-small-button);
    font-weight: var(--font-standart-bold);
}

.btn-small:hover,
.btn-link:hover
{
    border-color: var(--color-secondary-link);
    background: transparent;
    color: var(--color-secondary-link);
    text-decoration: none;
}

.btn-default:hover {
    background-color: var(--color-secondary-link);
    color: var(--color-white)
}

.cnt-blk {
    width: 95%;
    min-width: var(--main-content-min-width);
    max-width: var(--main-content-max-width);
    margin: 0 auto;
    padding: 0px 15px;
}

.cnt-blk.user-cabinet-cnt {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px 15px;
}

.page-title {
    font-size: var(--page-title-font-size);
    color: var(--color-primary-title);
    margin: 0 0 5px 0;
    font-weight: var(--font-middle-bold);
    line-height: var(--page-title-line-height);
}

header {
    padding: 24px 0 24px 0;
    background-color: #ffffff;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
    margin-bottom: 24px;
}

header .lg {
    display: block;
    width: 100%;
    min-height: var(--header-content-height);
    background-image: url(../images/logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 100%;
}

header nav.main-menu-blk {
    text-align: center;
    line-height: var(--header-content-height);
}

header nav.main-menu-blk ul {
    list-style: none;
    list-style-image: none;
    padding: 0;
    margin: 0;
}

header nav.main-menu-blk ul li {
    display: inline-block;
    white-space: nowrap;
    margin: var(--header-margin);
}

header nav.main-menu-blk ul li a {
    font-size: var(--standart-font-size);
    color: #000000;
    font-style: normal;
    font-weight: 400;
}

header nav.main-menu-blk ul li.active a {
    font-weight: var(--font-middle-bold);
    border-bottom: 1px solid var(--color-secondary-link);
}

header nav.main-menu-blk ul li a:hover,
header nav.main-menu-blk ul li a:focus {
    color: var(--color-secondary-link);
    text-decoration: none;
}

header .auth-blk {
    line-height: var(--header-content-height);
}

header .auth-blk a {
    margin: var(--header-margin);
    display: inline-block;
    white-space: nowrap;
    font-weight: var(--font-middle-bold);
    color: var(--color-secondary-link);
    font-size: var(--standart-font-size);
}

header .auth-blk a.auth-link:hover {
    text-decoration: none;
    color: var(--color-primary-link);
}

header .auth-blk .btn-primary {
    height: 45px !important;
    line-height: 45px;
}

header .language-blk {
    display: block;
    position: relative;
    line-height: var(--header-content-height)
}

header .language-blk .current-lang-blk {
    background-color: var(--color-white);
    color: var(--color-secondary-link);
    font-weight: var(--font-middle-bold);
    font-size: var(--standart-font-size);
    padding: 4px 34px 4px 8px;
    border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
    background-image: url(../images/arrow-down-gray.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    cursor: pointer;
    text-decoration: none;
}

header .language-blk .list-lang-blk {
    display: none;
    background-color: var(--color-white);
    line-height: var(--standart-font-size);
    border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
    padding: 5px 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

header .language-blk .list-lang-blk span,
header .language-blk .list-lang-blk a {
    display: block;
    padding: 5px 8px;
    font-weight: var(--font-middle-bold);
    font-size: var(--standart-font-size);
}

header .language-blk .list-lang-blk span {
    color: var(--color-gray);
    font-weight: var(--font-middle-bold);
}

header .language-blk .list-lang-blk a {
    color: var(--color-secondary-link);
    font-size: var(--standart-font-size);
}

header .language-blk .list-lang-blk a:hover {
    color: var(--color-primary-link);
    text-decoration: none;
}

header .timer-label {
    font-size: var(--small-font-size);
    color: var(--color-gray);
    display: block;
    padding-left: 5px;
}

header .timer {
    white-space: nowrap;
}

header .timer .digit {
    display: inline-block;
    background-color: var(--color-white);
    border-right: 1px solid var(--color-separator-white);
    padding: 5px 10px;
}

header .timer .digit span {
    display: block;
}

header .timer .digit:last-child {
    border: none;
    border-top-right-radius: var(--main-border-radius);
    border-bottom-right-radius: var(--main-border-radius);
}

header .timer .digit:first-child {
    border-top-left-radius: var(--main-border-radius);
    border-bottom-left-radius: var(--main-border-radius);
}

header .timer .digit .char {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--color-primary-title);
    line-height: var(--small-font-size);
}

header .timer .digit .caption {
    font-size: var(--micro-font-size);
    line-height: var(--small-font-size);
    color: var(--color-primary-link);
}

.about-blk {
    position: relative;
}

.about-blk h2 {
    font-size: 50px;
    color: #000000;
    font-weight: var(--font-semi-bold);
    margin: 0 0 26px 0;
}

.about-blk h2 span {
    color: #008751;
}

.about-blk .slider-blk .slide {
    min-height: 902px;
    background-position: 50% 0px;
    background-size: cover;
    border-bottom-left-radius: 250px;
    border-bottom-right-radius: 250px;
}

.about-blk .slider-blk .slide .cnt-blk {
    position: relative;
    min-height: 902px;
    padding: 100px 0 224px 0;
}

.about-blk .slider-blk .slide .text-blk {
    color: #000000;
    font-size: var(--standart-font-size);
    line-height: var(--main-content-line-height);
    display: block;
    width: 100%;
    margin: 0 0 26px 0;
}

.about-blk .slider-blk .next-way a {
    display: block;
    width: var(--slider-control-wh);
    height: var(--slider-control-wh);
    background-image: url(../images/arrow-blue-right.svg);
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    border: 1px solid var(--color-secondary-link);
    border-radius: var(--slider-controls-border-radius);
    -webkit-border-radius: var(--slider-controls-border-radius);
    -moz-border-radius: var(--slider-controls-border-radius);
    text-indent: var(--indent-minus);
    text-align: left;
    position: absolute;
    right: 0;
    bottom: 224px;
    z-index: 1000;
}

.about-blk .slider-blk .prev-way a {
    display: block;
    width: var(--slider-control-wh);
    height: var(--slider-control-wh);
    background-image: url(../images/arrow-blue-left.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: 1px solid var(--color-secondary-link);
    border-radius: var(--slider-controls-border-radius);
    -webkit-border-radius: var(--slider-controls-border-radius);
    -moz-border-radius: var(--slider-controls-border-radius);
    text-indent: var(--indent-minus);
    text-align: left;
    position: absolute;
    right: 80px;
    bottom: 224px;
    z-index: 1000;
}

.about-blk .slider-blk .prev-way a:hover,
.about-blk .slider-blk .next-way a:hover
{
    background-color:  rgba(0, 135, 81, 0.2);
    border-color: rgba(0, 135, 81, 0)
}


.about-blk .scroll-down {
    display: block;
    width: var(--rounded-icons-wh);
    height: var(--rounded-icons-wh);
    background-image: url(../images/scroll-down-icon.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    position: absolute;
    bottom: 224px;
    left: 50%;
    margin: 0 0 0 var(--absolute-margin-rounded);
    z-index: 1000;
}

.about-blk .scroll-down:hover {
    opacity: 0.8;
}

.about-blk .btn-primary {
    height: 44px;
    line-height: 44px;
    padding-left: 24px;
    padding-right: 24px;
}

.about-blk .btn-primary:hover {
    opacity: 0.8;
}

.statistic-blk {
    display: block;
    margin: -150px 0 130px 0;
    position: relative;
    z-index: 1000;
}

.statistic-blk .list-statistic-blk {
    display: block;
    background-color: var(--color-white);
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    padding: 37px 67px 37px 92px;
    border: 1px solid #C4C4C4;
}

.statistic-blk .list-statistic-blk .col-sm-4 {
    text-align: center;
}

.statistic-blk .list-statistic-blk .e {
    position: relative;
    display: inline-block;
    width: 80%;
    text-align: left;
    border-right: 2px solid var(--color-separator-white);
    padding: 30px 0 30px 96px;
}

.statistic-blk .list-statistic-blk .e3 {
    border: none;
}

.statistic-blk .list-statistic-blk .e .char {
    color: var(--color-primary-title);
    font-weight: var(--font-semi-bold);
    font-size: var(--statistic-font-size);
    line-height: var(--main-content-line-height);
}

.statistic-blk .list-statistic-blk .e .caption {
    color: #4F5665;
    font-size: var(--statistic-label-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
}

.statistic-blk .list-statistic-blk .e::before {
    content: "";
    display: block;
    background-color: var(--color-icons-background);
    width: var(--rounded-icons-wh);
    height: var(--rounded-icons-wh);
    border-radius: var(--rounded-icons-wh);
    -webkit-border-radius: var(--rounded-icons-wh);
    -moz-border-radius: var(--rounded-icons-wh);
    position: absolute;
    left: 0;
    top: 50%;
    margin: var(--absolute-margin-rounded) 0 0 0;
    background-position: var(--middle-position-img);
    background-repeat: no-repeat;
}

.statistic-blk .list-statistic-blk .e1::before {
    background-image: url(../images/icon-requests.svg);
}

.statistic-blk .list-statistic-blk .e2::before {
    background-image: url(../images/icon-city.svg);
}

.statistic-blk .list-statistic-blk .e3::before {
    background-image: url(../images/icon-members.svg);
}

.bg-star-1 {
    background-image: url(../images/star-bg-1.svg);
    background-repeat: no-repeat;
    background-position: 100% 0;
}

.mission-blk {
    padding: 0 0 77px 0;
    position: relative;
}

.mission-blk .img img {
    border-radius: 42px;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.mission-blk .text-blk {
    color: #4F5665;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.mission-blk .btn-small {
    background-image: url(../images/icon-link.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    padding-right: 28px;
}

.bg-2 {
    background: linear-gradient(180deg, #F8F8F8 -45.04%, rgba(248, 248, 248, 0.00) 88.56%);
}

.bg-star-2 {
    background-image: url(../images/star-bg-2.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
}

.benefits-blk {
    display: block;
    padding: 83px 0 125px 0;
    position: relative;
}

.benefits-blk .page-title {
    margin: 0 0 48px 0;
    text-align: center;
}

.benefits-blk .e {
    display: block;
    background-color: var(--color-white);
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    margin: 0 0 30px 0;
    border: 1px solid #C4C4C4;
}

.benefits-blk .e img {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
}

.benefits-blk .e .in-blk {
    padding: var(--benefits-padding);
    min-height: var(--benefits-min-height);
    position: relative;
}

.benefits-blk .e .in-blk .btn-small {
    position: absolute;
    bottom: 36px;
}
.benefits-blk .e .title-blk {
    font-size: var(--statistic-font-size);
    color: var(--color-primary-title);
    font-weight: var(--font-semi-bold);
    line-height: var(--main-content-line-height);
    margin-bottom: 24px;
}

.benefits-blk .e .text-blk {
    font-size: 16px;
    color: #4F5665;
    line-height: 30px;
    font-weight: 400;
}

.modal-popup-benefit  {
    display: none;
    position: fixed;
    z-index: 100;
    background-color: var(--color-white);
    border: 2px solid rgba(17, 24, 28, 0.10);
    top: 50%;
    width: 960px;
    left: 50%;
    margin: 0 0 0 -480px;
    border-radius: var(--main-border-radius);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary-link) var(--color-white);
}

.modal-popup-benefit .modal-in-blk {
    padding: 81px 131px;
    position: relative;
}

.modal-popup-benefit .title-blk {
    font-size: var(--statistic-font-size);
    color: var(--color-primary-title);
    font-weight: var(--font-semi-bold);
    line-height: var(--main-content-line-height);
    margin: 0 0 24px 0;
}

.modal-popup-benefit .text-blk {
    color: var(--color-primary-link);
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
    margin: 0 0 24px 0;
}

.modal-popup-benefit .close-popup-link {
    position: absolute;
    width: 21px;
    height: 21px;
    background-image: url(../images/icon-close.svg);
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    background-size: contain;
    top: 24px;
    right: 24px;
}

.modal-popup-benefit .close-popup-link:hover {
    opacity: 0.8;
}

.overlay {
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: 0.8;
    display: none;
}

.modal-popup-benefit::-webkit-scrollbar {
    width: 4px;
}

.modal-popup-benefit::-webkit-scrollbar-track {
    background-color: transparent;       /* цвет дорожки */
}
.modal-popup-benefit::-webkit-scrollbar-thumb {
    background-color: var(--color-icons-background);
    border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
}

.star-icon-abs-1 {
    filter: blur(20px);
    width: 205px;
    height: 223px;
    background-image: url(../images/star-bg-blur-1.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -111.5px;
    left: -50px;
    display: block;
}

.path-blk {
    position: relative;
    display: block;
}

.path-blk .e {
    display: block;
    position: relative;
    background-color: var(--color-white);
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    border: 1px solid #C4C4C4;
    padding: 32px 234px 32px 32px;
    margin: 0 0 36px 0;
    min-height: var(--path-icon-wh);
    min-height: 257px;
    box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -webkit-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -moz-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    color: #4F5665;
}

.path-blk .e .img {
    position: absolute;
    width: var(--path-icon-wh);
    height: var(--path-icon-wh);
    right: 32px;
    top: 50%;
    margin: -85px 0 0 0;
    background-repeat: no-repeat;
    background-size: contain;
}

.path-blk .e .title-blk,
.path-blk .fixed-blk .title-blk
 {
    font-size: var(--block-title-font-size);
    font-weight: var(--font-middle-bold);
    color: var(--color-primary-title);
    margin: 0 0 16px 0;
}

.path-blk .e .text-blk,
.path-blk .fixed-blk .text-blk {
    color: #4F5665;
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
}

.path-blk .fixed-blk {
    display: block;
    background-color: var(--color-white);
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    border: 1px solid #C4C4C4;
    position: sticky;
    z-index: 3;
    top: 15px;
}

.path-blk .fixed-blk .text-blk {
    margin-top: 15px;
}

.path-blk .fixed-blk .text-blk strong {
    display: block;
    background-position: 0px 50%;
    background-repeat: no-repeat;
    min-height: 24px;
    font-weight: 700;
    padding-left: 30px;
}

.path-blk .fixed-blk .text-blk strong.silver {
    background-image: url(../images/icon-silver-medal-small.svg);
}

.path-blk .fixed-blk .text-blk strong.gold {
    color: #F7CC35;
    background-image: url(../images/icon-gold-medal-small.svg);
}

.path-blk .star-icon-abs-2 {
    filter: blur(20px);
    width: 243px;
    height: 265px;
    background-image: url(../images/star-bg-blur-2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -36px;
    right: 10%;
    display: block;
}

.path-blk .list-path-blk {
    padding: 265px 0 0 0;
}

.path-blk .e.path-read .img {
    background-image: url(../images/icon-read-nation.svg);
}

.path-blk .e.path-sport .img {
    background-image: url(../images/icon-sport.svg);
}

.path-blk .e.path-voluntee .img {
    background-image: url(../images/icon-voluntee.svg);
}

.path-blk .e.path-ecology .img {
    background-image: url(../images/icon-ecology.svg);
}

.path-blk .e.path-self-determination .img {
    background-image: url(../images/icon-self-determination.svg);
}

.path-blk .e.path-meta-skills .img {
    background-image: url(../images/icon-meta-skills.svg);
}

.path-blk .e.path-national-legacy .img {
    background-image: url(../images/icon-national-legacy.svg);
}

.path-blk .e::before {
    content: "";
    width: 8px;
    height: 100%;
    background-color: var(--color-white);
    border-radius: var(--small-border-radius);
    -moz-border-radius: var(--small-border-radius);
    -webkit-border-radius: var(--small-border-radius);
    display: block;
    left: -19px;
    position: absolute;
    top: -50%;
    z-index: 1;
}

.path-blk .e::after {
    content: "";
    width: 17px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: var(--small-border-radius);
    -moz-border-radius: var(--small-border-radius);
    -webkit-border-radius: var(--small-border-radius);
    display: block;
    position: absolute;
    left: -20px;
    top: calc(50% + 14px);
    z-index: 1;
}

.path-blk .e.path-sport::after {
    top: calc(50% + 8px);
}

.path-blk .e.path-voluntee::after {
    top: calc(50% + 24px);
}

.path-blk .fixed-blk .in-blk {
    position: relative;
    padding: 32px;
}

.path-blk .fixed-blk .in-blk::after {
    content: "";
    width: 36px;
    height: 39px;
    background-image: url(../images/icon-small-star.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: -35px;
    z-index: 2;
    top: 50%;
    margin: -45px 0 0 0;
}

.path-blk .e:last-child {
    margin: 0;
}

.blue-blk {
    display: block;
    background: #008751;
    background: linear-gradient(90deg, rgba(0, 135, 81, 1) 0%, rgba(0, 33, 20, 1) 100%);
    color: var(--color-white);
    border-radius: 42px;
    box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -webkit-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -moz-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
}

.blue-blk .title-blk {
    color: #ffffff;
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 500;
}

.blue-blk .text-blk {
    font-size: var(--standart-font-size);
    color: var(--color-white);
    font-weight: var(--font-standart-bold);
}

.blue-blk .btn-small {
    background-image: url(../images/icon-link.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    padding-right: 28px;
    background-color: #C3DED3;
}

.blue-blk .btn-small:hover,
.blue-blk .btn-primary:hover
 {
    border-color: var(--color-white);
    background-color: var(--color-white);
    color: var(--color-secondary-link)
}

.more-blk .blue-blk {
   padding: 80px 66px 80px 66px;
   position: relative;
}

.more-blk  {
    display: block;
    padding: 200px 0 105px 0;

}

.more-blk .cnt-blk {
    position: relative;
}

.star-icon-abs-3 {
    filter: blur(5px);
    width: 59px;
    height: 65px;
    background-image: url(../images/star-bg-blur-4.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -29.5px;
    left: 2%;
    display: block;
}

.star-icon-abs-4 {
    filter: blur(8px);
    width: 83px;
    height: 96px;
    background-image: url(../images/star-bg-blur-3.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 10px;
    right: 2%;
    display: block;
    z-index: 1;
}

.star-icon-abs-5 {
    filter: blur(8px);
    width: 55px;
    height: 64px;
    background-image: url(../images/star-bg-blur-2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 10px;
    left: 60%;
    display: block;
    z-index: 1;
}

.star-icon-abs-6 {
    filter: blur(15px);
    width: 168px;
    height: 183px;
    background-image: url(../images/star-bg-blur-3.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -60%;
    right: -60px;
    display: block;
    z-index: 0;
}

.star-icon-abs-7 {
    filter: blur(15px);
    width: 195px;
    height: 212px;
    background-image: url(../images/star-bg-blur-2.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -2%;
    left: -5px;
    display: block;
    z-index: 0;
}

.faq-blk {
    position: relative;
    display: block;
    padding: 0 0 47px 0;
}

.faq-blk h2.page-title {
    text-align: center;
    margin: 0 0 64px 0;
}

.faq-blk .list-faq-blk {
    background-color: var(--color-white);
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    margin: 0 0 43px 0;
    position: relative;
    box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -webkit-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -moz-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    border: 1px solid #C4C4C4;
}

.faq-blk .list-faq-blk .e {
    padding: 36px 65px 36px 65px;
    border-bottom: 1px solid var(--faq-separator-color);
}

.faq-blk .list-faq-blk .e:last-child {
    border: none;
}

.faq-blk .list-faq-blk .e .answer {
    color: #4F5665;
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
    display: none;
    margin: 10px 0 0 0;
}

.faq-blk .list-faq-blk .e .question {
    display: block;
    cursor: pointer;
    background-image: url(../images/icon-plus.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
}

.faq-blk .list-faq-blk .e .question.active {
    background-image: url(../images/icon-minus.svg);
}

.faq-blk .list-faq-blk .e .question .page-title {
    width: 90%;
    font-size: 24px;
    line-height: 32px;
}

.faq-blk .list-faq-blk .e .question.active .page-title {
    color: var(--color-secondary-link);
}

.faq-blk .categories-site-blk {
    background-color: var(--color-white);
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    margin: 0 0 15px 0;
    position: relative;
    box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -webkit-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -moz-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    border: 2px solid #E4E4E7;
    color: #A1A1AA;
    padding: 20px 15px;
    font-size: 16px;
    background-image: url(../images/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    cursor: pointer;
     z-index: 1000;
}

.faq-blk .categories-site-blk:hover {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-blk .categories-site-blk .list-categories {
    display: none;
    position: absolute;
    background-color: #ffffff;
    width: calc(100% + 4px);
    left: -2px;
    top: 40px;
    border: 2px solid #E4E4E7;
    border-top: none;
    padding-top: 16.5px;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
    overflow: hidden;
}

.faq-blk .categories-site-blk:hover .list-categories {
    display: block;
}

.faq-blk .categories-site-blk a {
    display: block;
    padding: 10px 30px;
    color: #0B132A;
    border-bottom: 1px solid var(--faq-separator-color);
}

.faq-blk .categories-site-blk a:last-child {
    border-bottom: none;
}

.faq-blk .categories-site-blk a:hover {
    background-color: var(--color-secondary-link);
    text-decoration: none;
    color: #ffffff;
}

.faq-blk .categories-site-blk a.active {
    background-color: #008751;
    color: #ffffff;
}

.share-blk {
    padding: 0 0 71px 0;
}

.share-blk .blue-blk {
    padding: 42px 47px;
}

.share-blk .blue-blk .title-blk {
    font-size: var(--page-title-font-size);
    font-weight: 500;
    line-height: var(--blue-block-line-height);
    margin: 0;
}

.share-blk .blue-blk .btn-primary {
    margin: 14px 0 0 0;
}

.share-blk .blue-blk .btn-primary::before {
    content: "";
    display: inline-block;
    background-image: url(../images/icon-share.svg);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin: 0 10px 0 0;
}

.share-blk .blue-blk .btn-primary:hover::before {
    background-image: url(../images/icon-share-blue.svg);
}

.contacts-blk {
    display: block;
}

.contacts-blk .list-contacts-blk {
    background-color: var(--color-white);
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    text-align: center;
    border: 1px solid #C4C4C4;
    padding: 62px;
    box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -webkit-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -moz-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    margin: 0 0 -30px 0;
    z-index: 1;
    position: relative;
}

.contacts-blk .list-contacts-blk .page-title {
    margin: 0 0 20px 0;
}

.contacts-blk .list-contacts-blk .text-blk {
    color: #4F5665;
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
    display: block;
    margin: 0 0 43px 0;
}

.contacts-blk .list-contacts-blk .e a,
footer .contacts-list-blk .e a,
.mobile-menu-blk .contacts-list-blk .e a
{
    color: var(--color-secondary-link);
    text-decoration: none;
    font-size: var(--block-title-font-size);
    font-weight: var(--font-middle-bold);
    line-height: var(--contacts-icons-wh);
}

.contacts-blk .list-contacts-blk .e a::before,
footer .contacts-list-blk .e a::before,
.mobile-menu-blk .contacts-list-blk .e a::before
 {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: var(--contacts-icons-wh);
    height: var(--contacts-icons-wh);
    background-color: var(--color-white);
    box-shadow: 0px 13px 18px rgba(17, 19, 35, 0.08);
    -webkit-box-shadow: 0px 13px 18px rgba(17, 19, 35, 0.08);
    -moz-box-shadow: 0px 13px 18px rgba(17, 19, 35, 0.08);
    border-radius: var(--contacts-icons-wh);
    -webkit-border-radius: var(--contacts-icons-wh);
    -moz-border-radius: var(--contacts-icons-wh);
    margin: 0 17px 0 0;
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    background-color: rgba(0, 135, 81, 0.2);
}

.contacts-blk .list-contacts-blk .e a:hover,
footer .contacts-list-blk .e a:hover,
.mobile-menu-blk .contacts-list-blk .e a:hover
 {
    color: var(--bg-btn-primary-color);
}

.contacts-blk .list-contacts-blk .e1 a::before,
footer .contacts-list-blk .e1 a::before,
.mobile-menu-blk .contacts-list-blk .e1 a::before
 {
    background-image: url(../images/icon-envelope.svg);
    background-position: 50% 65%;
}

.contacts-blk .list-contacts-blk .e2 a::before,
footer .contacts-list-blk .e2 a::before,
.mobile-menu-blk .contacts-list-blk .e2 a::before
 {
    background-image: url(../images/icon-phone.svg);
}

.contacts-blk .list-contacts-blk .e3 a::before,
footer .contacts-list-blk .e3 a::before
 {
    background-image: url(../images/icon-whatsapp.svg);
 }
 
.contacts-blk .list-contacts-blk .e4 a::before,
footer .contacts-list-blk .e4 a::before
 {
    background-image: url(../images/icon-discord.svg);
    background-size: 24px 24px;
}

footer .contacts-list-blk .e a::before {
    background-color: #ffffff;
}

footer .contacts-list-blk .e a {
   color: #ffffff; 
}

footer .contacts-list-blk .e a:hover {
    opacity: 0.8;
    color: #ffffff;
}

footer {
    background-color: rgba(0, 135, 81, 1);
    padding: 142px 0 83px 0;
    border-top-left-radius: 42px;
    border-top-right-radius: 42px;
}

footer .lg {
    width: 135px;
    height: 46px;
    background-image: url(../images/logo-white.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    display: block;
    margin: 0 0 24px 0;

}

footer .copy-blk {
    color: #ffffff;
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
    display: block;
    margin: 0 0 31px 0;
}

footer .links-license-blk ul,
footer nav ul,
.mobile-menu-blk .links-license-blk ul 
 {
    list-style-image: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .links-license-blk ul li,
.mobile-menu-blk .links-license-blk ul li
{
    margin: 0 0 10px 0;
}

footer .links-license-blk ul li a,
.mobile-menu-blk .links-license-blk ul li a
{
    color: #ffffff;
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
    text-decoration: none;
}

footer .links-license-blk ul li a::after,
.mobile-menu-blk .links-license-blk ul li a::after
{
    content: "";
    background-image: url(../images/icon-link.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: inline-block;
    width: 12px;
    height: 12px;
    vertical-align: middle;
    margin: 0 0 0 4px;
}

footer .links-license-blk ul li a:hover
{
    text-decoration: none;
    opacity: 0.8;
}

footer nav ul li {
    margin: 0 0 11px 0;
}

footer nav ul li a {
    color: #ffffff;
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
    text-decoration: none;
}

footer nav ul li a:hover
{
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
}

footer .contacts-list-blk .e {
    margin: 0 0 29px 0;
}

footer .social-links a {
    margin: 0 22px 0 0;
    box-shadow: 0px 13px 18px rgba(17, 19, 35, 0.08);
    -webkit-box-shadow: 0px 13px 18px rgba(17, 19, 35, 0.08);
    -moz-box-shadow: 0px 13px 18px rgba(17, 19, 35, 0.08);
}

footer .social-links a:hover {
    opacity: 0.8;
}

.breadcrumb {
    background: transparent;
    background-color: transparent;
    padding: 0;
    color: var(--color-primary-link);
}

.breadcrumb a {
    color: var(--color-primary-link);
}

.breadcrumb a:hover {
    text-decoration: none;
    color: var(--color-secondary-link);
}

.page-block .text-block {
    background-color: var(--color-white);
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    padding: 32px 36px;
    box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -webkit-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -moz-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    color: rgba(0,0,0,0.8);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 73px 0;
    border: 1px solid #C4C4C4;
}

.page-block h1.page-title {
    font-size: 29px;
    font-weight: 600;
    line-height: 36px;
    margin: 0 0 24px 0;
    color: #000000;
}

.follow-main-block {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1;
    top: -60px;
    right: 16px;
}

.follow-main-block .links-block {
    background-color: var(--color-white);
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    padding: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -webkit-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -moz-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
}

.follow-main-block .links-block::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 7.5px 0 7.5px;
    border-color: #ffffff transparent transparent transparent;
    right: 30%;
}


.follow-main-block .links-block button {
    display: inline-block;
    width: var(--share-button-wh);
    height: var(--share-button-wh);
    background: transparent;
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    background-size: contain;
    margin: 0 4%;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,opacity .15s ease-in-out, top .15s ease-in-out;  
    text-indent: -8000px;
    border: none;
    outline: 0;
}

.follow-main-block .links-block button:hover {
    opacity: 0.8;
    border: none;
    outline: 0;
}

.follow-main-block .links-block .fb {
    background-image: url(../images/icon-share-facebook.svg);
}

.follow-main-block .links-block .vk {
    background-image: url(../images/icon-share-vk.svg);
}

.follow-main-block .links-block .tm {
    background-image: url(../images/icon-share-telegram.svg);
}

.follow-main-block .links-block .wa {
    background-image: url(../images/icon-share-whatsapp.svg);
}

.follow-main-block .links-block .tw {
    background-image: url(../images/icon-share-twitter.svg);
}

.follow-main-block .links-block .od {
    background-image: url(../images/icon-share-odnoklassniki.svg);
}

.faq-page-block {
    margin: 66px 0 128px 0;
}

.news-page-blk .about-blk .slider-blk .slide {
    min-height: 100%;
}

.news-page-blk .about-blk {
    padding-bottom: 80px;
}

.news-page-blk .bx-wrapper .bx-pager,.news-page-blk .bx-wrapper .bx-controls-auto {
    bottom: -50px;
}

.news-page-blk .about-blk .slider-blk .next-way a,
.news-page-blk .about-blk .slider-blk .prev-way a {
    bottom: -50px;
}

.news-page-blk .about-blk .img img {
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
}

.news-page-blk .news-list-blk .e {
    background-color: var(--color-white);
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    height: 100%;
    display: block;
    margin: 0 0 30px 0;
    border: 1px solid #C4C4C4;
}

.news-page-blk .news-list-blk .e .image {
    display: block;
    min-height: 228px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: var(--middle-position-img);
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
}

.news-page-blk .news-list-blk .e .image.course-image {
    min-height: 170px;
}

.news-page-blk .news-list-blk .item {
    margin: 0 0 50px 0;
}

.news-page-blk .news-list-blk .e .in-blk {
    padding: 24px 34px;
}

.news-page-blk .news-list-blk .e .news-title {
    font-size: 29px;
    line-height: 36px;
    font-weight: 600;
    margin: 0 0 11px 0;
}

.news-page-blk .news-list-blk .e .desc-text,
.news-block-view .short-view-blk .anounce-text
{
    color: rgba(0,0,0,0.8);
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--page-line-height);
    display: block;
    margin: 0 0 16px 0;
}

.news-page-blk .news-list-blk .e .btn {
    margin: 0 0 16px 0;
    background-color: #C3DED3;
}

.news-page-blk .news-list-blk .e .date,
.news-block-view .short-view-blk .date
{
    color: var(--news-date-color);
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--page-line-height);
}

.news-block-view .short-view-blk,
.news-block-view .news-text
{
    background-color: var(--color-white);
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    display: block;
    margin: 0 0 50px 0;
    padding: 24px;
    border: 1px solid #C4C4C4;
}

.news-block-view .short-view-blk .image {
    display: block;
    min-height: 362px;
    width: 100%;
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
    background-size: cover;
    background-position: var(--middle-position-img);
    background-repeat: no-repeat;
}

.news-block-view .news-text {
    color: rgba(0,0,0,0.8);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 24px 24px;
}

.news-block-view .short-view-blk {
    margin: 37px 0 50px 0;
}

.user-cabinet-block.news-page-blk .news-list-blk .e .status-text {
    color: #1D5CAB;
    font-weight: 600;
    font-size: 14px;
}

.course-text .i {
    display: block;
    margin: 15px 0 15px 0;
    padding-left: 26px;
    background-repeat: no-repeat;
    background-position: 0px 50%;
    color: #000000;
    font-size: 14px;
}

.course-text .i1 {
    background-image: url(../images/direction_icon_course.svg);
}

.course-text .i2 {
    background-image: url(../images/company_icon_course.svg);
}

.course-text .i3 {
    background-image: url(../images/deadline_icon_course.svg);
}

.course-text .points {
    background-color: #FFBB3C;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    display: inline-block;
    padding: 5px 10px 5px 34px;
    font-size: 24px;
    color: #ffffff;
    background-image: url(../images/white_star_icon.svg);
    background-repeat: no-repeat;
    background-position: 5px 50%;
    background-size: 24px 24px;
    margin: 0 0 15px 0;
}

.news-page-blk .news-list-blk .e .points {
    font-size: 14px;
    background-size: 14px 14px;
    background-color: #FFBB3C;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    display: inline-block;
    padding: 7px 7px 7px 22px;
    color: #ffffff;
    background-image: url(../images/white_star_icon.svg);
    background-repeat: no-repeat;
    background-position: 4px 50%;
    line-height: 14px;
}

.page-contacts-blk.contacts-blk .list-contacts-blk {
    margin-bottom: 50px;
}

.list-view .pagination {
    display: block;
    text-align: center;
}

.list-view .pagination li {
    display: inline-block;
}

.list-view .pagination a,
.list-view .pagination span
{
    padding: 4px 8px;   
    border-radius: 12px;
    display: block;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #008751;
    border: 1px solid #C3DED3;
}

.list-view .pagination span {
    color: var(--news-date-color);
}

.list-view .pagination a:hover
{
    color: var(--color-secondary-link);
    text-decoration: none;
}

.list-view .pagination .active a
{
    background-color: #C3DED3;
    color: #008751;
}

.register-form {
    background-color: var(--color-white);
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    display: block;
    margin: 0 0 50px 0;
    padding: 16px 16px 16px 16px;
}

.register-form .text-blk {
    color: #4F5665;
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
    display: block;
    margin: 0 0 26px 0;
    width: 60%;
}

.register-form .text-blk .btn {
    margin: 36px 19px 0 0;
}

.register-form .text-blk .btn-small {
    background-image: url(../images/icon-link.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    padding-right: 28px;
}

.register-form .page-title {
    margin: 0 0 22px 0;
}

.register-form .sub-title {
    font-size: var(--statistic-font-size);
    line-height: var(--main-content-line-height);
    font-weight: var(--font-semi-bold);
    color: var(--color-primary-title);
}

.register-form .form-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    color: var(--color-primary-title);
    margin: 16px 0 16px 0;
}

.register-form .medal-blk {
    display: block;
    min-height: 90px;
    background-position: 0px 50%;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 20px 0 0 80px;
}

.register-form .medal-blk .medal-title {
     font-size: var(--block-title-font-size);
}

.register-form .form-control,
.form-blk .form-control
{
    min-height: 64px;
    font-size: var(--standart-font-size);
    color: var(--form-control-color);
    border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
    border: 2px solid var(--semantic-light-layout-content-3);
    background: var(--semantic-light-layout-content-2);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding-left: 14px;
    padding-right: 14px;
}

.register-form .form-control:focus {
    border-color: var(--color-secondary-link);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
}

.register-form .form-group {
    margin: 0 0 16px 0;
}

.register-form .birth-date .form-control {
    padding-right: 52px;
    background-image: url(../images/icon-calendar.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
}

.register-form .custom-label {
    font-size: 18px;
    color: #0B132A;
    font-weight: 500;
    line-height: 24px;
}

.custom-button-group {
    white-space: nowrap;
}

.custom-button-group a {
    display: inline-block;
    padding: 8px;
    background-color: var(--semantic-light-layout-content-2);
    font-size: var(--button-font-size);
    font-weight: 500;
    color: var(--color-black);
    min-width: 80px;
    text-align: center;
    cursor: pointer;
}

.custom-button-group a:first-child {
    border-top-left-radius: var(--small-border-radius);
    border-bottom-left-radius: var(--small-border-radius);
}

.custom-button-group a:last-child {
    border-top-right-radius: var(--small-border-radius);
    border-bottom-right-radius: var(--small-border-radius);
}

.custom-button-group a:hover {
    color: var(--color-secondary-link);
    text-decoration: none;
}

.custom-button-group a.active {
    background-color: #C3DED3;
    color: #008751;;
}

.register-form .help-block {
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
}

.table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td {
    font-family: var(--main-font);
    font-size: var(--standart-font-size);
}

.custom-input-file input {
   opacity: 0;
   position: absolute;
   z-index: -1;
}

.custom-input-file label {
    border: 1px solid #C3DED3;
    background-color: #C3DED3;
    border-radius: var(--secondary-border-radius);
    -webkit-border-radius: var(--secondary-border-radius);
    -moz-border-radius: var(--secondary-border-radius);
    padding: 6px 42px;
    font-size: 14px;
    line-height: var(--standart-font-size);
    color: var(--color-secondary-link);
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
}

.custom-input-file label:hover {
    color: var(--color-white);
    background-color: var(--color-secondary-link);
}

.register-form .custom-multiple-checkbox {
    display: block;
}

.custom-multiple-checkbox .tags-list {
    display: none;
}

.custom-multiple-checkbox .tags-list a {
    margin: 0px 16px 16px 0;
    line-height: 19px;
    padding: 2px 10px;
}

.custom-multiple-checkbox .tags-list a.active {
    color: var(--color-white);
    background-color: var(--color-secondary-link);
    border-color: var(--color-secondary-link);
    box-shadow: 0px 10px 15px -3px rgba(0, 112, 243, 0.40);
    -webkit-box-shadow: 0px 10px 15px -3px rgba(0, 112, 243, 0.40);
    -moz-box-shadow: 0px 10px 15px -3px rgba(0, 112, 243, 0.40);
    line-height: 25px;
    padding: 0px 10px 0px 2px;
}

.custom-multiple-checkbox .tags-list a.active:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 19px;
    height: 19px;
    background-image: url(../images/icon-check-white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 2px 0 0;
}

.custom-multiple-checkbox .checkbox-custom-show {
    display: block;
    padding: 0 68px 0 0;
    position: relative;
    font-size: var(--block-title-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
    color: #11181C;
    cursor: pointer;
    margin: 0 0 16px 0;
}

.custom-multiple-checkbox .checkbox-custom-show::before {
    content: "";
    display: block;
    width: 48px;
    height: 28px;
    background-color: var(--semantic-light-layout-content-3);
    border-radius: var(--news-border-radius);
    -webkit-border-radius: var(--news-border-radius);
    -moz-border-radius: var(--news-border-radius);
    position: absolute;
    right: 0;
    top: 0;
}

.custom-multiple-checkbox .checkbox-custom-show::after {
    content: "";
    background-color: var(--color-white);
    width: 20px;
    height: 20px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    display: block;
    position: absolute;
    right: 24px;
    top: 4px;
    border-radius: var(--main-border-radius);
}

.custom-multiple-checkbox .checkbox-custom-show.active::after {
    right: 4px;
}

.custom-multiple-checkbox .checkbox-custom-show.active::before {
    background-color: var(--color-secondary-link);
}

.custom-multiple-checkbox .checkbox-custom-show a {
    color: var(--color-secondary-link);
    text-decoration: underline;
}

.custom-multiple-checkbox .checkbox-custom-show a:hover {
    text-decoration: none;
}

.register-form .form-hint {
    color: #4F5665;
    font-size: var(--small-font-size);
    line-height: var(--block-title-font-size);
}

.avatar-img {
    width: 67px;
    height: 67px;
    display: none;
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    position: relative;
    float: right;
}

.avatar-img .btn-clear {
    display: block;
    width: 24px;
    height: 24px;
    background: transparent;
    background-image: url(../images/icon-delete.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -12px;
    right: -12px;
    cursor: pointer;
    border: none;
    outline: 0;
    box-shadow: none;
}

.avatar-img .btn-clear:hover {
    opacity: 0.8;
}

.eventsReminderConteinier{ position:fixed; right:20px; top:20px; z-index:100; min-width:300px;text-align: right;max-width:350px;}
.eventsReminder{
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25);
    -webkit-border-radius: 8px; 
    border-radius: 8px; 
    margin:10px 0; 
    background:#fff; padding:20px 40px;  position:relative;  display:inline-block;
    max-width: 300px;    
    min-width: 240px;
    text-align: center;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,opacity .15s ease-in-out, top .15s ease-in-out;  
}
.eventsReminder .close:hover{ opacity:0.6}
.eventsReminder .discr .title{ color:#333333; line-height:20px; font-weight: 500;font-size:14px;text-align: center;margin: 0 0 20px 0;}
.eventsReminder .discr .info {
    padding: 10px;
    background-color: #f7f7f7;
    border-radius: 5px;
    margin-top: 10px;
    color: #666666;
    font-size: 14px;
    text-align: center;
    float: none;
}

.eventsReminder .discr .info .name {
    color: #333333;
    margin-bottom: 5px;
}

.eventsReminder .discr .btns {
    margin-top: 10px;
}

.eventsReminder .discr .btns a {
    color: var(--color-secondary-link);
    text-decoration: none;
    font-size: 16px;
}

/*.eventsReminder .close-notify.btn {
    background: var(--bg-btn-primary-color);
    border-color: var(--bg-btn-primary-color);
    outline: 0;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    padding: 10px 40px;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #FFFFFF;
    text-transform: uppercase;
}*/

.contacts-blk.success-register .btn-default {
    margin: 68px 0 0 0;
}

.custom-input-file .form-group {
    margin: 0 0 12px 0;
}

.custom-input-file .files-list,
.custom-input-file .files-list-part
{
    margin: 0 0 12px 0;
}

.custom-input-file .clear-achievments,
.custom-input-file .clear-part
{
    display: none;
}

.login-blk {
    border-radius: 10px;
    background: #FFF;
    display: block;
    width: 360px;
    padding: 24px;
    margin: 0 auto 60px auto;
}

.hidden {
    display: none;
}

.login-blk .btn-primary {
    width: 100%;
}

/*.login-blk .btn-link {
    border-radius: 50px;
    border: 1px solid rgba(17, 24, 28, 0.10);
    color: #1D5CAB;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 13px 15px;
}

.login-blk .btn-link:hover {
    text-decoration: none;
    background-color: #1D5CAB;
    color: #ffffff;
}*/

.login-blk .page-title {
    color: #0B132A;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

header .user-menu-block {
    display: inline-block;
    text-align: left;
    padding: 5px 120px 5px 55px;
    position: relative;
    background-color: #ffffff;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    z-index: 99;
    border: 1px solid #CCCCCC;
}

header .user-menu-block:hover {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid #CCCCCC;
    border-bottom: none;
}

header .user-menu-block .avatar-img,
header .user-menu-block .no-avatar-img {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 36px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-color: #C3DED3;
    text-align: center;
    font-size: 18px;
    color: #008751;
    font-weight: 700;
    line-height: 32px;
    position: absolute;
    left: 8px;
    top: 50%;
    margin: -18px 0 0 0;
    border: 1px solid rgba(17, 24, 28, 0.10);
}

header .user-menu-block .medal {
    color: #000000;
    font-size: 12px;
}

header .user-menu-block::after {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url(../images/arrow-down-gray.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: block;
    position: absolute;
    right: 9px;
    top: 50%;
    margin: -12px 0 0 0;
}

header .user-menu-block .rate {
    display: block;
    position: absolute;
    color: #ffffff;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    border-radius: 10px;
    background: #F7CC35;
    background: linear-gradient(90deg, rgba(247, 204, 53, 1) 0%, rgba(0, 135, 81, 1) 100%);
    padding: 2px 5px 2px 5px; 
    right: 45px;
    top: 50%;
    margin: -11px 0 0 0;
}

header .user-menu-block .rate::before {
    content: "";
    display: inline-block;
    background-image: url(../images/icon-rate-small.svg);
    background-repeat: no-repeat;
    background-position: 2px 50%;
    width: 11px;
    height: 12px;
    margin-right: 2px;
    vertical-align: middle;
}

header .user-menu-block:hover .user-menu-nav {
    display: block;
}

header .user-menu-block .user-menu-nav {
    display: none;
    position: absolute;
    top: 44px;
    background-color: #ffffff;
    width: calc(100% + 2px);
    left: 0;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    border: 1px solid #cccccc;
    border-top: none;
    z-index: 100;
    margin: 0 -1px;
}

header .user-menu-block .profile-home {
    color: #000000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

header .user-menu-block .profile-home:hover {
    text-decoration: none;
}

header .user-menu-block .user-menu-nav ul {
    list-style: none;
    list-style-image: none;
    padding: 0;
    margin: 0;
}

header .user-menu-block .user-menu-nav ul a {
    display: block;
    border-bottom: 1px solid #D4D4D8;
    padding: 12px 24px;
    color: #0B132A;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
}

header .user-menu-block .user-menu-nav ul li:last-child a {
    border-bottom: none;
}

header .user-menu-block .user-menu-nav ul a.logout {
    color: #E8505B;
}

header .user-menu-block .user-menu-nav ul a:hover {
    text-decoration: none;
    color: #008751;
}

.user-cabinet-block .profile-form-blk {
    padding: 24px;
    width: 60%;
    margin: 0 auto 60px auto;
}

.user-cabinet-block .profile-form-blk .form-title {
    margin-top: 0px;
    font-weight: 500;
}

.user-cabinet-block .profile-form-blk .form-group {
    margin-bottom: 15px;
}

.user-cabinet-block .profile-form-blk .youtube,
.user-cabinet-block .profile-form-blk .tiktok,
.user-cabinet-block .profile-form-blk .instagram
{
    padding-right: 68px;
    background-repeat: no-repeat;
    background-position: 98% 50%;
}

.user-cabinet-block .profile-form-blk .youtube {
    background-image: url(../images/icon-youtube-form.svg);
}

.user-cabinet-block .profile-form-blk .tiktok {
    background-image: url(../images/icon-tiktok-form.svg);
}

.user-cabinet-block .profile-form-blk .instagram {
    background-image: url(../images/icon-instagram-form.svg);
}

.user-cabinet-block .left-side {
    background-color: #ffffff;
    padding: 24px 14px;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

.user-cabinet-block .user-cabinet-menu {
    text-align: center;
}

.user-cabinet-block .user-cabinet-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-image: none;
}

.user-cabinet-block .user-cabinet-menu ul li {
    display: block;
    margin: 0 0 24px 0;
    position: relative;
}

.user-cabinet-block .user-cabinet-menu ul li a {
    display: block;
    text-align: center;
    color: #0B132A;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
}

.user-cabinet-block .user-cabinet-menu ul li a .img {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    border: 1px solid #ffffff;
    background-color: #F6F6F6;
    margin: 0 auto 8px auto;
    border-radius: 36px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    position: relative;
}

.user-cabinet-block .user-cabinet-menu ul li.active a {
    font-weight: 700;
    font-size: 16px;
    /*text-decoration: underline;*/
}

.user-cabinet-block .user-cabinet-menu ul li.active a .img {
    border-color: #008751;
    background-color: #C3DED3;
}

.user-cabinet-block .user-cabinet-menu ul li a:hover .img {
    opacity: 0.8;
}

.user-cabinet-block .user-cabinet-menu ul li.home a .img {
    background-image: url(../images/icon-user-home.svg);
}

.user-cabinet-block .user-cabinet-menu ul li.notify a .img {
    background-image: url(../images/icon-user-notifies.svg);
}

.user-cabinet-block .user-cabinet-menu ul li.course a .img {
    background-image: url(../images/icon-user-courses.svg);
}

.user-cabinet-block .user-cabinet-menu ul li.video a .img {
    background-image: url(../images/icon-youtube-user.svg);
    background-size: 16px 16px;
}

.user-cabinet-block .user-cabinet-menu ul li.plan a .img {
    background-image: url(../images/icon-user-plan.svg);
    background-size: 16px 16px;
}

.user-cabinet-block .user-cabinet-menu ul li.achievments a .img {
    background-image: url(../images/icon-user-achievments.svg);
    background-size: 16px 16px;
}

.user-cabinet-block .user-cabinet-menu ul li.chat a .img {
    background-image: url(../images/icon-user-chat.svg);
    background-size: 16px 16px;
}

.user-cabinet-block .user-cabinet-menu ul li.home.active a .img {
    background-image: url(../images/icon-user-home-green.svg);
}

.user-cabinet-block .user-cabinet-menu ul li.notify.active a .img {
    background-image: url(../images/icon-user-notifies-green.svg);
}

.user-cabinet-block .user-cabinet-menu ul li.course.active a .img {
    background-image: url(../images/icon-user-courses-green.svg);
}

.user-cabinet-block .user-cabinet-menu ul li.video.active a .img {
    background-image: url(../images/icon-youtube-user-green.svg);
    background-size: 16px 16px;
}

.user-cabinet-block .user-cabinet-menu ul li.plan.active a .img {
    background-image: url(../images/icon-user-plan-green.svg);
    background-size: 16px 16px;
}

.user-cabinet-block .user-cabinet-menu ul li.achievments.active a .img {
    background-image: url(../images/icon-user-achievments-green.svg);
    background-size: 16px 16px;
}

.user-cabinet-block .user-cabinet-menu ul li.chat.active a .img {
    background-image: url(../images/icon-user-chat-green.svg);
    background-size: 16px 16px;
}

.user-cabinet-block .user-cabinet-menu .count-notifies {
    display: block;
    color: #FFF;
    background-color: #E8505B ;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    position: absolute;
    width: 16px;
    height: 16px;
    overflow: hidden;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    top: 50%;
    right: -8px;
    margin-top: -8px;
    
}

.user-cabinet-block .center-side {
    padding: 0 24px 0 24px;
}

.user-cabinet-block .right-side {
    padding-right: 0;
}

.homepage-user {
    margin: 0 0 24px 0;
}

.user-cabinet-block .homepage-workarea-blk .page-title {
    color: #0B132A;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; 
    margin: 0 0 24px 0;
}

.user-cabinet-block .homepage-workarea-blk .info-blk {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border: 1px solid rgba(17, 24, 28, 0.10);
    background: #FFF;
    padding: 24px;
}

.user-cabinet-block .homepage-workarea-blk .info-blk .sub-title {
    color: #0B132A;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; 
}

.user-cabinet-block .homepage-workarea-blk .info-blk .text-blk {
    color: #4F5665;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    display: block;
    margin: 0 0 28px 0;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk {
    display: block;
    background-color: #ffffff;
    border-bottom-left-radius: 24px;
    border-top-left-radius: 24px;
    padding: 24px;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .page-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #0B132A;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .current-points {
    color: #4F5665;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .current-points span {
    display: inline-block;
    color: #ffffff;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    border-radius: 10px;
    background: #E6F1FE;
    padding: 2px 5px 2px 5px; 
    background: #F7CC35;
    background: linear-gradient(90deg, rgba(247, 204, 53, 1) 0%, rgba(0, 135, 81, 1) 100%);
    vertical-align: middle;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .current-points span::before {
    content: "";
    background-image: url(../images/icon-rate-small.svg);
    background-repeat: no-repeat;
    background-position: 2px 50%;
    width: 11px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk {
    display: block;
    margin: 21px 0 0 0;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .sub-title {
    color: #0B132A;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e {
    display: block;
    position: relative;
    padding: 0 0 0 48px;
    margin: 0 0 12px 0;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e .char {
    position: absolute;
    width: 48px;
    height: 60px;
    color: #0B132A;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 60px;
    left: 0;
    top: 0;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e .member-info {
    display: block;
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(17, 24, 28, 0.10);
    background: #FFF;
    padding: 18px 100px 18px 54px;
    color: #0B132A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    height: 60px;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e .member-info .rate {
    display: block;
    position: absolute;
    color: #ffffff;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    border-radius: 10px;
    background: rgba(247, 204, 53, 1);
    background: linear-gradient(90deg, rgba(247, 204, 53, 1) 0%, rgba(0, 135, 81, 1) 100%);
    padding: 2px 5px 2px 5px; 
    right: 8px;
    top: 50%;
    margin: -11px 0 0 0;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e .member-info .rate::before {
    content: "";
    background-image: url(../images/icon-rate-small.svg);
    background-repeat: no-repeat;
    background-position: 2px 50%;
    width: 11px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e .member-info .avatar-img,
.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e .member-info .no-avatar-img {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 36px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-color: #C3DED3;
    text-align: center;
    font-size: 18px;
    color: #008751;
    font-weight: 700;
    line-height: 32px;
    position: absolute;
    left: 9px;
    top: 50%;
    margin: -18px 0 0 0;
    border: 2px solid rgba(17, 24, 28, 0.10);
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e1 .member-info .avatar-img::before,
.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e1 .member-info .no-avatar-img::before {
    display: block;
    content: "👑";
    font-size: 12px;
    position: absolute;
    top: -23px;
    left: 9px;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e1 .member-info .avatar-img,
.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e1 .member-info .no-avatar-img {
    border-color: #F9A70D;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e2 .member-info .avatar-img,
.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e2 .member-info .no-avatar-img {
    border-color: #A1A1AA;
}

.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e3 .member-info .avatar-img,
.user-cabinet-block .homepage-workarea-blk .rating-blk .list-members-blk .e3 .member-info .no-avatar-img {
    border-color: #DD822D;
}

.user-cabinet-block.news-block-view,
.user-cabinet-block.news-page-blk
{
    margin: 0 0 60px 0;
}

.user-cabinet-block.news-block-view .short-view-blk {
    margin: 0 0 20px 0;
}

.user-cabinet-block.news-page-blk .page-title {
    font-size: 24px;
}

.user-cabinet-block.news-page-blk .news-list-blk .e .news-title {
    font-size: 18px;
    line-height: 24px;
}

.user-cabinet-block.news-page-blk .news-list-blk .e .desc-text
{
    font-size: 14px;
}

.user-cabinet-block.news-block-view .page-title,
.user-cabinet-block.faq-page-block .page-title
{
    font-size: 24px;
    line-height: 32px;
}

.user-cabinet-block.homepage-user .bx-wrapper .bx-pager {
    width: calc(100% - 120px);
    left: 70px;
}

.user-cabinet-block.homepage-user .news-page-blk .news-list-blk .e {
    box-shadow: none;
}

.user-cabinet-block.homepage-user .about-blk .slider-blk .prev-way a {
    left: 0;
    right: auto;
}

.user-cabinet-block.homepage-user .about-blk {
    padding-bottom: 100px;
    margin: 0;
}

.user-cabinet-block.faq-blk .list-faq-blk .e .question .page-title {
    font-size: 16px;
}

.user-cabinet-block.faq-blk .list-faq-blk .e {
    padding: 16px 24px;
}

.loader-data-block {
    background-color: rgba(244, 244, 245,0.8);
    position: fixed;
    z-index: 100;
    display: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/loader.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.user-modal-blk {
    width: 460px;
    position: fixed;
    left: 50%;
    margin: 0 0 0 -230px;
    border-radius: 10px;
    background: #FFF;
    display: none;
    padding: 36px;
    overflow-y: auto;
    top: 50%;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary-link) var(--color-white);
    z-index: 100;
}

.user-modal-blk.not-fixed {
    height: auto;
    bottom: auto;
    top: 5%;
}

.user-modal-blk::-webkit-scrollbar {
    width: 4px;
}

.user-modal-blk::-webkit-scrollbar-track {
    background-color: transparent;       /* цвет дорожки */
}
.user-modal-blk::-webkit-scrollbar-thumb {
    background-color: var(--color-icons-background);
    border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
}

.course-text-blk .page-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin: 0 0 12px 0;
}

.course-text-blk {
    color: #0B132A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.user-cabinet-block .search-blk .btn-reset {
    color: #4F5665;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 64px;
    height: 64px;
    padding: 0 20px;
}

.user-cabinet-block .search-blk .form-control {
    min-height: 44px;
}

.user-cabinet-block .search-blk .custom-button-group a {
    min-height: 44px;
    padding-top: 12px;
}

.user-cabinet-block .search-blk .btn-search {
    height: 44px;
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    background-color: #E6F1FE;
    border-color: #E6F1FE;
    line-height: 44px;
    font-size: var(--standart-font-size);
    font-style: normal;
    font-weight: 500;
    color: #1D5CAB;
    padding: 0 46px;
    text-align: center;
}

.user-cabinet-block .head-course-blk {
    background-color: #ffffff;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    padding: 24px;
    margin: 0 0 20px 0;
}

.user-cabinet-block.homepage-user .news-page-blk .news-list-blk .e .news-title {
    font-size: 18px;
    line-height: 32px;
}

.user-cabinet-block.homepage-user .news-page-blk .news-list-blk .e .image {
    min-height: 180px;
}

.user-cabinet-block.homepage-user .news-page-blk .news-list-blk .e .desc-text {
    font-size: 14px;
}

.user-cabinet-block.homepage-user .news-page-blk .news-list-blk .e .date,
.user-cabinet-block.news-page-blk .news-list-blk .e .date
{
    font-size: 12px;
}

.instructions-user-blk .lg-popup {
    display: block;
    height: 125px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    background-color: #ECECEC;
    background-image: url(../images/logo.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 117px 40px;
}

.instructions-user-blk  .close-popup-link {
    display: block;
    background-image: url(../images/icon-close.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 20px;
    width: 20px;
    margin-bottom: 24px;
}

.instructions-user-blk .btn-blk {
    text-align: center;
    padding: 80px 0;
}

.instructions-user-blk .btn-small {
    background-image: url(../images/icon-link.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    padding-right: 28px;
}

.instructions-user-blk .pagination-blk {
    line-height: 60px;
    text-align: left;
    display: block;
    height: 60px;
}

.instructions-user-blk .pagination-blk a {
    background: var(--slider-pager-default-color);
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 7.5px;
    outline: 0;
    -moz-border-radius: var(--slider-pager-border-radius);
    -webkit-border-radius: var(--slider-pager-border-radius);
    border-radius: var(--slider-pager-border-radius);
    vertical-align: middle;
}
.instructions-user-blk .pagination-blk a.active {
    background: var(--color-secondary-link);
    width: 45px;
}

.instructions-user-blk .text-blk {
    color: #0B132A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin: 20px 0;
}

.instructions-user-blk .page-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.plan-user-blk {
    margin: 0 0 60px 0;
}

.plan-user-blk .page-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.plan-user-blk .btn-blk {
    font-size: 14px;
    color: #0B132A;
    line-height: 24px;
}

.plan-user-blk .btn-blk .btn-target {
    background-image: url(../images/icon-link.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    padding-right: 28px;
}

.plan-user-blk .btn-blk .btn-add {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    height: 44px;
    padding: 10px 20px;
}

.plan-user-blk .btn-blk .btn {
    margin-left: 8px;
}

.plan-user-blk .plan-table-blk {
    display: block;
    margin: 24px 0;
}

.plan-user-blk .plan-table-blk .head-table-blk {
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    background-color: #008751;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
}

.plan-user-blk .plan-table-blk .head-table-blk div {
    padding-top: 6px;
    padding-bottom: 6px;
}

.plan-user-blk .plan-table-blk .course-list-blk .e {
    color: #0B132A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    border-left: 1px solid #f6f6f6;
    border-right: 1px solid #f6f6f6;
}

.plan-user-blk .plan-table-blk .course-list-blk .e .cl {
    padding-top: 6px;
    padding-bottom: 6px;
}

.plan-user-blk .plan-table-blk .course-list-blk .e:nth-child(odd)  {
    background-color: #f6f6f6;
}

.plan-user-blk .plan-table-blk .course-list-blk .e:last-child {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    border-bottom: 1px solid #f6f6f6;
}

.plan-user-blk .plan-table-blk .course-list-blk .dropdown-link {
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 16px;
    background-image: url(../images/icon-certificate-dot.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 1% 0 0;
}

.plan-user-blk .plan-table-blk .course-list-blk .dropdown-blk {
    position: absolute;
    display: none;
    right: 0;
    top: 5px;
    background-color: #ffffff;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border: 1px solid #D4D4D8;
    overflow: hidden;
    min-width: 150px;
    text-align: left;
    z-index: 100;
}

.plan-user-blk .plan-table-blk .course-list-blk .dropdown-blk a {
    padding: 16px 12px;
    color: #1D5CAB;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    border-bottom: 1px solid #D4D4D8;
    display: block;
}

.plan-user-blk .plan-blk .info-moderation {
    display: inline-block;
    background: linear-gradient(90deg, #F34854 0%, #F7CC35 100%);
    font-size: 16px;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 36px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    margin-top: 6px;
    font-weight: 700;
}

.plan-user-blk .plan-head-blk {
    margin-bottom: 24px;
}

.plan-user-blk .plan-table-blk .course-list-blk .dropdown-blk a.delete {
    color: #F31260;
}

.plan-user-blk .plan-table-blk .course-list-blk .dropdown-blk a:hover {
    background-color: #E6F1FE;
}

.plan-user-blk .plan-table-blk .course-list-blk .dropdown-blk a:last-child {
    border-bottom: none;
}

.plan-user-blk .plan-table-blk .course-list-blk .custom-input-file label,
.plan-user-blk .plan-table-blk .course-list-blk .btn-default
{
    padding: 5px 10px;
    height: auto;
    font-size: 12px;
    line-height: 12px;
}

.plan-user-blk .plan-table-blk .course-list-blk .btn-link {
    color: #008751;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.plan-user-blk .plan-table-blk .course-list-blk .status-mark {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
}

.plan-user-blk .plan-table-blk .course-list-blk .status-mark.moderation {
    background-image: url(../images/icon-certificate-moderation.svg);
}

.plan-user-blk .plan-table-blk .course-list-blk .status-mark.approved {
    background-image: url(../images/icon-certificate-approved.svg);
}

.plan-user-blk .alert-info  {
    font-size: 16px;
    color: #0B132A;
    line-height: 22px;
}

.form-course-blk {
    width: 460px;
    position: fixed;
    top: 10%;
    left: 50%;
    margin: 0 0 0 -230px;
    border-radius: 10px;
    border: 2px solid rgba(17, 24, 28, 0.10);
    background: #FFF;
    display: none;
    overflow-y: auto;
    z-index: 100;
}

.form-course-blk .control-label {
    color: #0B132A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.form-course-blk .course-form {
    position: relative;
    padding: 44px 24px 24px 24px;
}

.form-course-blk .form-title {
    color: #0B132A;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    margin: 0 0 24px 0;
}

.form-course-blk .form-group {
    margin-bottom: 36px;
}

.form-course-blk .btn-blk {
    display: block;
    margin: 36px 0 0 0;
}

.form-course-blk .btn-primary {
    height: 44px;
    line-height: 44px;
}

.form-course-blk .btn-default {
    border-color: rgba(17, 24, 28, 0.10);
    color: #008751;
}

.form-course-blk .btn-default:hover {
    background-color: #ffffff;
    border-color: #008751;
}

.form-course-blk .help-block {
    font-size: 12px;
}

.form-course-blk .close-course-form {
    display: block;
    position: absolute;
    right: 24px;
    top: 24px;
    background-image: url(../images/icon-close.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 20px;
    width: 20px;
}

.form-course-blk .finish-date .form-control {
    padding-right: 52px;
    background-image: url(../images/icon-calendar.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
}

.user-cabinet-block.notifies-blk {
    margin: 0 0 60px 0;
}

.user-cabinet-block.notifies-blk .notifies-list {
    background-color: #ffffff;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    overflow: hidden;
    margin: 0 0 20px 0;
}

.user-cabinet-block .notifies-list-blk .notifies-list .e {
    display: block;
    padding: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.user-cabinet-block .notifies-list-blk .notifies-list .e .title-blk {
    color: #0B132A;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
    padding-left: 50px;
    position: relative;
}

.user-cabinet-block.notifies-blk .notifies-list .e .title-blk::before {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    position: absolute;
    left: 0;
    top: 7px;
}

.user-cabinet-block.notifies-blk .notifies-list .e .title-blk.plan-icon::before {
    background-color: #F9A70D;
    background-image: url(../images/icon-white-plan.svg);
}

.user-cabinet-block.notifies-blk .notifies-list .e .title-blk.certificate-icon::before {
    background-color: #008751;
    background-image: url(../images/icon-white-certificate.svg);
}

.user-cabinet-block.notifies-blk .notifies-list .e .title-blk.course-icon::before {
    background-color: #5DBD49;
    background-image: url(../images/icon-white-course.svg);
}

.user-cabinet-block.notifies-blk .notifies-list .e .title-blk.news-icon::before {
    background-color: #5DBD49;
    background-image: url(../images/icon-white-news.svg);
}

.user-cabinet-block.notifies-blk .notifies-list .e .title-blk.project-icon::before {
    background-color: #485CCE;
    background-image: url(../images/icon-white-projects.svg);
}

.user-cabinet-block.notifies-blk .notifies-list .e .title-blk.team-icon::before {
    background-color: #1D5CAB;
    background-image: url(../images/icon-white-team.svg);
    background-size: 21px 21px;
}

.user-cabinet-block.notifies-blk .notifies-list .e .text-blk {
    color: #4F5665;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin: 0 0 12px 0;
    padding-left: 50px;
}

.user-cabinet-block.notifies-blk .notifies-list .e .btn-blk {
    padding-left: 50px;
}

/*.user-cabinet-block.notifies-blk .notifies-list .e  a {
    color: #006FEE;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}*/

.user-cabinet-block.notifies-blk .notifies-list .e  a:hover {
    text-decoration: none;
    color: #008751;
}

.user-cabinet-block .notifies-list-blk .notifies-list .item:last-child .e {
    border-bottom: none;
}

.user-cabinet-block.notifies-blk .notifies-list .e.not-read {
    background-color: rgba(23, 201, 100, 0.10);
}

.user-cabinet-block.notifies-blk .page-title {
    font-size: 24px;
    line-height: 32px;
}

.list-view .empty {
    margin: 0 15px 15px 15px;
    background-color: #ffffff;
    color: #0B132A;
    font-size: 16px;
    border-radius: 12px;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    padding: 24px;
}

.dropdown {
    text-align: left;
}

.dropdown .dropdown-toggle {
    padding: 8px 15px 8px 15px;
    position: relative;
    background-color: #ffffff;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    color: #000000;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    border: 1px solid #CCCCCC;
    display: inline-block;
    width: 100%;
    position: relative;
}

.dropdown .dropdown-toggle::after {
    border: none;
    width: 24px;
    height: 24px;
    background-image: url(../images/arrow-down-gray.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: 8px;
    top: 50%;
    margin: -12px 0 0 0;
}

.dropdown .dropdown-toggle:hover,
.dropdown .dropdown-toggle:focus
{
    text-decoration: none;
    color: #000000;
}

.dropdown .dropdown-menu {
    padding: 0;
    border: 1px solid #cccccc;
     border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    width: 100%;
    overflow: hidden;
}

.dropdown .dropdown-menu > li > a {
    font-size: 12px;
    color: #000000;
    padding: 8px 15px;
}

.dropdown .dropdown-menu > li {
    border-bottom: 1px solid #cccccc;
}

.dropdown .dropdown-menu > li:last-child {
    border: none;
}

.alert {
    font-size: 16px;
}

.not-found-blk {
    display: block;
    text-align: center;
}

.not-found-blk img {
    margin: 0 0 24px 0;
}

.not-found-blk .text-blk {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #000000;
    display: block;
    margin: 0 auto;
    width: 80%;
}

.not-found-blk .text-content-blk {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #000000;
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: left;
}

.custom-checkbox-list
{
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: none;
}

.custom-checkbox-list+label
{
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-size: 16px;
    font-weight: 500;
    color: #11181C;
}

.custom-checkbox-list+label p {
    margin: 0;
}

.custom-checkbox-list+label::before
{
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 2px solid #D4D4D8;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    outline: 0;
    padding: 2px;
    background-color: #ffffff;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,opacity .15s ease-in-out, top .15s ease-in-out;  
}

.custom-checkbox-list:not(:disabled):not(:checked)+label:hover::before
{
    border-color: #0B132A;
}

.custom-checkbox-list:not(:disabled):active+label::before
{
    background-color: #c4c4c4;
    border-color: #c4c4c4;
}

.custom-checkbox-list:focus+label::before
{
    border-color: #ffc107;
}

.custom-checkbox-list:focus:not(:checked)+label::before
{
    border-color: #ffc107;
}

.custom-checkbox-list:checked+label::before
{
    border-color: #ffc107;
    background-color: #ffffff;
    background-image: url(../images/dot-radio.svg);
    
}

.custom-checkbox-list:disabled+label::before
{
    background-color: #e9ecef;
}

.custom-multiple-checkbox .control-label {
    font-size: var(--block-title-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
    color: var(--color-primary-link);
}

.select2-container--krajee .select2-selection {
    height: 64px;
    font-size: var(--standart-font-size);
    color: var(--form-control-color);
    border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
    border: 2px solid var(--semantic-light-layout-content-3);
    background: var(--semantic-light-layout-content-2);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding-left: 14px;
    padding-right: 14px;
    outline: 0;
}

.select2-container--krajee .select2-selection--single .select2-selection__rendered {
    line-height: 52px;
}

.select2-container--krajee .select2-selection--single .select2-selection__arrow {
    height: 64px;
    border: none;
}

.select2-container--krajee .select2-search--dropdown .select2-search__field {
    height: 32px;
    border: 2px solid var(--semantic-light-layout-content-3);
    font-size: var(--standart-font-size);
    color: var(--form-control-color);
    border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
}

.select2-container--krajee .select2-results__group {
    font-size: var(--standart-font-size);
    color: var(--form-control-color);
}

.select2-container--krajee .select2-selection--single .select2-selection__clear {
    line-height: 52px;
}

.select2-container--krajee .select2-results__option .select2-results__option,
.select2-results__option
{
    font-size: var(--standart-font-size);
    color: var(--form-control-color);
}

.select2-container--krajee .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-secondary-link);
    color: var(--color-white);
}

.select2-container--open .select2-dropdown--below {
    border-bottom-left-radius: var(--middle-border-radius);
    border-bottom-right-radius: var(--middle-border-radius);
}

.user-cabinet-block .team-navigation-blk .btn-add {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    height: 44px;
    padding: 10px 20px;
}

.user-cabinet-block .team-navigation-blk .custom-button-group a {
    border: 1px solid var(--semantic-light-layout-content-2);
    background-color: var(--color-white);
    color: var(--color-secondary-link);
    font-weight: var(--font-standart-bold);
}

.user-cabinet-block .team-navigation-blk .custom-button-group a.active {
    border-color: #C3DED3;
    background-color: #C3DED3;
    color: #008751;
}

.user-cabinet-block .team-navigation-blk {
    margin-bottom: var(--main-content-line-height);
}

.user-cabinet-block.team-view-block .description-blk {
    color: var(--color-primary-link);
    font-size: var(--standart-font-size);
    margin-bottom: var(--main-content-line-height);
}

.user-cabinet-block.team-page-blk,
.user-cabinet-block.team-view-block 
{
    margin-bottom: var(--main-content-line-height);
}

.team-form-blk {
    position: relative;
}

.team-form-blk .custom-button-group a.active {
    background-color: var(--color-small-button);
    color: var(--color-secondary-link);
}

.team-form-blk .control-label {
    color: var(--color-primary-title);
    font-weight: var(--font-semi-bold);
    font-size: var(--block-title-font-size);
}

.team-form-blk .custom-input-file {
    border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
    border: 2px solid var(--semantic-light-layout-content-3);
    background: var(--color-white);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: var(--main-content-line-height);
    padding: var(--main-content-line-height) 0 var(--main-border-radius) 0;
}

.team-form-blk .custom-input-file .control-label {
    color: var(--color-secondary-link);
    font-size: var(--standart-font-size);
    font-weight: var(--font-middle-bold);
}

.team-form-blk .custom-input-file .control-label:hover {
    color: var(--color-white);
}

.team-form-blk .custom-input-file .form-hint {
    color: var(--news-date-color);
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    margin-bottom: var(--main-content-line-height);
}

.team-form-blk .help-block {
    color: var(--bg-btn-primary-color);
    font-size: var(--small-font-size);
}

.team-form-blk .page-title {
    font-size: var(--statistic-font-size);
    line-height: var(--main-content-line-height);
    width: 95%;
}

.team-form-blk .close-popup-link,
.modal-success-user .close-popup-link,
.user-modal-blk .team-data-blk .close-popup-link
{
    position: absolute;
    width: 21px;
    height: 21px;
    background-image: url(../images/icon-close.svg);
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    background-size: contain;
    top: 0px;
    right: 0px;
}

.user-modal-blk .team-data-blk {
    position: relative;
}

.team-form-blk .close-popup-link:hover,
.modal-success-user .close-popup-link:hover,
.user-modal-blk .team-data-blk .close-popup-link:hover
{
    opacity: 0.8;
}

.team-form-blk .img-blk {
    border-radius: var(--small-border-radius);
    -moz-border-radius: var(--small-border-radius);
    -webkit-border-radius: var(--small-border-radius);
    margin-bottom: var(--main-content-line-height);
}

.modal-success-user .text-blk {
    color: var(--color-primary-link);
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--main-content-line-height);
    display: block;
    margin: 0 0 43px 0;
}

.modal-success-user .e {
    text-align: left;
}

.modal-success-user .e a {
    color: var(--color-secondary-link);
    text-decoration: none;
    font-size: var(--block-title-font-size);
    font-weight: var(--font-middle-bold);
    line-height: var(--contacts-icons-wh);
}

.modal-success-user .e a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: var(--contacts-icons-wh);
    height: var(--contacts-icons-wh);
    background-color: var(--color-white);
    box-shadow: 0px 13px 18px rgba(17, 19, 35, 0.08);
    -webkit-box-shadow: 0px 13px 18px rgba(17, 19, 35, 0.08);
    -moz-box-shadow: 0px 13px 18px rgba(17, 19, 35, 0.08);
    border-radius: var(--contacts-icons-wh);
    -webkit-border-radius: var(--contacts-icons-wh);
    -moz-border-radius: var(--contacts-icons-wh);
    margin: 0 17px 0 0;
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
}

.modal-success-user .e1 a::before
{
    background-image: url(../images/icon-envelope.svg);
}

.modal-success-user .e2 a::before {
    background-image: url(../images/icon-phone.svg);
}

.modal-success-user .btn {
    margin-top: var(--main-content-line-height);
}

.modal-success-user .page-title {
    font-size: var(--statistic-font-size);
    line-height: var(--main-content-line-height);
}

.instructions-blk  {
    margin-top: var(--slider-pager-border-radius);
    margin-bottom: var(--main-content-line-height);
}

.instructions-blk .btn-small {
    background-image: url(../images/icon-link.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    padding-right: 28px;
    margin-bottom: 5px;
}

.team-data-blk .avatar-blk {
    display: inline-block;
    vertical-align: middle;
    width: var(--max-width-height-avatar);
    height: var(--max-width-height-avatar);
    border-radius: var(--max-width-height-avatar);
    -moz-border-radius: var(--max-width-height-avatar);
    -webkit-border-radius: var(--max-width-height-avatar);
    border: 2px solid var(--news-date-color);
    background-image: url(../images/team-no-photo.png);
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    background-size: cover;
    margin: 0 var(--main-content-line-height) 0 0;
}

.team-data-blk .text-name-blk {
    display: inline-block;
    width: calc(99% - var(--max-width-height-avatar) - var(--main-content-line-height));
    vertical-align: middle;
}

.team-data-blk .text-blk {
    color: var(--color-primary-link);
    font-size: var(--standart-font-size);
    line-height: var(--page-line-height);
}

.team-data-blk .page-title {
    font-size: var(--statistic-font-size);
    line-height: var(--main-content-line-height);
    color: var(--color-primary-title);
}

.team-data-blk .sub-title {
    margin-top: var(--main-content-line-height);
    margin-bottom: var(--slider-pager-border-radius);
    font-size: var(--block-title-font-size);
    color: var(--color-primary-title);
}

.team-data-blk .btn-small {
    margin-top: var(--slider-pager-border-radius);
}

.team-data-blk .direction-blk .img-blk {
    display: inline-block;
    vertical-align: middle;
    width: var(--max-width-height-avatar);
    height: var(--max-width-height-avatar);
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    background-size: contain;
    margin: 0 0 0 var(--main-content-line-height);
}

.team-data-blk .direction-blk .text-blk {
    display: inline-block;
    width: calc(99% - var(--max-width-height-avatar) - var(--main-content-line-height));
    vertical-align: middle;
}

.team-data-blk .members-blk .list-members-blk .e {
    display: block;
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(17, 24, 28, 0.10);
    background: #FFF;
    padding: 18px 18px 18px 54px;
    color: #0B132A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 5px;
}

.team-data-blk .members-blk .list-members-blk .e .no-avatar-img,
.team-data-blk .members-blk .list-members-blk .e .avatar-img
{
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 36px;
    -webkit-border-radius: 36px;
    -moz-border-radius: 36px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-color: #E6F1FE;
    text-align: center;
    font-size: 18px;
    color: #0B132A;
    font-weight: 700;
    line-height: 32px;
    position: absolute;
    left: -28px;
    top: 50%;
    margin: -18px 0 0 0;
    border: 2px solid rgba(17, 24, 28, 0.10);
}

.team-data-blk .members-blk .list-members-blk .e .name span {
    display: block;
    color: var(--color-primary-link);
    font-size: var(--standart-font-size);
    line-height: var(--page-line-height);
    font-weight: var(--font-standart-bold);
}

.team-data-blk .members-blk .list-members-blk .e .btn-small {
    margin-top: var(--micro-font-size);
}

.team-view-block .team-data-blk {
    display: block;
    width: 60%;
}

.team-data-blk  .btn-primary,
.team-form-blk .btn-primary,
.user-modal-blk .modal-success-user .btn-primary
{
    padding: 8px 10px;
    font-size: var(--standart-font-size);
    line-height: var(--page-line-height);
    font-weight: var(--font-standart-bold);
    height: auto;
    width: 100%;
}

.team-page-blk .page-title {
    font-size: var(--statistic-font-size);
    line-height: var(--main-content-line-height);
    margin-bottom: var(--main-content-line-height);
}

.team-page-blk .team-list-head-blk {
    border-top-left-radius: var(--middle-border-radius);
    border-top-right-radius: var(--middle-border-radius);
    background-color: var(--team-table-bg-color);
    color: var(--color-white);
}

.team-page-blk .team-list-head-blk .col-sm-5,
.team-page-blk .team-list-head-blk .col-sm-4,
.team-page-blk .team-list-head-blk .col-sm-3
{
    padding: 5px 5px 5px var(--main-content-line-height);
}

.team-page-blk .team-list-body-blk .e .col-sm-5,
.team-page-blk .team-list-body-blk .e .col-sm-4,
.team-page-blk .team-list-body-blk .e .col-sm-3 {
    padding: 5px 5px 5px var(--main-content-line-height);
}

.team-page-blk .team-list-body-blk .e {
    border: 1px solid rgba(17, 24, 28, 0.1);
    border-top: none;
}

.team-page-blk .team-list-body-blk .e .members-ttl {
    display: none;
}

.team-page-blk .team-list-body-blk .list-view .item:last-child .e {
    border-bottom-left-radius: var(--middle-border-radius);
    border-bottom-right-radius: var(--middle-border-radius);
}

.team-page-blk .team-list-body-blk .e .avatar-blk {
    width: 44px;
    height: 44px;
    display: inline-block;
    vertical-align: middle;
    border-radius: var(--max-width-height-avatar);
    -moz-border-radius: var(--max-width-height-avatar);
    -webkit-border-radius: var(--max-width-height-avatar);
    border: 2px solid var(--news-date-color);
    background-image: url(../images/team-no-photo.png);
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    background-size: cover;
    margin: 0 10px 0 0;
}

.team-page-blk .team-list-body-blk .e .name-blk {
    display: inline-block;
    width: calc(98% - 54px);
    vertical-align: middle;
    font-weight: var(--font-semi-bold);
}

.team-page-blk .team-list-body-blk .e .name-blk .tagline {
    font-weight: var(--font-standart-bold);
}

.team-page-blk .team-list-body-blk .e .btn-small {
    margin-top: var(--small-border-radius);
}

.team-page-blk .team-list-body-blk .e .fullteam {
    font-size: var(--button-font-size);
    color: var(--green-color);
    margin-top: var(--small-border-radius);
    display: inline-block;
    vertical-align: middle;
}


.user-modal-blk .team-data-blk .name-blk {
    text-align: center;
}

.user-modal-blk .team-data-blk .avatar-blk {
    margin: 0 0 var(--main-content-line-height) 0;
}

.user-modal-blk .team-data-blk .text-name-blk {
    width: 100%;
}

.team-data-blk .direction-blk .img-blk {
    display: inline-block;
    vertical-align: middle;
    width: 86px;
    height: 86px;
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    background-size: contain;
    margin: 0 0 0 var(--main-content-line-height);
}

.team-form-blk .text-blk {
    color: var(--color-primary-link);
    font-size: var(--standart-font-size);
    line-height: var(--page-line-height);
    margin-bottom: var(--main-content-line-height);
}

.team-member-blk .page-title {
    font-size: var(--statistic-font-size);
    line-height: var(--main-content-line-height);
    margin-bottom: var(--main-content-line-height);
}

.team-member-blk .view-member-blk {
    position: relative;
}

.team-member-blk .view-member-blk .no-avatar-img,
.team-member-blk .view-member-blk .avatar-img
{
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 44px;
    -webkit-border-radius: 44px;
    -moz-border-radius: 44px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-color: #E6F1FE;
    text-align: center;
    font-size: 18px;
    color: #0B132A;
    font-weight: 700;
    line-height: 32px;
    position: absolute;
    left: -22px;
    top: 0;
    border: 2px solid rgba(17, 24, 28, 0.10);
}

.team-member-blk .view-member-blk .name-blk {
    font-size: var(--standart-font-size);
    line-height: var(--main-content-line-height);
    font-weight: var(--font-middle-bold);
    padding-left: 32px;
}

.team-member-blk .view-member-blk .join-text {
    padding: 15px;
    border: 2px solid var(--semantic-light-layout-content-3);
    margin-bottom: var(--main-content-line-height);
    border-radius: var(--news-border-radius);
    -moz-border-radius: var(--news-border-radius);
    -webkit-border-radius: var(--news-border-radius);
}

.team-form-blk .youtube {
    background-image: url(../images/icon-youtube-form.svg);
    padding-right: 68px;
    background-repeat: no-repeat;
    background-position: 98% 50%;
}

.projects-page-blk .search-blk {
    background-color: var(--color-white);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 15px;
}

.projects-page-blk .search-blk .reset {
    color: var(--red-color);
    text-decoration: none;
}

.projects-page-blk .search-blk .page-title {
    font-size: var(--statistic-font-size);
    font-weight: var(--font-semi-bold);
    line-height: var(--statistic-font-size);
}

.projects-page-blk .search-blk .slider-blk .e {
    display: block;
    padding: 40px 20px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    background-color: #F8A70D;
    background-repeat: no-repeat;
    background-position: 90% 50%;
    background-size: contain;
}

.projects-page-blk .search-blk .slider-blk .e .text-blk {
    width: 50%;
    display: block;
    color: #000000;
}

.projects-page-blk .search-blk .slider-blk .e .text-blk .sub-title {
    font-size: 18px;
    line-height: 36px;
    font-weight: 700;
    color: #000000;
}

.projects-page-blk .search-blk .slider-blk {
    margin-bottom: 45px;
    display: block;
    position: relative;
}

.projects-page-blk .search-blk .slider-blk .bx-wrapper .bx-pager,.projects-page-blk .search-blk .slider-blk .bx-wrapper .bx-controls-auto {
    bottom: -25px;
    text-align: center;
}

.projects-page-blk .search-blk .slider-blk .bx-wrapper .bx-pager.bx-default-pager a {
    border: 1px solid #1D5CAB;
    background-color: #ffffff;
}

.projects-page-blk .search-blk .slider-blk .bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: #1D5CAB;
}

.projects-page-blk .search-blk .form-blk {
    margin-top: 15px;
}

.user-cabinet-block.projects-page-blk .e .date {
    margin-bottom: 10px;
}

.project-view-page {
    margin-bottom: 30px;
}

.project-view-page .project-data-blk .img {
   min-height: 300px;
   background-repeat: no-repeat;
   background-size: cover;
   background-position: 50% 50%;
   display: block;
   width: calc(100% + 48px);
   margin: -24px -24px 30px -24px;
   border-top-right-radius: 12px;
}

.project-view-page .project-data-blk .page-title {
   font-size: var(--statistic-font-size); 
   line-height: var(--main-content-line-height);
   font-weight: var(--font-semi-bold); 
}

.project-view-page .project-data-blk .text-blk {
   font-size: var(--standart-font-size);
   color: var(--color-primary-link);
}

.project-view-page .project-data-blk .sub-title {
   font-size: var(--block-title-font-size); 
   font-weight: var(--font-semi-bold); 
   line-height: var(--main-content-line-height);
   color: var(--color-primary-title);
   margin-top: var(--main-content-line-height); 
}


.project-view-page .project-data-blk .direction-blk .img-blk {
    display: inline-block;
    vertical-align: middle;
    width: var(--max-width-height-avatar);
    height: var(--max-width-height-avatar);
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    background-size: contain;
    margin: 0 0 0 var(--main-content-line-height);
}

.project-view-page .project-data-blk .direction-blk .text-blk {
    display: inline-block;
    width: calc(99% - var(--max-width-height-avatar) - var(--main-content-line-height));
    vertical-align: middle;
}

.project-view-page .project-data-blk .btn-download {
    background-image: url(../images/icon-link.svg);
    background-repeat: no-repeat;
    background-position: 95% 50%;
    padding-right: 35px;
}

.project-view-page .project-data-blk .video {
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    overflow: hidden; 
    height: 300px;
}

.project-view-page .project-data-blk .team-blk .avatar-blk,
.reviews-list-blk .team-blk .avatar-blk
{
    width: 44px;
    height: 44px;
    display: inline-block;
    vertical-align: middle;
    border-radius: var(--max-width-height-avatar);
    -moz-border-radius: var(--max-width-height-avatar);
    -webkit-border-radius: var(--max-width-height-avatar);
    border: 2px solid var(--news-date-color);
    background-image: url(../images/team-no-photo.png);
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    background-size: cover;
    margin: 0 10px 0 0;
    position: absolute;
    left: 5px;
    top: 5px;
}

.project-view-page .project-data-blk .team-blk,
.reviews-list-blk .team-blk
{
    position: relative;
    border: 1px solid rgba(17, 24, 28, 0.1);
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    padding: 15px 15px 15px 59px;
    display: inline-block;
}

.project-view-page .project-data-blk .name-blk,
.reviews-list-blk .team-blk .name-blk
{
    color: var(--color-primary-title);
    font-weight: var(--font-small-semi-bold);
    font-size: var(--standart-font-size);
    line-height: var(--page-line-height);
    margin-bottom: 15px;
    display: block;
}

.project-view-page .project-data-blk .name-blk .tagline,
.reviews-list-blk .team-blk .name-blk .tagline
{
    color: var(--color-primary-title);
    font-size: var(--standart-font-size);
    font-weight: var(--font-standart-bold);
    line-height: var(--page-line-height);
}

.project-view-page .vote-blk {
    position: relative;
    display: block;
    height: 100%;
    margin-top: -90px;
}

.project-view-page .vote-blk .slipped-vote-blk {
    border: 1px solid rgba(17, 24, 28, 0.1);
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    display: block;
    background-color: var(--color-white);
    position: sticky;
    z-index: 3;
    top: 15px;
    padding: 25px;
}

.project-view-page .vote-blk .slipped-vote-blk .count-voted {
    color: var(--color-primary-title);
    font-size: var(--block-title-font-size);
    font-weight: var(--font-semi-bold);
    text-align: center;
    margin: 0 0 25px 0;
}

.project-view-page .vote-blk .slipped-vote-blk .btn-primary {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    height: auto;
    line-height: 18px;
}

.projects-page-blk .btn-search {
    height: 44px;
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    background-color: #E6F1FE;
    border-color: #E6F1FE;
    line-height: 44px;
    font-size: var(--standart-font-size);
    font-style: normal;
    font-weight: 500;
    color: #1D5CAB;
    padding: 0 46px;
    text-align: center;
}

.news-block-view.project-view-page .project-data-blk,
.team-view-front-blk
{
    background-color: var(--color-white);
    padding: 24px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
}

.team-view-front-blk {
    margin-bottom: 30px;
}

.news-block-view.project-view-page .project-data-blk .img {
    border-top-left-radius: 12px;
}

.reviews-blk .no-avatar-img,
.reviews-list-blk .team-blk .no-avatar-img
{
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 44px;
    -webkit-border-radius: 44px;
    -moz-border-radius: 44px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-color: #E6F1FE;
    text-align: center;
    font-size: 18px;
    color: #0B132A;
    font-weight: 700;
    line-height: 42px;
    position: absolute;
    border: 1px solid rgba(17, 24, 28, 0.10);
    margin: 0 10px 0 0;
    position: absolute;
    left: 5px;
    top: 5px;
}

.reviews-blk .prev-review a {
    display: block;
    width: var(--slider-control-wh);
    height: var(--slider-control-wh);
    background-image: url(../images/arrow-pink-left.svg);
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    border: 1px solid var(--bg-btn-primary-color);
    border-radius: var(--slider-controls-border-radius);
    -webkit-border-radius: var(--slider-controls-border-radius);
    -moz-border-radius: var(--slider-controls-border-radius);
    text-indent: var(--indent-minus);
    text-align: left;
}

.reviews-blk .next-review a {
    display: block;
    width: var(--slider-control-wh);
    height: var(--slider-control-wh);
    background-image: url(../images/arrow-pink-right.svg);
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    border: 1px solid var(--bg-btn-primary-color);
    border-radius: var(--slider-controls-border-radius);
    -webkit-border-radius: var(--slider-controls-border-radius);
    -moz-border-radius: var(--slider-controls-border-radius);
    text-indent: var(--indent-minus);
    text-align: left;
}

.reviews-blk .next-review a:hover {
    background-image: url(../images/arrow-white-right.svg);
}

.reviews-blk .prev-review a:hover {
    background-image: url(../images/arrow-white-left.svg);
}

.reviews-blk .prev-review a:hover, .reviews-blk .next-review a:hover {
    background-color: var(--bg-btn-primary-color);
}

.reviews-blk .next-review, .reviews-blk .prev-review {
    display: inline-block;
    margin: 0 0 0 20px;
    vertical-align: middle;
}

.reviews-blk .btn-all.btn-small {
    display: inline-block;
    vertical-align: middle;
    margin: 0  0 0 20px;
}

.project-view-page .project-data-blk .reviews-blk .sub-title {
    margin-top: 20px;
}

.reviews-blk .tagline {
    height: 40px;
    overflow: hidden;
}

.reviews-blk .head-reviews-blk {
    margin-bottom: 15px;
}

.reviews-list-blk .team-blk {
    margin: 0 0 15px 0;
    width: 100%;
    display: block;
}

.reviews-list-blk .sub-title {
    color: var(--color-primary-title);
    font-weight: var(--font-semi-bold);
    font-size: var(--statistic-font-size);
    line-height: var(--main-content-line-height);
}

.reviews-list-blk .total-count {
    display: block;
    color: var(--color-primary-link);
    font-size: var(--standart-font-size);
    line-height: var(--page-line-height);
    margin-bottom: 15px;
}

.reviews-list-blk {
    position: relative;
}

.reviews-list-blk .close-popup-link {
    position: absolute;
    width: 21px;
    height: 21px;
    background-image: url(../images/icon-close.svg);
    background-repeat: no-repeat;
    background-position: var(--middle-position-img);
    background-size: contain;
    top: 0;
    right: 0;
}

.news-page-blk .news-list-blk .e .video {
    overflow: hidden;
    border-top-left-radius: var(--news-border-radius);
    border-top-right-radius: var(--news-border-radius);
}

.team-page-blk .search-blk {
    padding: 0;
}

.reviews-blk .slider-blk .team-blk {
    width: 100%;
}

.not-get-code-blk {
    display: block;
    margin: 0 0 15px 0;
}

.not-get-code-blk .send-repeat-code {
    color: #1D5CAB;
    text-decoration: none;
    border-bottom: 1px dashed #1D5CAB;
}

.not-get-code-blk .send-repeat-code:hover  {
    text-decoration: none;
}

.cap-block {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #EEF8FF;
    background: linear-gradient(180deg, #EEF8FF 0%, #B7E3FF 51.04%, #E7F5FF 100%);
    overflow: hidden;
    z-index: 100;
}

.cap-block .register-timer-block {
    display: inline-block;
    background-color: #ffffff;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    padding: 20px 20px 10px 20px;
}

.cap-block header .timer-label {
    font-size: 16px;
    font-weight: 500;
    color: #0B132A;
    margin-bottom: 15px;
    display: block;
}

.cap-block header .timer .digit {
    padding: 10px 20px 10px 20px;
}

.cap-block header .timer .digit .char {
    font-size: 24px;
    font-weight: var(--font-semi-bold);
    color: #0B132A;
    line-height: 30px;
}

.cap-block header .timer .digit .caption {
    font-size: 10px;
    line-height: var(--small-font-size);
    color: #4F5665;
}

.cap-block .in-rel {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.cap-block .in-rel .run-text-block {
    font-size: 128px;
    line-height: 128px;
    font-weight: 800;
    text-align: center;
    position: absolute;
    display: block;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    will-change: transform;
    animation: text-block 15s linear infinite;
    top: 50%;
    margin-top: -64px;
    opacity: 0.8;
}

.cap-block .in-rel .run-text-block [data-txt] {
  position: relative;
  display: inline-block;
  overflow: hidden;
  white-space: pre;
  text-decoration: none;
}
.cap-block .in-rel .run-text-block [data-txt]::before {
  content: attr(data-txt) attr(data-txt);
  position: absolute;
  left: 0;
  width: min-content;
  animation: run 3s linear infinite;
}
.cap-block .in-rel .run-text-block [data-txt]::after { /* Ширина по умолчанию */
  content: attr(data-txt);
  width: min-content;
  visibility: hidden;
}

@keyframes text-block {
/*  from { transform: translateX(0); }*/
  to { transform: translateX(-50%); }
}

.cap-block .main-text-block {
    display: block;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    margin-top: -84px;
}

.cap-block .main-text-block h2{
    text-align: center;
    font-weight: 900;
    line-height: 74px;
    font-size: 64px;
    background: linear-gradient(45deg, #1D5CAB 33%, #008751 66%, #008751);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #1D5CAB;
    text-transform: uppercase;
}

.cap-block .main-text-block .caption-text {
    font-size: 18px;
    color: #000000;
    display: block;
    margin: 45px 0 65px 0;
}

.cap-block .main-text-block .btn-more {
    height: 45px;
    background-color: #ffffff;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border: 1px solid rgba(17, 24, 28, 0.1);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #1D5CAB;
    padding: 10px 40px;
}

.cap-block .main-text-block .btn-more:hover {
    background-color: #1D5CAB;
    color: #ffffff;
    border-color: #1D5CAB;
}

.cap-block .mobile-language-blk {
    display: none;
}

.modal-popup-benefit .text-blk img {
    width: auto; 
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 5px 7.5px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}

.plan-user-blk .courses-trainer-info .plan-trainer-info {
    display: block;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border: 1px solid rgba(17, 24, 28, 0.10);
    background: #FFF;
    padding: 15px 15px 15px 130px;
    position: relative;
    min-height: 150px;
}

.plan-user-blk .courses-trainer-info .plan-trainer-info .trainer-photo {
    display: block;
    width: 100px;
    height: 120px;
    background-color: #f4f4f4;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    position: absolute;
    left: 15px;
    top: 15px;
}

.plan-user-blk .courses-trainer-info .plan-trainer-info .trainer-name {
    font-size: 16px;
    line-height: 18px;
    color: #008751;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.plan-user-blk .courses-trainer-info .plan-trainer-info .trainer-email {
    font-size: 14px;
    color: #000000;
}

.plan-user-blk .courses-list {
    display: block;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    background: #FFF;
    padding: 24px;
    position: relative;
    min-height: 150px;
}

.plan-user-blk .courses-list .sub-title,
.plan-user-blk .level-blk .sub-title
{
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #0B132A;
    margin-bottom: 24px;
}

.plan-user-blk .courses-list .links-blk a {
    background-color: #C3DED3;
    border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    color: var(--color-secondary-link);
    font-size: var(--button-font-size);
    padding: 3px 10px;
    font-weight: var(--font-standart-bold);
    border: 1px solid #C3DED3;
    margin: 0 24px 24px 0;
    display: inline-block;
}

.plan-user-blk .courses-list .links-blk a:hover {
    text-decoration: none;
    background-color: #ffffff;
    border-color: var(--color-secondary-link);
}

.plan-user-blk .level-blk {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
}

.plan-user-blk .level-blk .level-medal {
    font-size: 24px;
    height: 54px;
    background-position: 0px 50%;
    background-size: contain;
    background-repeat: no-repeat;
    line-height: 54px;
    color: #000000;
    padding: 0 0 0 64px;
    margin-bottom: 24px;
    font-weight: 700;
}

.plan-user-blk .level-blk .info-nums {
    font-weight: 700;
    font-size: 24px;
}

.plan-user-blk .level-blk .sub-title {
    margin-bottom: 10px;
}

.plan-user-blk .plan-blk .page-title {
    font-size: 18px;
    font-weight: 500;
    color: #0B132A;
    line-height: 30px;
}

.plan-user-blk .plan-blk .btn-add {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    background-color: #F7CC35;
    border-color: #F7CC35;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    padding: 6px 24px;
    line-height: 14px;
    margin-top: 12px;
}

.plan-user-blk .plan-blk .info-blk {
    display: inline-block;
    padding: 8px 8px 8px 36px;
    background-color: #F6F6F6;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    background-image: url(../images/icon-plan-info.svg);
    background-repeat: no-repeat;
    background-position: 8px 50%;
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #000000;
}

.plan-user-blk .plan-blk .info-blk a {
    color: #008751;
    text-decoration: underline;
}

.direction-item-instruction {
    margin: 7.5px 0 7.5px 0;
}

.user-cabinet-block .categories-link-blk {
    background-color: var(--color-white);
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    margin: 0 0 15px 0;
    position: relative;
    box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -webkit-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -moz-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    padding: 15px;
}

.user-cabinet-block .categories-link-blk a {
    background-color: var(--color-small-button);
    border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    color: var(--color-secondary-link);
    font-size: var(--button-font-size);
    padding: 3px 10px;
    border: 1px solid var(--color-small-button);
    font-weight: var(--font-standart-bold);
    margin: 0 0 5px 0;
    display: inline-block;
}

.user-cabinet-block .categories-link-blk a:hover {
    text-decoration: none;
    background-color: #ffffff;
    border-color: var(--color-secondary-link);
}

.user-cabinet-block .categories-link-blk a.active {
    background-color: #008751;
    color: #ffffff;
    border-color: #008751;
}

.search-news-blk {
    background-color: var(--color-white);
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    margin: 0 0 24px 0;
    position: relative;
    box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -webkit-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    -moz-box-shadow: 0 30px 57px rgba(13, 16, 37, 0.06);
    padding: 16px 16px 0 16px;
}


.search-news-blk .btn-default {
    line-height: 60px;
    font-size: var(--standart-font-size);
    font-style: normal;
    font-weight: 400;
    padding: 0 46px;
    height: 60px;
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    background-color: var(--color-secondary-link);
    color: var(--color-white);
    background-color: #F7CC35;
    border-color: #F7CC35;
    color: #000000 !important;
}

.search-news-blk .btn-default:hover {
    background-color: rgba(0, 135, 81, 0.2);
    border-color: rgba(0, 135, 81, 0.1);
    color: #000000;
}

.search-news-blk .btn-default,
.search-news-blk .btn-primary {
    margin-right: 15px;
    margin-bottom: 15px;
}


.user-cabinet-block .search-news-blk .btn-default,
.user-cabinet-block .search-news-blk .btn-primary
{
    line-height: 44px;
    padding: 0 23px;
    height: 44px;
}

.user-cabinet-block .search-news-blk .form-control {
    min-height: 44px;
}

.winners-page-blk img {
    width: auto;
    height: auto;
    max-width: 100% !important;
    max-height: 100% !important;
    border-radius: var(--news-border-radius);
    -webkit-border-radius: var(--news-border-radius);
    -moz-border-radius: var(--news-border-radius);
    margin-bottom: 30px;
}

.winners-page-blk .winners-table {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    overflow: hidden;
    width: 100%;
    border: 1px solid rgba(17, 24, 28, 0.10);
}

.winners-page-blk .winners-table .bordered-table-blk th,
.winners-page-blk .winners-table .bordered-table-blk td 
{
    padding: 15px;
}

.winners-page-blk .winners-table .bordered-table-blk th {
    background-color: #3F3F46;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
}

.winners-page-blk .winners-table .bordered-table-blk tr:nth-child(odd) td {
    background-color: #F5F5F5;
}

.winners-page-blk h1.page-title {
   color: rgba(11, 19, 42, 1);
   font-weight: 700;
   font-size: 24px;
   line-height: 50px;
}

.winners-page-blk .winners-table .bordered-table-blk span.place-1,
.winners-page-blk .winners-table .bordered-table-blk span.place-2,
.winners-page-blk .winners-table .bordered-table-blk span.place-3
{
   display: inline-block; 
   padding: 15px 30px;
   background-color: rgba(236, 0, 140, 1);
   border-radius: 50px;
   -webkit-border-radius: 50px;
   -moz-border-radius: 50px;
   color: #ffffff;
   font-size: 12px;
   line-height: 12px;
   font-weight: 500;
   text-align: center;
}

.winners-page-blk .winners-table .bordered-table-blk span.place-2 {
   background-color: rgba(29, 92, 171, 1);
}

.winners-page-blk .winners-table .bordered-table-blk span.place-3 {
   background-color: rgba(249, 167, 13, 1);
}

.winners-page-blk .form-control {
    min-height: 50px;
    font-size: var(--standart-font-size);
    color: var(--form-control-color);
    border-radius: var(--middle-border-radius);
    -webkit-border-radius: var(--middle-border-radius);
    -moz-border-radius: var(--middle-border-radius);
    border: 2px solid var(--semantic-light-layout-content-3);
    background: var(--semantic-light-layout-content-2);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding-left: 14px;
    padding-right: 14px;
}

.winners-page-blk .image-blk {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    min-height: 170px;
}

.form-control.search-input {
    background-image: url(../images/icon-search.svg);
    background-repeat: no-repeat;
    background-position: 15px 50%;
    padding-left: 52px;
}

.grid {
    margin-bottom: 15px;
}

.grid-sizer,
.grid-item { width: 20%; padding: 5px;}
/* 2 columns */
.grid-item--width2 { width: 20%;}
.grid-item--width3 { width: 40%;}

.grid-item--width2 .image-blk,
.grid-item--width3 .image-blk {
    height: 350px;
}

.whatsapp-fixed {
    display: inline-block;
    min-height: 36px;
    line-height: 36px;
    position: fixed;
    left: 20px;
    bottom: 20px;
    color: #333333;
    text-decoration: none;
    padding: 10px 15px 10px 10px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    z-index: 100;
}

.whatsapp-fixed:hover {
    background-color: #ffffff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #333333;
}

.whatsapp-fixed span {
    display: none;
}

.whatsapp-fixed:hover span {
    display: inline-block;
    font-size: 14px;
}

.whatsapp-fixed::before {
   content: "";
   display: inline-block;
   vertical-align: middle;
   margin: 0 10px 0 0;
   width: 42px;
   height: 42px;
   border-radius: 42px;
   -webkit-border-radius: 42px;
   -moz-border-radius: 42px;
   background-image: url(../images/icon-whatsapp-white.svg);
   background-repeat: no-repeat;
   background-position: 50% 50%;
   background-size: 32px 32px;
}


.progress-task-bar {
    margin-top: 30px;
    display: block;
}

.progress-task-bar .line-bar-blk {
    display: block;
    border: 1px solid rgba(17, 24, 28, 0.10);
    padding: 2px;
    border-radius: 30px;
    height: 24px;
    background-color: #E6F1FE;
}

.progress-task-bar .line-bar-blk .bar-blk {
    display: block;
    background-color: #008751;
    height: 18px;
    border-radius: 30px;
    padding-left: 5px;
    line-height: 18px;
    font-size: 12px;
    color: #ffffff;
    font-weight: 400;
    min-width: 5%;
}

.progress-task-bar .line-bar-blk .bar-blk.approved {
    background-color: #17C964;
}

.user-cabinet-block .homepage-workarea-blk .sub-title {
    color: #0B132A;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.alert {
    border-radius: 42px;
    -webkit-border-radius: 42px;
    -moz-border-radius: 42px;
}

.datepicker table tr td.active:active:hover, .datepicker table tr td.active.highlighted:active:hover, .datepicker table tr td.active.active:hover, .datepicker table tr td.active.highlighted.active:hover, .datepicker table tr td.active:active:focus, .datepicker table tr td.active.highlighted:active:focus, .datepicker table tr td.active.active:focus, .datepicker table tr td.active.highlighted.active:focus, .datepicker table tr td.active:active.focus, .datepicker table tr td.active.highlighted:active.focus, .datepicker table tr td.active.active.focus, .datepicker table tr td.active.highlighted.active.focus,
.datepicker table tr td.active:active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active, .datepicker table tr td.active.highlighted,
.datepicker table tr td span.active:active:hover, .datepicker table tr td span.active:hover:active:hover, .datepicker table tr td span.active.disabled:active:hover, .datepicker table tr td span.active.disabled:hover:active:hover, .datepicker table tr td span.active.active:hover, .datepicker table tr td span.active:hover.active:hover, .datepicker table tr td span.active.disabled.active:hover, .datepicker table tr td span.active.disabled:hover.active:hover, .datepicker table tr td span.active:active:focus, .datepicker table tr td span.active:hover:active:focus, .datepicker table tr td span.active.disabled:active:focus, .datepicker table tr td span.active.disabled:hover:active:focus, .datepicker table tr td span.active.active:focus, .datepicker table tr td span.active:hover.active:focus, .datepicker table tr td span.active.disabled.active:focus, .datepicker table tr td span.active.disabled:hover.active:focus, .datepicker table tr td span.active:active.focus, .datepicker table tr td span.active:hover:active.focus, .datepicker table tr td span.active.disabled:active.focus, .datepicker table tr td span.active.disabled:hover:active.focus, .datepicker table tr td span.active.active.focus, .datepicker table tr td span.active:hover.active.focus, .datepicker table tr td span.active.disabled.active.focus, .datepicker table tr td span.active.disabled:hover.active.focus,
.datepicker table tr td span.active:active, .datepicker table tr td span.active:hover:active, .datepicker table tr td span.active.disabled:active, .datepicker table tr td span.active.disabled:hover:active, .datepicker table tr td span.active.active, .datepicker table tr td span.active:hover.active, .datepicker table tr td span.active.disabled.active, .datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover
{
    background-color: #008751;
}

.hide-living-data {
    display: none;
}

.register-form.additional-blk {
    margin-bottom: 24px;
}

.register-form.additional-blk .sub-title {
    margin-bottom: 16px;
}

.register-form.additional-blk .btn-link {
    margin-right: 16px;
}

.register-form .btn-primary,
.instructions-user-blk .btn-primary
{
    background: linear-gradient(90deg, #F34854 0%, #F7CC35 100%);
    box-shadow: 0px 15px 25px rgba(243, 72, 84, 0.5); 
}

.register-form.medal-info-blk .sub-title {
    margin-bottom: 16px;
}

.form-group.has-error .help-block {
    color: #E8505B;
    font-size: 12px;
    padding-left: 15px;
}

.user-cabinet-block .teacher-blk {
    background-color: #ffffff;
    border-bottom-left-radius: 24px;
    border-top-left-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
}

.user-cabinet-block .teacher-blk .page-title {
    font-weight: 500;
    font-size: 18px;
    color: #0B132A;
    line-height: 30px;
    margin-bottom: 24px;
}

.user-cabinet-block .teacher-blk .teacher-info {
    display: block;
    position: relative;
    background: #FFF;
    padding: 0px 100px 0px 54px;
    color: #0B132A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    height: 44px;
    margin-bottom: 10px;
}


.user-cabinet-block .teacher-blk .teacher-info .avatar-img,
.user-cabinet-block .teacher-blk .teacher-info .no-avatar-img {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 44px;
    -webkit-border-radius: 44px;
    -moz-border-radius: 44px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-color: #C3DED3;
    text-align: center;
    font-size: 18px;
    color: #008751;
    font-weight: 700;
    line-height: 44px;
    position: absolute;
    left: 0;
    top: 50%;
    margin: -24px 0 0 0;
    border: 2px solid rgba(17, 24, 28, 0.10);
}

.user-cabinet-block .teacher-blk .teacher-phone {
    display: block;
    position: relative;
    background: #FFF;
    padding: 0px 100px 0px 54px;
    color: #0B132A;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    height: 44px;
    background-image: url(../images/icon-phone-teacher.svg);
    background-repeat: no-repeat;
    background-position: 0px 50%;
    margin-bottom: 10px;
}

.user-cabinet-block .teacher-blk .send-message-form {
    position: relative;
}

.user-cabinet-block .teacher-blk .send-message-form .form-control {
    border: 1px solid #E4E4E7;
    background-color: #F4F4F5;
    height: 68px;
    outline: 0;
    box-shadow: none;
    border-radius: 14px;
    font-size: 16px;
    color: #000000;
    padding-left: 15px;
    padding-right: 100px;
}

.user-cabinet-block .teacher-blk .send-message-form .btn-success {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    background-color: #F7CC35;
    border-color: #F7CC35;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    height: 28px;
    padding: 4px 24px;
    line-height: 14px;
    position: absolute;
    top: 50%;
    margin: -14px 0 0 0;
    right: 15px;
}

.user-cabinet-block .rounder-blk {
    display: block;
    background-color: #ffffff;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    padding: 24px;
}

.user-cabinet-block .rounder-blk .sub-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #0B132A;
    margin: 0 0 10px 0;
}

.user-cabinet-block .rounder-blk .info-nums {
    color: #000000;
    font-size: 24px;
    display: block;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.user-cabinet-block .calendar-homepage-blk {
    display: block;
    background-color: #ffffff;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    padding: 24px;
    margin-top: 24px;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item {
    border: 1px solid #f6f6f6;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    overflow: hidden;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item table
{
    width: 100%;    
}

.user-cabinet-block .calendar-homepage-blk .calendar-item table th,
.user-cabinet-block .calendar-homepage-blk .calendar-item table td {
    padding: 10px 10px 20px 10px;
    border-right: 1px solid #f6f6f6;
    border-bottom: 1px solid #f6f6f6;
    vertical-align: top;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item table th:last-child,
.user-cabinet-block .calendar-homepage-blk .calendar-item table td:last-child {
    border-right: none;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item table th {
    font-size: 10px;
    font-weight: 700;
    color: #4F5665;
    text-transform: uppercase;
    text-align: center;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item table td {
    text-align: right;
    font-size: 10px;
    font-weight: 400;
    color: #4F5665;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item table td.today {
    font-weight: 700;
    text-decoration: underline;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item table tr:last-child td {
    border-bottom: none;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item table tr:last-child td.last {
    border-right: 1px solid #f6f6f6;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item table tr:last-child td:nth-child(7) {
    border-right: none;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item .calendar-event {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border: 1px solid #ffffff;
    margin-left: -6px;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item .calendar-event:hover {
    opacity: 0.9;
}

.user-cabinet-block .calendar-homepage-blk .calendar-item .calendar-events {
    margin-right: -3px;
}

.user-cabinet-block .calendar-homepage-blk .calendar-head-blk {
    display: block;
    margin: 0 0 20px 0;
}

.user-cabinet-block .calendar-homepage-blk .calendar-head-blk .sub-title {
    font-size: 18px;
    font-weight: 500;
    color: #4F5665;
    margin: 0;
    line-height: 30px;
}

.user-cabinet-block .calendar-homepage-blk .calendar-head-blk .prev-month {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid #008751;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    background-image: url(../images/arrow-left-small-green.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;    
    margin-top: 3px;
}

.user-cabinet-block .calendar-homepage-blk .calendar-head-blk .next-month {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 2px solid #008751;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    background-image: url(../images/arrow-right-small-green.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;    
    margin-top: 3px;
}

.user-cabinet-block .faq-rounded-blk {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 24px;
    margin-bottom: 24px;
    display: block;
}

.user-cabinet-block .plan-center {
    padding-right: 0;
}

.user-cabinet-block .plan-blk {
    background-color: #ffffff;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    padding: 24px;
    margin-top: 24px;
}

.user-cabinet-block .notifies-list-blk {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
}

.user-cabinet-block .plan-blk .custom-input-file label {
    border-color: #F7CC35;
    background-color: #F7CC35;
    color: #000000;
}

.course-page-blk .e {
    padding: 24px;
    background-color: #ffffff;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    height: 100%;
}

.course-page-blk .item {
    margin-bottom: 24px;
}

.course-page-blk .e .image {
    display: block;
    width: 100%;
    height: 140px;
    margin: 0 0 24px 0;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

.course-page-blk .e .status-text,
.course-page-blk .short-view-blk .status-text
{
    font-size: 12px;
    color: #A1A1AA;
}

.course-page-blk .e .deadline,
.course-page-blk .short-view-blk .deadline
{
    font-size: 12px;
    text-align: right;
    color: #263238;
    font-weight: 600;
}

.course-page-blk .e .course-title,
.course-page-blk .short-view-blk .course-title
{
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 28px;
}

.course-page-blk .e .points,
.course-page-blk .short-view-blk .points
{
    text-align: right;
}

.course-page-blk .e .points span,
.course-page-blk .short-view-blk .points span
{
    display: inline-block;
    color: #ffffff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    border-radius: 20px;
    background: #F7CC35;
    background: linear-gradient(90deg, rgba(247, 204, 53, 1) 0%, rgba(0, 135, 81, 1) 100%);
    padding: 4px 10px 4px 10px;
}

.course-page-blk .e .points span::after,
.course-page-blk .short-view-blk .points span::after
{
    content: "";
    display: inline-block;
    background-image: url(../images/icon-rate-small.svg);
    background-repeat: no-repeat;
    background-position: 0 50%;
    width: 11px;
    height: 12px;
    vertical-align: middle;
    margin-top: -2px;
}

.course-page-blk .e .direction,
.course-page-blk .short-view-blk .direction
{
    display: block;
    font-size: 16px;
    line-height: 20px;
    margin: 10px 0;
}

.course-page-blk .e .company,
.course-page-blk .short-view-blk .company
{
    display: block;
    margin: 0 0 10px 0;
    color: #A1A1AA;
    font-size: 12px;
}

.course-page-blk .search-blk .btn-default {
    background-color: #F7CC35;
    border-color: #F7CC35;
    height: 64px;
    color: #000000;
    font-size: 16px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    line-height: 64px;
    padding: 0 20px;
    font-weight: 400;
}

.course-page-blk .search-blk .form-control {
    height: 64px;
}

.course-page-blk .search-blk .custom-button-group {
    margin-top: 10px;
}

.course-page-blk .short-view-blk .btn-primary {
    background: linear-gradient(90deg, #F34854 0%, #F7CC35 100%);
    height: 46px;
    padding: 0px 48px;
    line-height: 46px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 24px;
}

.course-page-blk .short-view-blk,
.course-page-blk .news-text
{
    border: none;
}

.course-page-blk .right-side {
    padding-right: 24px;
    padding-left: 0;
}

.achievments-page-blk .user-info-achievments {
    display: block;
    padding: 24px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    background-color: #ffffff;
    margin-bottom: 24px;
}

.achievments-page-blk .page-title {
    font-size: 24px;
    line-height: 36px;
    margin: 0 0 24px 0;
    color: #0B132A;
    font-weight: 700;
}

.achievments-page-blk .sub-title {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 24px 0;
    color: #0B132A;
    font-weight: 700;
}

.achievments-page-blk .progress-blk .progress-item {
    display: block;
    background-color: #F6F6F6;
    padding: 12px;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    margin-bottom: 24px;
}

.achievments-page-blk .progress-blk .progress-item .title-direction {
    color: #0B132A;
    font-size: 12px;
    font-weight: 500;
    display: block;
}

.achievments-page-blk .progress-blk .progress-item .num-chars {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.achievments-page-blk .progress-blk .progress-item .count-done {
    margin: 24px 0 10px 0;
}

.achievments-page-blk .personal-data .e {
    display: block;
    margin: 0 0 24px 0;
    font-size: 16px;
    font-weight: 500;
    color: #0B132A;
    padding: 4px 0 0 56px;
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: contain;
    min-height: 32px;
    line-height: 32px;
}

.achievments-page-blk .personal-data .e1 {
    background-image: url(../images/icon-birthdate-progress.svg);
}

.achievments-page-blk .personal-data .e2 {
    background-image: url(../images/icon-phone-teacher.svg);
}

.achievments-page-blk .personal-data .e3 {
    background-image: url(../images/icon-mail-progress.svg);
}

.achievments-page-blk .personal-data .e4 {
    background-image: url(../images/icon-home-progress.svg);
}

.achievments-page-blk .career-data .e {
    display: block;
    margin: 0 0 24px 0;
    font-size: 16px;
    font-weight: 500;
    color: #0B132A;
}

.achievments-page-blk .career-data .e span {
    display: block;
    font-weight: 500;
    font-size: 12px;
}

.achievments-page-blk .skills-data .e,
.winners-page-blk .skills-data .s
{
    display: inline-block;
    background: #F7CC35;
    background: linear-gradient(90deg, rgba(247, 204, 53, 1) 0%, rgba(0, 135, 81, 1) 100%);
    padding: 5px 15px 5px 15px;
    font-size: 14px;
    color: #ffffff;
    margin: 0 15px 15px 0;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
}

.achievments-page-blk .language-data .e {
    display: inline-block;
    background: #f6f6f6;
    padding: 5px 15px 5px 15px;
    font-size: 14px;
    color: #4F5665;
    margin: 0 15px 15px 0;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
}

.achievments-page-blk .user-data,
.achievments-page-blk .planed-complete
{
    background-color: #ffffff;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
}

.achievments-page-blk .user-data .head-user-data {
    position: relative;
    padding-left: 64px;
    margin-bottom: 24px;
    display: block;
    min-height: 44px;
}

.achievments-page-blk .user-data .avatar-img,
.achievments-page-blk .user-data .no-avatar-img {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 44px;
    -webkit-border-radius: 44px;
    -moz-border-radius: 44px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-color: #C3DED3;
    text-align: center;
    font-size: 18px;
    color: #008751;
    font-weight: 700;
    line-height: 44px;
    position: absolute;
    left: 0;
    top: 0;
    border: 2px solid rgba(17, 24, 28, 0.10);
}

.achievments-page-blk .user-data .name,
.achievments-page-blk .user-data .smart
{
    font-size: 16px;
    font-weight: 500;
    color: #0B132A;
    line-height: 20px;
}

.achievments-page-blk .user-data .occupation {
    color: #4F5665;
    font-size: 12px;
    font-weight: 500;
}

.achievments-page-blk .user-data .smart span {
    color: #0B132A;
    font-size: 12px;
    font-weight: 500;
    display: block;
}

.achievments-page-blk .user-data .btn-download {
    background: linear-gradient(90deg, #F34854 0%, #F7CC35 100%);
    height: 46px;
    padding: 0px 48px;
    line-height: 46px;
    font-size: 16px;
    font-weight: 700;
}

.achievments-page-blk .planed-complete .medal-info {
    background-repeat: no-repeat;
    background-position: 0px 50%;
    background-size: contain;
    min-height: 64px;
    padding: 8px 0 0 64px;
    margin: 0 0 24px 0;
}

.achievments-page-blk .planed-complete .medal-info span {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    color: #0B132A;
}

.achievments-page-blk .planed-complete .medal-info .date {
    font-weight: 500;
    font-size: 16px;
    color: #0B132A;
}

.achievments-page-blk .planed-complete .medal-level {
    display: block;
    background-repeat: no-repeat;
    background-size: 60px 80px;
    background-position: 0px 0px;
    padding: 0 0 0 70px;
    min-height: 80px;
    
}

.achievments-page-blk .planed-complete .medal-level .sub-title {
    margin-bottom: 10px;
}

.achievments-page-blk .planed-complete .medal-level .text-blk {
    color: #0B132A;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
}

.achievments-page-blk .right-side {
    padding-left: 0;
}

.achievments-page-blk .total-progress-bar {
    display: inline-block;
}

.achievments-page-blk .total-progress-bar .num-count {
    color: #0B132A;
    font-size: 12px;
    line-height: 14px;
}

.achievments-page-blk .total-progress-bar .bar-out {
    display: block;
    height: 4px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    width: 100%;
    background-color: #C3DED3;
}

.achievments-page-blk .total-progress-bar .bar-in {
    background: #F7CC35;
    background: linear-gradient(90deg, rgba(247, 204, 53, 1) 0%, rgba(0, 135, 81, 1) 100%);
    height: 4px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    display: block;
}

.chat-page-blk .chat-list-blk {
    background-color: #ffffff;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
}

.chat-page-blk .chat-list-blk .e {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

.chat-page-blk .chat-list-blk .e:last-child {
    border-bottom: none;
}

.chat-page-blk .chat-list-blk .e .chat-body-item {
    border-radius: 16px;
    padding: 16px;
}

.chat-page-blk .chat-list-blk .e.new .chat-body-item {
    background-color: rgba(0, 135, 81, 0.1);
}

.chat-page-blk .chat-list-blk .e .chat-body-item a {
    font-size: 18px;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
}

.chat-page-blk .chat-list-blk .e .chat-body-item a:hover {
    color: #008751;
    text-decoration: none;
}

.chat-page-blk .chat-list-blk .e .chat-body-item .date {
    text-align: right;
    color: #4F5665;
    font-size: 12px;
    line-height: 27px;
}

.winners-page-blk .search-blk,
.news-page-blk.user-cabinet-block .search-blk
{
    display: block;
    padding: 16px;
    border-radius: 24px;
    background-color: #ffffff;
    margin: 0 0 24px 0;
}

.winners-page-blk .search-blk .form-control,
.news-page-blk.user-cabinet-block .search-blk .form-control
{
    height: 64px;
}

.winners-page-blk .search-blk .btn-default,
.news-page-blk.user-cabinet-block .search-blk .btn-default
{
    height: 64px;
    background-color: #F7CC35;
    border-color: #F7CC35;
    color: #000000;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
}

.winners-page-blk .item {
    margin-bottom: 24px;
}

.winners-page-blk .e {
    display: block;
    height: 100%;
    padding: 16px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border: 1px solid #C4C4C4;
    background-color: #ffffff;
}

.winners-page-blk .e .head-winner-item {
    position: relative;
    padding-left: 62px;
    display: block;
    min-height: 55px;
}

.winners-page-blk .e .avatar-img,
.winners-page-blk .e .no-avatar-img {
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 52px;
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    background-color: #C3DED3;
    text-align: center;
    font-size: 18px;
    color: #008751;
    font-weight: 700;
    line-height: 52px;
    position: absolute;
    left: 0;
    top: 0;
    border: 2px solid rgba(17, 24, 28, 0.10);
}

.winners-page-blk .e .name {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    line-height: 52px;
}

.winners-page-blk .e .medal-info {
    text-align: right;
}

.winners-page-blk .e .medal-info .medal-title {
    text-align: right;
    display: block;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.8);
}

.winners-page-blk .e .medal-info .medal-icon {
    width: 29px;
    height: 38px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
}

.winners-page-blk .e .smart {
    color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    font-weight: 400;
}

.winners-page-blk .skills-data {
    display: block;
    margin: 10px 0;
}

.halfscreen-modal {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    margin: 0;
}

.achievments-page-blk .modal-short-view-data .user-data,
.achievments-page-blk .modal-short-view-data .planed-complete
{
    padding: 0;
}

.achievments-page-blk .modal-short-view-data .close-popup-link {
    display: block;
    background-image: url(../images/icon-close.svg);
    background-repeat: no-repeat;
    background-size: 21px 21px;
    background-position: 50% 50%;
    height: 36px;
    width: 36px;
    margin-bottom: 24px;
}