

.al_trHeader {
    margin: 40px 0 20px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: #000000;
}

/* Рекламный баннер */

.al_adBanner {
    position: relative;
    margin-bottom: 30px;
    padding: 20px 0;
    
    background: #F3F3F3;
    border: 1px solid rgba(78, 102, 82, 0.15);
}

.al_adBanner .al_abHeader {
    margin-bottom: 20px;
    padding: 10px 30px 13px 50px;
    max-width: 450px;
    
    font-family: var(--font);
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #FFFFFF;
    
    background: #000;
    clip-path: polygon(0 0, 100% 0%, 92% 100%, 0 100%);
}

.al_adBanner .al_abDescr {
    padding-left: 50px;
    max-width: 450px;
    
    font-family: var(--font);
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #000000;
}

.al_adBanner button {
    margin: 30px 0 10px 50px;
    padding: 15px 70px;
    
    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    
    background: #E30613;
    border-radius: 30px;
    border: 0;
}

.al_adBanner .xdget-image:not(.editable) {
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 520px) {
    .al_adBanner .xdget-image:not(.editable) {
        position: static;
        margin-bottom: -20px;
        text-align: right;
    }
    
    .al_adBanner .al_abHeader,
    .al_adBanner .al_abDescr {
        padding-left: 20px;
    }
    
    .al_adBanner button {
        margin-left: 20px;
    }
}

/* Мини баннер */
.al_bannerMini {
    margin-bottom: 20px;
    padding: 50px 30px 35px;
    
    background-size: cover;
    
    transition: all .3s;
}

.al_bannerMini:hover {
    cursor: pointer;
    transform: translatey(-5px);
}

.al_bannerMini h2:first-child {
    font-weight: 500;
}

.al_bannerMini h2 {
    margin-bottom: 15px;
    font-family: var(--font);
    font-weight: 400;
    line-height: 120%;
}

/* Баланс Нейро */
.al_neuroBalance {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.al_neuroBalance > h2 {
    font-family: var(--font);
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #000000;
}

.al_neuroBalance .al_nCount {
    margin-bottom: 0;
    font-family: var(--font);
    font-weight: 500;
    font-size: 48px;
    line-height: 120%;
    text-align: right;
    color: #00487D;
}

.al_neuroBalance .al_nDescr {
    margin-bottom: 0;
    
    font-family: var(--font);
    font-weight: 300;
    font-size: 11px;
    text-align: right;
    color: #000000;
}

/* Инструкция по работе с платформой */
.al_instruction {
    position: relative;
    margin-bottom: 30px;
    padding: 25px 130px 20px 20px;
    
    background: #F4F4F4;
}

.al_instruction .al_instrTitle {
    margin-bottom: 10px;
    
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    line-height: 130%;
    color: #000;
}

.al_instruction .al_instrBtn {
    padding: 3px 10px 3px 10px;
    
    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
    text-transform: uppercase;
    
    background: #00487D;
    border-radius: 50px;
    border: 1px solid transparent;
    
    transition: all .3s;
}

.al_instruction .al_instrBtn:hover {
    color: #00487D;
    background: transparent;
    border: 1px solid #00487D;
}


.al_instruction .al_instrImg:not(.editable) {
    position: absolute;
    bottom: 0;
    right: 10px;

}

/* Сайдбар - Календарь событий */
.al_custCalendar {
    position: relative;
    margin-bottom: 20px;
    padding: 40px 20px 20px;

    text-align: center;
    font: 15px/1em inherit;
    color: #434343;
    
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.al_custCalendar .xdget-lessonSchedule {
    display: none;
}

.al_custCalendar .calendar .event-container:nth-child(2) {
	display: none !important;
}

.al_custCalendar .calendar a {
    text-decoration: none;
    color: inherit;
}

.al_custCalendar .calendar header .simple-calendar-btn {
    position: absolute;
    top: 40px;
    width: 30px;
    height: 30px;
    
    text-align: center;
    line-height: 30px;
    color: #0076C5;
    
    border-radius: 50%;
    background: #ffff;
    border: 2px solid transparent;
    transition: all .3s;
}
.al_custCalendar .calendar header .simple-calendar-btn:hover {
    background: #0076C5;
    color: white;
    border-color: #fff;
}
.al_custCalendar .calendar header .simple-calendar-btn:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 8px;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    transform-origin: center center;
}
.al_custCalendar .calendar header .btn-prev {
    left: 20px;
    transform: rotate(-180deg);
}
.al_custCalendar .calendar header .btn-next {
    right: 20px;
}
.al_custCalendar .calendar header .btn-next:before {
    transform: rotate(45deg);
}

.al_custCalendar .calendar header .month {
    padding: 7px 0 10px;
    margin: 0;
    font-family: var(--font);
    font-weight: 400;
    font-size: 15px;
    color: #000000;

}
.al_custCalendar .calendar header .month .year {
    display: none;
    margin: 10px auto 0;
    padding-top: 10px;
    font-size: 0.4em;
    font-weight: 100;
    border-top: 1px solid #f3f3f3;
}

.al_custCalendar .calendar table {
    width: 100%;
    margin: 20px 0;
    border-spacing: 0px;
}

.al_custCalendar .calendar thead {
    font-family: var(--font);
    font-weight: 300;
    font-size: 12px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: #8A8A8A;
}

.al_custCalendar .calendar td {
    padding: 0.8em 0.1em;
}

.al_custCalendar .calendar .day {
    position: relative;
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.3em;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
  	color: #000000;
    transition: all .3s;
}
.al_custCalendar .calendar .day.has-event:hover {
    color: #fff;
    background: #0076C5;
}
.al_custCalendar .calendar .day.today {
    background: #0076C5;
    color: white;
}
.al_custCalendar .calendar .day.today.has-event:after {
    background: white;
}
.al_custCalendar .calendar .day.wrong-month {
    color: #cbd1d280;
}
.al_custCalendar .calendar .day.wrong-month:hover {
    border: 2px solid transparent;
}

.al_custCalendar .calendar .day.has-event {
    position: relative;
    border: 1px solid #0076C5;
}

.al_custCalendar .calendar .day.has-event::before {
    position: absolute;
    top: 3px;
    right: 3px;
    width: 5px;
    height: 5px;
    background: #5271FF;
    border-radius: 10px;
}
.al_custCalendar .calendar .day.disabled {
    cursor: default;
}
.al_custCalendar .calendar .day.disabled:hover {
    border: 2px solid transparent;
}
.al_custCalendar .calendar .event-container {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 50px;
    background: #00000070;
    border-radius: 10px;
    backdrop-filter: grayscale(100%);
    -webkit-backdrop-filter: grayscale(100%);
    box-sizing: border-box;
    z-index: 999;
}
.al_custCalendar .calendar .event-container .event-wrapper {
    overflow-y: auto;
    max-height: 100%;
}
.al_custCalendar .calendar .event-container .close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    cursor: pointer;
    opacity: 1;
}
.al_custCalendar .calendar .event-container .close:before,
.al_custCalendar .calendar .event-container .close:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: #fff;
}
.al_custCalendar .calendar .event-container .close:before {
    transform: rotate(45deg);
}
.al_custCalendar .calendar .event-container .close:after {
    transform: rotate(-45deg);
}
.al_custCalendar .calendar .event-container .event {
    position: relative;
    width: 100%;
    padding: 1em;
    margin-bottom: 1em;
    background: #0076C5;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: left;
    color: white;
}
.al_custCalendar .calendar .event-container .event-date {
    margin-bottom: 1em;
}
.al_custCalendar .calendar .event-container .event-hour {
    float: right;
}
.al_custCalendar .calendar .event-container .event-summary {
    font-weight: 600;
}
.al_custCalendar .calendar .filler {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #00000020;
    transform: translate(-50%, -50%);
}

.al_custCalendarHeader {
    font-family: var(--font);
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    text-transform: uppercase !important; 
    color: #000000;
    text-align: left;
}

.al_custCalendarEvent {
    margin: 20px 0;
    text-align: left;
}

.al_custCalendarEvent .html-content * {
    font-family: var(--font);
}

.al_custCalendarEvent .html-content:hover * {
    color: #fff;
}

.al_custCalendarEvent .html-content {
    position: relative;
    padding: 20px 15px 10px;
    
    color: #000;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    
    transition: all .3s;
}

.al_custCalendarEvent .html-content:hover {
    background: #0076C5;
    cursor: pointer;
}


.al_custCalendarEvent .html-content::after {
    content: url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/297/h/2dc2e3ed0deb34a15b1033ba0a72c45b.png);
    position: absolute;
    top: 10px;
    right: 20px;

    height: 51px;
}


.al_custCalendarEvent .html-content p {
    font-weight: 300;
    font-size: 15px;
    line-height: 120%;
}

.al_custCalendarEvent .html-content p strong {
    font-size: 22px;
}

.al_custCalendarEvent .html-content p:last-child {
    display: flex;
    flex-wrap: wwrap;
    justify-content: start;
    
    margin: 25px 0 0;
}

.al_custCalendarEvent .html-content p:last-child span {
    flex: 0 0 30%;
    font-size: 11px;
}

@media (max-width:1200px) and (min-width: 992px), (max-width: 320px) {
    .al_custCalendar .calendar .day {
        width: 2em;
        height: 2em;
        line-height: 200%;
    }
    
    .al_custCalendar .calendar .event-container {
        padding: 70px 30px 30px;
    }
}

/* Тренинги - Режим поддержки */
.al_support-block {
    margin-bottom: 20px;
    
    background: transparent;
    border: none;
    overflow: hidden;
}

.al_support .html-content {
    margin-bottom: 20px;
    padding: 25px 25px 15px;
    
    font-family: var(--font);
    text-align: left;
    color: #000;
    text-align: center;
    
    background: #F4F4F4;
}

.al_s-heading {
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
}

.al_s-time {
    margin-bottom: 20px;
    
    font-family: var(--font);
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    
    color: #E30613;
}

.al_s-msg {
  	font-family: var(--font);
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
}

.al_s-btn a {
    display: block;
    margin: 40px 0 0;
    padding: 12px 15px;
    
    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    line-height: 120%;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    
    background: #E30613;
    border: 1px solid transparent;
    border-radius: 25px; 
    
    transition: all .3s;
}

.al_s-btn a:hover {
    border: 1px solid #E30613;
    color: #E30613;
    background: transparent;
  	text-decoration: none;
}

.al_mobileApp {
    padding: 25px 30px;
    
    text-align: center;
    
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.al_mobileApp .html-content p {
    font-family: var(--font);
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    text-align: center;
    color: #000000;
}

.al_mobileApp .html-content p:first-child strong {
    font-weight: 500;
    font-size: 18px;
}

.al_mobileApp .al_sb-btns {
    padding: 10px;
}


.al_sb-heading {
  margin-top: 38px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    
    text-transform: uppercase;
    text-align: center !important;
    color: #000;
}

.al_sb-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
    padding: 15px 15px;
}

.al_sb-btns img {
    margin: 10px;
    
    transition: all .3s;
}

.al_sb-btns img:hover {
    transform: translatey(-5px);
}

/* Лучший ученик месяца */
.al_bestStudent {
    padding: 20px;
    text-align: center;
    background: url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/227/h/7e54b3094a8ca54ad0121be75d6faf30.png) no-repeat center,
        #00487D;
}

.al_bestStudent h2 {
    margin-bottom: 10px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 12px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.al_bestStudent .xdget-image {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    
    border: 3px solid #fff;
    border-radius: 50%;
    overflow: hidden;
}

.al_bestStudent h2.al_studentName {
    margin: 10px 0 0;
    
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    
    text-transform: none;
}

/* Прогресс прохождения уроков */
.tr-stat {
    margin-bottom: 20px;
    padding: 20px 20px 25px;
    
    text-align: center;
    
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    border-radius: 0px;
}

.tal_topWidgets .tr-stat {
    margin: 0;
}

.tr-stat .st-top .stt-block {
    margin-bottom: 10px;
}

.tr-stat .stt-header {
    margin-bottom: 30px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    text-align: center;
    color: #000000;
}

.tr-stat .stt-value {
    margin-bottom: 20px;
    
    font-family: var(--font);
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
    color: #00487D;
}

.tr-stat .stt-value .stv-1 {
    font-size: 48px;
    font-weight: 500;
}

.tr-stat .stb-bar {
    height: 24px;
    width: 100%;
    
    background: #FFFFFF;
    border: 1px solid rgba(13, 23, 20, 0.1);
    border-radius: 30px;
}

.tr-stat .stb-complete {
    position: relative;
    top: 2px;
    left: 2px;
    height: calc(100% - 4px);
    min-width: 20px;
    max-width: calc(100% - 4px);
    text-align: right;
    background: #007AC7;
    border-radius: 30px;
}

.tr-stat .stb-complete .stv-3 {
    position: relative;
    top: -1px;
    left: -10px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
}

.xdget-trainingAchievements {
    display: none;
}

@media (Max-width:1330px) and (min-width:992px), (max-width:375px) {
    .tr-stat .stt-header {
        font-size: 16px;
    }
    
    .tr-stat .stt-value {
        line-height: 60px;
    }
}

/* Нейро в верхних виджетах */
.tal_topWidgets .al_neuroBalance {
    display: block;
    text-align: center;
}

.tal_topWidgets .al_neuroBalance h2 {
    position: relative;
    margin-top: 10px;
}

.tal_topWidgets .al_neuroBalance h2::before {
    content: url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/107/h/53af019c6f531a56427ac985598a8c4a.png);
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
}

.tal_topWidgets .al_neuroBalance .al_nCount {
    margin-top: 30px;
    
    font-size: 54px;
    text-align: center;
}

.tal_topWidgets .al_neuroBalance .al_nDescr {
    margin-top: 10px;
    
    text-align: center;
    font-size: 12px;
}

/* Контейнер верхних виджетов */
.tal_topWidgets {
    margin: 0 -5px 20px !important;
}

.tal_topWidgets > div > div {
    min-height: 220px;
    overflow: hidden;
}

.tal_topWidgets > div {
    padding: 0 5px;
}

@media (max-width:1320px) and (min-width:992px) {
    .tr-stat {
        padding: 20px 5px !important;
    }
    
    
    .tal_topWidgets > div > div {
        min-height: 230px;
    }
}

@media (max-width:992px) {
    .tal_topWidgets {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        
        margin-left: 0px !important;
    }
    
    .tal_topWidgets > div {
        flex: 1 1 30%;
        max-width: calc(100% / 3 - 5px);
    }
    
    .tr-stat .stt-header {
        font-size: 16px !important;
    }
}

@media (max-width:520px) {
    .tal_topWidgets > div {
        flex: 1 1 45%;
        max-width: 100%;
        margin-bottom: 10px;
    }
    
    .tal_topWidgets .al_neuroBalance {
        display: flex;
        text-align: inherit;
        min-height: inherit;
    }

    .tal_topWidgets .al_neuroBalance h2 {
        margin-top: 0px;
    }

    .tal_topWidgets .al_neuroBalance h2::before {
        display: none;
    }

    .al_neuroBalance .al_nCount {
        margin-top: 0px;
        
        font-size: 48px;
        text-align: right;
    }

    .al_neuroBalance .al_nDescr {
        margin-top: 0px;
        
        text-align: right;
        font-size: 11px;
    }
}

@media (max-width:375px) {
    .tal_topWidgets > div {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .al_neuroBalance > h2 {
        max-width: 110px;
    }
}

/* Вдохновляющие цитаты */
.u-quote {
    position: relative;
    margin: 45px 0 50px;
    padding: 10px 10px;

    background: url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/59/h/6ec1d052237ebaccfdcdfc2c8d9acee5.png) no-repeat center, #F4F4F4;
    background-size: cover;
    border-radius: 10px;
    border:  none;
}

.u-quote .xdget-image {
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.u-quote .quote-block {
    padding-left: 190px;
    padding-top: 5px;
}

.u-quote .xdget-header {
    margin-top: 10px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000;
}

.uq-text {
    position: relative;
    margin-top: 10px;
    padding-right: 20px;
    
    width: 100%;
    
    font-family: var(--font);
    font-weight: 300;
    font-size: 26px;
    line-height: 120%;
    color: #000;
}

.uq-text::before {
    content: url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/343/h/1e7fbe9e1935ebb6a0f8f009f50fca38.png);
    position: absolute;
    top: -10px;
    left: -25px;
}

.uq-text::after {
    content: url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/200/h/f9c76f0236a6e5658bbeb2787b18da01.png);
    position: absolute;
    bottom: -10px;
    right: 10px;
}

@media (max-width:700px) {
    .u-quote .xdget-image {
        position: relative;
        bottom: -10px;
        left: -40px;
    }
    
    .u-quote .quote-block {
        padding-left: 30px;
    }
}

@media (max-width:520px) {
    .u-quote {
        background-position: center right;
    }
}

/* Продление доступа */
.tr-tarifs {
	margin: 0 0 20px;
    padding: 25px 25px 15px;
    
    text-align: center;

    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tr-tarifs .trt-msg {
    margin-bottom: 5px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #000000;

}

.tr-tarifs .value {
    margin: 10px 0 10px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    color: #E30613;
    text-transform: uppercase;
}


.tr-tarifs.homeWork .trt-date-value {
    margin: 15px 0 25px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #007AC7;
}

.tr-tarifs .subsubscribeDate {
    display: block;
    margin: 5px auto 10px;
    font-family: var(--font);
    font-weight: 400;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.75);
    opacity: 0.5;
    letter-spacing: 0.03em;
}

.tr-tarifs .trt-btn {
    margin: 0px auto 10px;
    padding: 10px 20px;
    width: 80%;
    
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    
    background: #E30613;
    border: none;
    border-radius: 100px;
    transition: all .3s;
}

.tr-tarifs.homeWork .trt-btn {
    background: #007AC7;
}

.tr-tarifs .trt-btn:hover {
  	transform: translatey(-5px);
}

.xdget-productTiming:not(.editable) {
    display: none;
}

/* Сайдбар - Куратор */
.al_tr-curator { 
    position: relative;
    margin-bottom: 30px;
    padding: 25px 20px 10px;
    
    background: #00487D;
    box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.04);

    overflow: hidden;
    
}

.al_tr-curator .al_tci-info {
    position: relative;
}

.al_tr-curator .al_tc-subheader {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;

    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    color: #FFFFFF;
    
    z-index: 1000;
}

.al_tr-curator .al_tc-subheader::before {
    content: url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/166/h/b6f9074905c95e6d160658d432de7fde.png);
    position: absolute;
    top: -4px;
    left: -7px;
}

.al_tr-curator .al_tc-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
}

.al_tr-curator .al_tci-img {
    flex: 0 0 120px;
    margin-right: 10px;
}

.al_tr-curator .al_tci-img img {
    border-radius: 500px;
  	border: 3px solid #fff;
}

.al_tr-curator .al_tci-info {
    flex: 1 1 calc(100% - 140px);
}

.al_tr-curator .al_tci-name {
    margin-bottom: 10px;
    
    font-family: var(--font);
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: #FFFFFF;
}

.al_tr-curator .html-content ul {
    padding-left: 20px;
    
    font-family: var(--font_sub);
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
	letter-spacing: 0.03em;
    color: #ffffff;
}


/* Сайдбар - Сменить тариф */
.al_plan * {
    font-family: var(--font);
    line-height: 120%;
}

.al_plan {
    position: relative;
    margin-bottom: 20px;
    padding: 20px;

    background: url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/87/h/1e221435658a5411a19af494bde9c2a4.png) no-repeat center right,#F4F4F4;
    
    --planSubheaderColor:#ffffff;
    --planHeaderColor: #000000;
    --planInfoColor: rgba(0, 0, 0, 0.55);
    
    --planBtnColor: #ffffff;
    --planBtnBg: #E30613;
    
    --planBtnColorHover: #ffffff;
    --planBtnBgHover: #00487D;
}

.al_plan .al_planSubheader {
    margin-bottom: 10px;
    margin-left: -20px;
    padding: 5px 30px 8px 20px;
    max-width: 150px;
    
    font-family: var(--font);
    line-height: 120%;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    color: var(--planSubheaderColor);
    
    background: #000;
    clip-path: polygon(0 0, 100% 0%, 92% 100%, 0 100%);
}

.al_plan .al_planName {
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 30px;
    color: var(--planHeaderColor);
    text-transform: uppercase;
}

.al_plan .al_planInfo {
  	font-family: var(--font_sub);
    font-weight: 400;
    font-size: 14px;
  	letter-spacing: 0.03em;
    color: var(--planInfoColor);
    
}

.al_plan .al_planBtn {
    margin-top: 20px;
    padding: 9px 35px;
    
    color: var(--planBtnColor);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.02em;
    background: var(--planBtnBg);
    border-radius: 30px;
    border: 1px solid transparent;
    text-transform: uppercase;
    transition: all .3s;
}

.al_plan .al_planBtn:hover {
    color: var(--planBtnColorHover);
    background: var(--planBtnBgHover);  
}

@media (max-width: 1200px) {
    .al_plan .xdget-image:not(.editable) {
        display: none;
    }
}

@media (max-width: 992px) {
    .al_plan .xdget-image:not(.editable) {
        display: block;
    }
}

@media (max-width:1200px) and (min-width:992px), (max-width:375px) {
    .al_plan .xdget-image:not(.editable) {
        display: none;
    }
    
  .al_plan:after {
      	overflow: hidden;
    	opacity: 0.5;
      	bottom: -31px;
    	right: -20px;
  }
    
}

/* Приз месяца */
.al_monthPresent {
    position: relative;
    margin-bottom: 20px;
    padding: 45px 20px 45px 150px;

    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.al_monthPresent .xdget-image:not(.editable) {
    position: absolute;
    bottom: 0;
    left: 0;
}

.al_monthPresent .html-content p {
    margin-bottom: 5px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    line-height: 120%;
    color: #000000;
}
.al_monthPresent .html-content p:nth-child(1) {
    text-transform: uppercase;
}
.al_monthPresent .html-content p:nth-child(2) {
    font-size: 22px;
    color: #007AC7;
}

@media (max-width:1100px) and (min-width:992px),
(max-width:375px) {
    .al_monthPresent {
        padding-left: 120px;
    }
}

/* Доска почета */
.al_monthDesk {
    position: relative;
    margin-bottom: 20px;
    padding: 20px 20px 20px 150px;

    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.al_monthDesk .xdget-image:not(.editable) {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translatey(-50%);
}
.al_monthDesk .html-content p:nth-child(1) {
    font-family: var(--font);
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    color: #000000;
}

.al_monthDesk .html-content li {
    font-family: var(--font);
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: #000000;
}

@media (max-width:1200px) and (min-width:992px),
(max-width:375px) {
    .al_monthDesk .xdget-image:not(.editable) {
        width: 80px;
        left: 10px;
    }

    .al_monthDesk {
        padding-left: 110px;
    }
}

/* Архив записи */
.al_archiveBtn {
    position: relative;
    margin-bottom: 20px;
    padding: 20px 15px;

    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);

    transition: all 0.3s;
}
.al_archiveBtn:hover {
    box-shadow: 4px 4px 32px rgba(0, 75, 128, 0.15), 0 2px 8px rgba(13, 51, 86, 0.05);
    cursor: pointer;
}

.al_archiveBtn h2 {
    padding-right: 100px;
    font-family: var(--font);
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #000000;
}
.al_archiveBtn .xdget-image:not(.editable) {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translatey(-50%);
}

/* Баннер стань иснтруктором */
.al_adMiniBanner {
    margin-bottom: 20px;
    padding: 25px 0;

    background-size: cover;
    background-position: center right;
    border: 1px solid #BCC3BC;

    transition: all 0.3s;
}
.al_adMiniBanner:hover {
    transform: translatey(-5px);
    cursor: pointer;
}

.al_adMiniBanner .html-content {
    padding: 10px 10px 10px 20px;
    max-width: 250px;

    background: #00487D;
    clip-path: polygon(0 0, 100% 0%, 92% 100%, 0 100%);
}
.al_adMiniBanner .html-content p:nth-child(1) {
    font-family: var(--font);
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    color: #FFFFFF;
}
.al_adMiniBanner .html-content p:nth-child(2) {
    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-transform: uppercase;
    color: #007AC7;

    transition: all 0.3s;
}
.al_adMiniBanner:hover .html-content p:nth-child(2) {
    color: #fff;
}

@media (max-width:992px) {
    .al_adMiniBanner {
        background-size: contain;
        background-color: #F4F4F4;
        background-repeat: no-repeat;
    }
}

/* Баннер МАНГо */
.al_adMiniBannerMango {
    position: relative;
    margin-bottom: 20px;
    padding: 30px;

    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.al_adMiniBannerMango h2 {
    margin-bottom: 15px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000000;
}

.al_adMiniBannerMango .html-content {
    margin-bottom: 20px;
}

.al_adMiniBannerMango .html-content p {
    padding-right: 110px;
    font-family: var(--font);
    font-weight: 400;
    font-size: 15px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.75);
}

.al_adMiniBannerMango .html-content p:nth-child(1) {
    font-weight: 700;
    font-size: 22px;
    color: #000000;
}

.al_adMiniBannerMango .xdget-button {
    padding: 10px 35px;
    
    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
    
    background: #E30613;
    border-radius: 30px;
    border: 1px solid #E30613;
    
    transition: all .3s;
}

.al_adMiniBannerMango:hover .xdget-button {
    color: #E30613;
    background: transparent;
}

.al_adMiniBannerMango .xdget-image:not(.editable) {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translatey(-50%);
}

@media (max-width:1200px) and (min-width:992px),
(max-width:320px) {
    .al_adMiniBannerMango .xdget-image:not(.editable) {
        position: static;
        margin-top: 20px;
        text-align: center;
        
        transform: none;
    }
}

/* Сайдбар - Кнопки */
.al_tr-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 14px;
    
    margin-bottom: 20px;

    --btnIco01: url(https://fs.getcourse.ru/fileservice/file/download/a/13480/sc/136/h/56e181289f68bab80034b7e1b1c4af21.png);
    --btnIco02: url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/238/h/12db2039ac4f7e462449fbcf5bf231c9.png);
    --btnIco03: url(https://fs.getcourse.ru/fileservice/file/download/a/13480/sc/301/h/4be25340e41bc98ab49c7e90c9fb9fd5.png);
}

.al_tr-btns .al_btn {
    position: relative;
    flex: 1 1 30%;
    margin: 0;
    padding: 30px 15px;
    max-width: calc(100% / 3 - 7px);
    
    font-family: var(--font);
	font-weight: 700;
	font-size: 15px;
	line-height: 120%;
	text-align: center !important;
	
	color: #FFFFFF;

    border: none;
    background: #00487D;
    border-radius: 0px !important;
    
    transition: all .5s;
}

.al_tr-btns .al_btn:hover {
    background-position: left center;
    color: #fff;
    
    transform: translatey(-5px);
}

.al_tr-btns .al_btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #007AC7 0%, #00487D 100%);
    border-radius: 0px;
    
    opacity: 0;
    z-index: 0;
    transition: all .3s;
}

.al_tr-btns .al_btn:hover::after {
    opacity: 1;
}

.al_tr-btns .al_btn::before {
    position: relative;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(21deg) brightness(102%) contrast(101%);
    z-index: 5;
    
    transition: all .3s;
}
.al_tr-btns .al_btn:hover:before{
	filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(21deg) brightness(102%) contrast(101%);
}
.al_tr-btns .al_btn.tg::before {
    content: var(--btnIco01);
    display: block;
    margin-bottom: 15px;
}

.al_tr-btns .al_btn.qna::before {
    content: var(--btnIco02);
    display: block;
    margin-bottom: 15px;
}

.al_tr-btns .al_btn.sup::before {
    content: var(--btnIco03);
    display: block;
    margin-bottom: 15px;
}

.al_tr-btns .al_btn span {
    position: relative;
    z-index: 5;
}

.al_tr-btns .al_btn.tg, .al_tr-btns .al_btn.qna, .al_tr-btns .al_btn.sup {
    padding: 15px;
}

@media (max-width:1200px) and (min-width:992px), (max-width:375px) {
    .al_tr-btns .al_btn {
        flex: 1 1 51;
        max-width: inherit;
    }
    
    .al_tr-btns .al_btn.sup::before {
        margin-top: inherit;
    }
}
/*
.xdget-block.col-gc-4.col-md-4 button {
    padding: 10px 20px;
    text-align: left;
    
    border: none;
    border-radius: 5px !important;
    
    transition: all .3s;
}

.xdget-block.col-gc-4.col-md-4 button:hover {
    background: #00487D !important;
}
*/

/* Сообщение о сертификации */
.al_tr-btns {
    position: relative;
}

.al_tr-btns .al_btnMessage:not(.editable) {
	display: none;
    position: absolute;
    top: 50px;
    left: -10px;
    right: -10px;
    
    transform: translatey(-100%);
    z-index: 100;
}

.al_tr-btns .al_btnMessage .html-content {
    position: relative;
    padding: 25px;
    background: url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/427/h/5b3dd168bf3f91a7b7bc1ce165feab1e.png) no-repeat center right,
        #FFFFFF;
    box-shadow: 0px 2px 15px rgba(5, 25, 84, 0.1), 4px 4px 32px rgba(0, 75, 128, 0.15), 0px 2px 8px rgba(13, 51, 86, 0.05);
}

.al_tr-btns .al_btnMessage .html-content::before {
    content: url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/162/h/ce89a26092afe305fc68e528d569055d.png);
    position: absolute;
    bottom: 1px;
    transform: translatey(100%);
    left: 50px;
}

.al_tr-btns .al_btnMessage .html-content p:nth-child(1) {
    padding-right: 100px;
    
    font-family: var(--font);
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
    text-transform: uppercase;
    color: #00487D;

}

.al_tr-btns .al_btnMessage .html-content p:nth-child(2) {
    display: inline-block;
    margin-bottom: 0;
    padding: 10px 50px;
    
    font-family: var(--font);
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    
    background: #E30613;
    border-radius: 30px;
}

.al_tr-btns .al_btnMessage .html-content .closeUp {
    position: absolute;
    top: 10px;
    right: 15px;
    
    width: 22px;
    height: 22px;
    
    font-family: var(--font);
    font-weight: 700;
    color: #00487D;
    
    text-align: center;
    
    border: 1px solid #00487D;
    border-radius: 100px;
    
    opacity: .3;
    transition: all .3s;
}

.al_tr-btns .al_btnMessage .html-content .closeUp:hover {
    color: #E30613;
    border-color: #E30613;
    opacity: 1;
    cursor: pointer;
}

@media (max-width:1100px) and (min-width:992px), (max-width:375px) {
    .al_tr-btns .al_btnMessage .html-content {
        background: linear-gradient(0deg, rgba(255,255,255,.9) 0%,rgba(255,255,255,.9)), url(https://fs.getcourse.ru/fileservice/file/download/a/178392/sc/427/h/5b3dd168bf3f91a7b7bc1ce165feab1e.png) no-repeat center right,
            #ffffff;
    }
    
    .al_tr-btns .al_btnMessage .html-content p:nth-child(1) {
        padding-right: 20px;
    }
}

/* Содержание */
.al_content {
    margin-bottom: 30px;
}

.al_content .xdget-header {
    margin-bottom: 10px;
    
    font-family: var(--font);
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    color: #1C1C1E;
}

.al_content .html-content ul {
    list-style: none;
    padding-left: 0;
}

.al_content .html-content ul li a {
    display: block;
    padding: 7px 0;
    
    font-family: var(--font);
    font-weight: 300;
    font-size: 18px;
    line-height: 120%;
    color: #0D1321;
    
    border-radius: 0px 10px 10px 0px;
    transition: all .3s;
}

.al_content .html-content ul li a:hover {
    padding-left: 10px;
    
    //font-weight: 700;
    text-decoration: none;
    
    background: rgba(0, 122, 199, .1);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
    
    border-left: 5px solid rgba(0, 122, 199, 1);
}

